diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..b5e3fb8
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 50f1938..0be2dea 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -2,9 +2,9 @@
-
+
-
+
@@ -14,25 +14,22 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
+
@@ -48,6 +45,11 @@
+
+
+ 下一
+
+
@@ -57,8 +59,13 @@
-
+
+
+
+
+
+
@@ -73,6 +80,7 @@
+
@@ -80,11 +88,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
@@ -107,8 +131,8 @@
-
-
+
+
@@ -121,7 +145,7 @@
-
+
@@ -130,7 +154,7 @@
-
+
@@ -143,7 +167,7 @@
-
+
@@ -152,26 +176,19 @@
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
@@ -206,11 +223,11 @@
+
+
-
-
@@ -226,7 +243,9 @@
1562076330859
-
+
+
+
1562120525813
@@ -242,7 +261,21 @@
1562124534952
-
+
+ 1562135009035
+
+
+
+ 1562135009035
+
+
+ 1562146110389
+
+
+
+ 1562146110389
+
+
@@ -258,20 +291,26 @@
+
+
+
+
+
+
-
+
-
+
-
+
@@ -280,7 +319,7 @@
-
+
@@ -295,13 +334,16 @@
-
+
+
+
-
+
+
@@ -328,39 +370,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 7e8d8dc..2f47d33 100644
--- a/README.md
+++ b/README.md
@@ -5,4 +5,9 @@ python案例分享
案例二:python unittest使用
案例三:python selenium使用
案例四:unittest_selenium使用
+案例五:python selenium递归
+案例六:python cgi项目
+
+
+
diff --git a/cgiProject/cgi-bin/index.py b/cgiProject/cgi-bin/index.py
new file mode 100644
index 0000000..6c5270c
--- /dev/null
+++ b/cgiProject/cgi-bin/index.py
@@ -0,0 +1,15 @@
+html = """
+
+
+
+ image
+
+
+
+
+
+
+""" #要返回的数据 response 的body
+print("content-type:text/html") #返回响应的头部,具体描述的要返回的内容类型,在cgi当中用print进行返回
+print("\n") #返回头部结束
+print(html) #返回响应的body
\ No newline at end of file
diff --git a/cgiProject/cgi-bin/jsonData.py b/cgiProject/cgi-bin/jsonData.py
new file mode 100644
index 0000000..5c4908f
--- /dev/null
+++ b/cgiProject/cgi-bin/jsonData.py
@@ -0,0 +1,15 @@
+import json
+import time
+import random
+
+now = time.strftime("%H:%M:%S",time.localtime())
+num = random.randint(1,11)
+
+result = {"now":now,"num":num}
+
+josn_result = json.dumps(result) #将字典转换为json
+#loads 将json转换为字典
+
+print("content-type:application/json") #返回响应的头部,具体描述的要返回的内容类型,在cgi当中用print进行返回
+print("\n") #返回头部结束
+print(josn_result) #返回响应的body
\ No newline at end of file
diff --git a/cgiProject/image.html b/cgiProject/image.html
new file mode 100644
index 0000000..cc8db21
--- /dev/null
+++ b/cgiProject/image.html
@@ -0,0 +1,57 @@
+
+
+
+ image
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/cgiProject/index.html b/cgiProject/index.html
new file mode 100644
index 0000000..936a5a7
--- /dev/null
+++ b/cgiProject/index.html
@@ -0,0 +1,10 @@
+
+
+
+ index
+
+
+
+ hello world
+
+
\ No newline at end of file
diff --git a/cgiProject/js/Chart.min.js b/cgiProject/js/Chart.min.js
new file mode 100644
index 0000000..45aba63
--- /dev/null
+++ b/cgiProject/js/Chart.min.js
@@ -0,0 +1,2086 @@
+/*!
+ * Chart.js
+ * http://chartjs.org/
+ * Version: 1.0.1-beta.4
+ *
+ * Copyright 2014 Nick Downie
+ * Released under the MIT license
+ * https://github.com/nnnick/Chart.js/blob/master/LICENSE.md
+ */
+(function () {
+ 'use strict';
+ var t = this,
+ i = t.Chart,
+ e = function (t) {
+ this.canvas = t.canvas,
+ this.ctx = t;
+ this.width = t.canvas.width,
+ this.height = t.canvas.height;
+ return this.aspectRatio = this.width / this.height,
+ s.retinaScale(this),
+ this
+ };
+ e.defaults = {
+ global: {
+ animation: !0,
+ animationSteps: 60,
+ animationEasing: 'easeOutQuart',
+ showScale: !0,
+ scaleOverride: !1,
+ scaleSteps: null,
+ scaleStepWidth: null,
+ scaleStartValue: null,
+ scaleLineColor: 'rgba(0,0,0,.1)',
+ scaleLineWidth: 1,
+ scaleShowLabels: !0,
+ scaleLabel: '<%=value%>',
+ scaleIntegersOnly: !0,
+ scaleBeginAtZero: !1,
+ scaleFontFamily: '\'Helvetica Neue\', \'Helvetica\', \'Arial\', sans-serif',
+ scaleFontSize: 12,
+ scaleFontStyle: 'normal',
+ scaleFontColor: '#666',
+ responsive: !1,
+ maintainAspectRatio: !0,
+ showTooltips: !0,
+ tooltipEvents: [
+ 'mousemove',
+ 'touchstart',
+ 'touchmove',
+ 'mouseout'
+ ],
+ tooltipFillColor: 'rgba(0,0,0,0.8)',
+ tooltipFontFamily: '\'Helvetica Neue\', \'Helvetica\', \'Arial\', sans-serif',
+ tooltipFontSize: 14,
+ tooltipFontStyle: 'normal',
+ tooltipFontColor: '#fff',
+ tooltipTitleFontFamily: '\'Helvetica Neue\', \'Helvetica\', \'Arial\', sans-serif',
+ tooltipTitleFontSize: 14,
+ tooltipTitleFontStyle: 'bold',
+ tooltipTitleFontColor: '#fff',
+ tooltipYPadding: 6,
+ tooltipXPadding: 6,
+ tooltipCaretSize: 8,
+ tooltipCornerRadius: 6,
+ tooltipXOffset: 10,
+ tooltipTemplate: '<%if (label){%><%=label%>: <%}%><%= value %>',
+ multiTooltipTemplate: '<%= value %>',
+ multiTooltipKeyBackground: '#fff',
+ onAnimationProgress: function () {
+ },
+ onAnimationComplete: function () {
+ }
+ }
+ },
+ e.types = {
+ };
+ var s = e.helpers = {
+ },
+ n = s.each = function (t, i, e) {
+ var s = Array.prototype.slice.call(arguments, 3);
+ if (t) if (t.length === + t.length) {
+ var n;
+ for (n = 0; n < t.length; n++) i.apply(e, [
+ t[n],
+ n
+ ].concat(s))
+ } else for (var o in t) i.apply(e, [
+ t[o],
+ o
+ ].concat(s))
+ },
+ o = s.clone = function (t) {
+ var i = {
+ };
+ return n(t, function (e, s) {
+ t.hasOwnProperty(s) && (i[s] = e)
+ }),
+ i
+ },
+ a = s.extend = function (t) {
+ return n(Array.prototype.slice.call(arguments, 1), function (i) {
+ n(i, function (e, s) {
+ i.hasOwnProperty(s) && (t[s] = e)
+ })
+ }),
+ t
+ },
+ h = s.merge = function () {
+ var t = Array.prototype.slice.call(arguments, 0);
+ return t.unshift({
+ }),
+ a.apply(null, t)
+ },
+ l = s.indexOf = function (t, i) {
+ if (Array.prototype.indexOf) return t.indexOf(i);
+ for (var e = 0; e < t.length; e++) if (t[e] === i) return e;
+ return - 1
+ },
+ r = (s.where = function (t, i) {
+ var e = [
+ ];
+ return s.each(t, function (t) {
+ i(t) && e.push(t)
+ }),
+ e
+ }, s.findNextWhere = function (t, i, e) {
+ e || (e = - 1);
+ for (var s = e + 1; s < t.length; s++) {
+ var n = t[s];
+ if (i(n)) return n
+ }
+ }, s.findPreviousWhere = function (t, i, e) {
+ e || (e = t.length);
+ for (var s = e - 1; s >= 0; s--) {
+ var n = t[s];
+ if (i(n)) return n
+ }
+ }, s.inherits = function (t) {
+ var i = this,
+ e = t && t.hasOwnProperty('constructor') ? t.constructor : function () {
+ return i.apply(this, arguments)
+ },
+ s = function () {
+ this.constructor = e
+ };
+ return s.prototype = i.prototype,
+ e.prototype = new s,
+ e.extend = r,
+ t && a(e.prototype, t),
+ e.__super__ = i.prototype,
+ e
+ }),
+ c = s.noop = function () {
+ },
+ u = s.uid = function () {
+ var t = 0;
+ return function () {
+ return 'chart-' + t++
+ }
+ }(),
+ d = s.warn = function (t) {
+ window.console && 'function' == typeof window.console.warn && console.warn(t)
+ },
+ p = s.amd = 'function' == typeof t.define && t.define.amd,
+ f = s.isNumber = function (t) {
+ return !isNaN(parseFloat(t)) && isFinite(t)
+ },
+ g = s.max = function (t) {
+ return Math.max.apply(Math, t)
+ },
+ m = s.min = function (t) {
+ return Math.min.apply(Math, t)
+ },
+ v = (s.cap = function (t, i, e) {
+ if (f(i)) {
+ if (t > i) return i
+ } else if (f(e) && e > t) return e;
+ return t
+ }, s.getDecimalPlaces = function (t) {
+ return t % 1 !== 0 && f(t) ? t.toString().split('.') [1].length : 0
+ }),
+ x = s.radians = function (t) {
+ return t * (Math.PI / 180)
+ },
+ S = (s.getAngleFromPoint = function (t, i) {
+ var e = i.x - t.x,
+ s = i.y - t.y,
+ n = Math.sqrt(e * e + s * s),
+ o = 2 * Math.PI + Math.atan2(s, e);
+ return 0 > e && 0 > s && (o += 2 * Math.PI),
+ {
+ angle: o,
+ distance: n
+ }
+ }, s.aliasPixel = function (t) {
+ return t % 2 === 0 ? 0 : 0.5
+ }),
+ y = (s.splineCurve = function (t, i, e, s) {
+ var n = Math.sqrt(Math.pow(i.x - t.x, 2) + Math.pow(i.y - t.y, 2)),
+ o = Math.sqrt(Math.pow(e.x - i.x, 2) + Math.pow(e.y - i.y, 2)),
+ a = s * n / (n + o),
+ h = s * o / (n + o);
+ return {
+ inner: {
+ x: i.x - a * (e.x - t.x),
+ y: i.y - a * (e.y - t.y)
+ },
+ outer: {
+ x: i.x + h * (e.x - t.x),
+ y: i.y + h * (e.y - t.y)
+ }
+ }
+ }, s.calculateOrderOfMagnitude = function (t) {
+ return Math.floor(Math.log(t) / Math.LN10)
+ }),
+ C = (s.calculateScaleRange = function (t, i, e, s, n) {
+ var o = 2,
+ a = Math.floor(i / (1.5 * e)),
+ h = o >= a,
+ l = g(t),
+ r = m(t);
+ l === r && (l += 0.5, r >= 0.5 && !s ? r -= 0.5 : l += 0.5);
+ for (var c = Math.abs(l - r), u = y(c), d = Math.ceil(l / (1 * Math.pow(10, u))) * Math.pow(10, u), p = s ? 0 : Math.floor(r / (1 * Math.pow(10, u))) * Math.pow(10, u), f = d - p, v = Math.pow(10, u), x = Math.round(f / v); (x > a || a > 2 * x) && !h; ) if (x > a) v *= 2,
+ x = Math.round(f / v),
+ x % 1 !== 0 && (h = !0);
+ else if (n && u >= 0) {
+ if (v / 2 % 1 !== 0) break;
+ v /= 2,
+ x = Math.round(f / v)
+ } else v /= 2,
+ x = Math.round(f / v);
+ return h && (x = o, v = f / x),
+ {
+ steps: x,
+ stepValue: v,
+ min: p,
+ max: p + x * v
+ }
+ }, s.template = function (t, i) {
+ function e(t, i) {
+ var e = /\W/.test(t) ? new Function('obj', 'var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push(\'' + t.replace(/[\r\t\n]/g, ' ').split('<%').join('\t').replace(/((^|%>)[^\t]*)'/g, '$1\r').replace(/\t=(.*?)%>/g, '\',$1,\'').split('\t').join('\');').split('%>').join('p.push(\'').split('\r').join('\\\'') + '\');}return p.join(\'\');') : s[t] = s[t];
+ return i ? e(i) : e
+ }
+ if (t instanceof Function) return t(i);
+ var s = {
+ };
+ return e(t, i)
+ }),
+ b = (s.generateLabels = function (t, i, e, s) {
+ var o = new Array(i);
+ return labelTemplateString && n(o, function (i, n) {
+ o[n] = C(t, {
+ value: e + s * (n + 1)
+ })
+ }),
+ o
+ }, s.easingEffects = {
+ linear: function (t) {
+ return t
+ },
+ easeInQuad: function (t) {
+ return t * t
+ },
+ easeOutQuad: function (t) {
+ return - 1 * t * (t - 2)
+ },
+ easeInOutQuad: function (t) {
+ return (t /= 0.5) < 1 ? 0.5 * t * t : - 0.5 * (--t * (t - 2) - 1)
+ },
+ easeInCubic: function (t) {
+ return t * t * t
+ },
+ easeOutCubic: function (t) {
+ return 1 * ((t = t / 1 - 1) * t * t + 1)
+ },
+ easeInOutCubic: function (t) {
+ return (t /= 0.5) < 1 ? 0.5 * t * t * t : 0.5 * ((t -= 2) * t * t + 2)
+ },
+ easeInQuart: function (t) {
+ return t * t * t * t
+ },
+ easeOutQuart: function (t) {
+ return - 1 * ((t = t / 1 - 1) * t * t * t - 1)
+ },
+ easeInOutQuart: function (t) {
+ return (t /= 0.5) < 1 ? 0.5 * t * t * t * t : - 0.5 * ((t -= 2) * t * t * t - 2)
+ },
+ easeInQuint: function (t) {
+ return 1 * (t /= 1) * t * t * t * t
+ },
+ easeOutQuint: function (t) {
+ return 1 * ((t = t / 1 - 1) * t * t * t * t + 1)
+ },
+ easeInOutQuint: function (t) {
+ return (t /= 0.5) < 1 ? 0.5 * t * t * t * t * t : 0.5 * ((t -= 2) * t * t * t * t + 2)
+ },
+ easeInSine: function (t) {
+ return - 1 * Math.cos(t / 1 * (Math.PI / 2)) + 1
+ },
+ easeOutSine: function (t) {
+ return 1 * Math.sin(t / 1 * (Math.PI / 2))
+ },
+ easeInOutSine: function (t) {
+ return - 0.5 * (Math.cos(Math.PI * t / 1) - 1)
+ },
+ easeInExpo: function (t) {
+ return 0 === t ? 1 : 1 * Math.pow(2, 10 * (t / 1 - 1))
+ },
+ easeOutExpo: function (t) {
+ return 1 === t ? 1 : 1 * ( - Math.pow(2, - 10 * t / 1) + 1)
+ },
+ easeInOutExpo: function (t) {
+ return 0 === t ? 0 : 1 === t ? 1 : (t /= 0.5) < 1 ? 0.5 * Math.pow(2, 10 * (t - 1)) : 0.5 * ( - Math.pow(2, - 10 * --t) + 2)
+ },
+ easeInCirc: function (t) {
+ return t >= 1 ? t : - 1 * (Math.sqrt(1 - (t /= 1) * t) - 1)
+ },
+ easeOutCirc: function (t) {
+ return 1 * Math.sqrt(1 - (t = t / 1 - 1) * t)
+ },
+ easeInOutCirc: function (t) {
+ return (t /= 0.5) < 1 ? - 0.5 * (Math.sqrt(1 - t * t) - 1) : 0.5 * (Math.sqrt(1 - (t -= 2) * t) + 1)
+ },
+ easeInElastic: function (t) {
+ var i = 1.70158,
+ e = 0,
+ s = 1;
+ return 0 === t ? 0 : 1 == (t /= 1) ? 1 : (e || (e = 0.3), s < Math.abs(1) ? (s = 1, i = e / 4) : i = e / (2 * Math.PI) * Math.asin(1 / s), - (s * Math.pow(2, 10 * (t -= 1)) * Math.sin(2 * (1 * t - i) * Math.PI / e)))
+ },
+ easeOutElastic: function (t) {
+ var i = 1.70158,
+ e = 0,
+ s = 1;
+ return 0 === t ? 0 : 1 == (t /= 1) ? 1 : (e || (e = 0.3), s < Math.abs(1) ? (s = 1, i = e / 4) : i = e / (2 * Math.PI) * Math.asin(1 / s), s * Math.pow(2, - 10 * t) * Math.sin(2 * (1 * t - i) * Math.PI / e) + 1)
+ },
+ easeInOutElastic: function (t) {
+ var i = 1.70158,
+ e = 0,
+ s = 1;
+ return 0 === t ? 0 : 2 == (t /= 0.5) ? 1 : (e || (e = 0.3 * 1.5), s < Math.abs(1) ? (s = 1, i = e / 4) : i = e / (2 * Math.PI) * Math.asin(1 / s), 1 > t ? - 0.5 * s * Math.pow(2, 10 * (t -= 1)) * Math.sin(2 * (1 * t - i) * Math.PI / e) : s * Math.pow(2, - 10 * (t -= 1)) * Math.sin(2 * (1 * t - i) * Math.PI / e) * 0.5 + 1)
+ },
+ easeInBack: function (t) {
+ var i = 1.70158;
+ return 1 * (t /= 1) * t * ((i + 1) * t - i)
+ },
+ easeOutBack: function (t) {
+ var i = 1.70158;
+ return 1 * ((t = t / 1 - 1) * t * ((i + 1) * t + i) + 1)
+ },
+ easeInOutBack: function (t) {
+ var i = 1.70158;
+ return (t /= 0.5) < 1 ? 0.5 * t * t * (((i *= 1.525) + 1) * t - i) : 0.5 * ((t -= 2) * t * (((i *= 1.525) + 1) * t + i) + 2)
+ },
+ easeInBounce: function (t) {
+ return 1 - b.easeOutBounce(1 - t)
+ },
+ easeOutBounce: function (t) {
+ return (t /= 1) < 1 / 2.75 ? 7.5625 * t * t : 2 / 2.75 > t ? 1 * (7.5625 * (t -= 1.5 / 2.75) * t + 0.75) : 2.5 / 2.75 > t ? 1 * (7.5625 * (t -= 2.25 / 2.75) * t + 0.9375) : 1 * (7.5625 * (t -= 2.625 / 2.75) * t + 0.984375)
+ },
+ easeInOutBounce: function (t) {
+ return 0.5 > t ? 0.5 * b.easeInBounce(2 * t) : 0.5 * b.easeOutBounce(2 * t - 1) + 0.5
+ }
+ }),
+ w = s.requestAnimFrame = function () {
+ return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function (t) {
+ return window.setTimeout(t, 1000 / 60)
+ }
+ }(),
+ P = (s.cancelAnimFrame = function () {
+ return window.cancelAnimationFrame || window.webkitCancelAnimationFrame || window.mozCancelAnimationFrame || window.oCancelAnimationFrame || window.msCancelAnimationFrame || function (t) {
+ return window.clearTimeout(t, 1000 / 60)
+ }
+ }(), s.animationLoop = function (t, i, e, s, n, o) {
+ var a = 0,
+ h = b[e] || b.linear,
+ l = function () {
+ a++;
+ var e = a / i,
+ r = h(e);
+ t.call(o, r, e, a),
+ s.call(o, r, e),
+ i > a ? o.animationFrame = w(l) : n.apply(o)
+ };
+ w(l)
+ }, s.getRelativePosition = function (t) {
+ var i,
+ e,
+ s = t.originalEvent || t,
+ n = t.currentTarget || t.srcElement,
+ o = n.getBoundingClientRect();
+ return s.touches ? (i = s.touches[0].clientX - o.left, e = s.touches[0].clientY - o.top) : (i = s.clientX - o.left, e = s.clientY - o.top),
+ {
+ x: i,
+ y: e
+ }
+ }, s.addEvent = function (t, i, e) {
+ t.addEventListener ? t.addEventListener(i, e) : t.attachEvent ? t.attachEvent('on' + i, e) : t['on' + i] = e
+ }),
+ L = s.removeEvent = function (t, i, e) {
+ t.removeEventListener ? t.removeEventListener(i, e, !1) : t.detachEvent ? t.detachEvent('on' + i, e) : t['on' + i] = c
+ },
+ k = (s.bindEvents = function (t, i, e) {
+ t.events || (t.events = {
+ }),
+ n(i, function (i) {
+ t.events[i] = function () {
+ e.apply(t, arguments)
+ },
+ P(t.chart.canvas, i, t.events[i])
+ })
+ }, s.unbindEvents = function (t, i) {
+ n(i, function (i, e) {
+ L(t.chart.canvas, e, i)
+ })
+ }),
+ F = s.getMaximumWidth = function (t) {
+ var i = t.parentNode;
+ return i.clientWidth
+ },
+ R = s.getMaximumHeight = function (t) {
+ var i = t.parentNode;
+ return i.clientHeight
+ },
+ A = (s.getMaximumSize = s.getMaximumWidth, s.retinaScale = function (t) {
+ var i = t.ctx,
+ e = t.canvas.width,
+ s = t.canvas.height;
+ window.devicePixelRatio && (i.canvas.style.width = e + 'px', i.canvas.style.height = s + 'px', i.canvas.height = s * window.devicePixelRatio, i.canvas.width = e * window.devicePixelRatio, i.scale(window.devicePixelRatio, window.devicePixelRatio))
+ }),
+ T = s.clear = function (t) {
+ t.ctx.clearRect(0, 0, t.width, t.height)
+ },
+ M = s.fontString = function (t, i, e) {
+ return i + ' ' + t + 'px ' + e
+ },
+ W = s.longestText = function (t, i, e) {
+ t.font = i;
+ var s = 0;
+ return n(e, function (i) {
+ var e = t.measureText(i).width;
+ s = e > s ? e : s
+ }),
+ s
+ },
+ z = s.drawRoundedRectangle = function (t, i, e, s, n, o) {
+ t.beginPath(),
+ t.moveTo(i + o, e),
+ t.lineTo(i + s - o, e),
+ t.quadraticCurveTo(i + s, e, i + s, e + o),
+ t.lineTo(i + s, e + n - o),
+ t.quadraticCurveTo(i + s, e + n, i + s - o, e + n),
+ t.lineTo(i + o, e + n),
+ t.quadraticCurveTo(i, e + n, i, e + n - o),
+ t.lineTo(i, e + o),
+ t.quadraticCurveTo(i, e, i + o, e),
+ t.closePath()
+ };
+ e.instances = {
+ },
+ e.Type = function (t, i, s) {
+ this.options = i,
+ this.chart = s,
+ this.id = u(),
+ e.instances[this.id] = this,
+ i.responsive && this.resize(),
+ this.initialize.call(this, t)
+ },
+ a(e.Type.prototype, {
+ initialize: function () {
+ return this
+ },
+ clear: function () {
+ return T(this.chart),
+ this
+ },
+ stop: function () {
+ return s.cancelAnimFrame.call(t, this.animationFrame),
+ this
+ },
+ resize: function (t) {
+ this.stop();
+ var i = this.chart.canvas,
+ e = F(this.chart.canvas),
+ s = this.options.maintainAspectRatio ? e / this.chart.aspectRatio : R(this.chart.canvas);
+ return i.width = this.chart.width = e,
+ i.height = this.chart.height = s,
+ A(this.chart),
+ 'function' == typeof t && t.apply(this, Array.prototype.slice.call(arguments, 1)),
+ this
+ },
+ reflow: c,
+ render: function (t) {
+ return t && this.reflow(),
+ this.options.animation && !t ? s.animationLoop(this.draw, this.options.animationSteps, this.options.animationEasing, this.options.onAnimationProgress, this.options.onAnimationComplete, this) : (this.draw(), this.options.onAnimationComplete.call(this)),
+ this
+ },
+ generateLegend: function () {
+ return C(this.options.legendTemplate, this)
+ },
+ destroy: function () {
+ this.clear(),
+ k(this, this.events),
+ delete e.instances[this.id]
+ },
+ showTooltip: function (t, i) {
+ 'undefined' == typeof this.activeElements && (this.activeElements = [
+ ]);
+ var o = function (t) {
+ var i = !1;
+ return t.length !== this.activeElements.length ? i = !0 : (n(t, function (t, e) {
+ t !== this.activeElements[e] && (i = !0)
+ }, this), i)
+ }.call(this, t);
+ if (o || i) {
+ if (this.activeElements = t, this.draw(), t.length > 0) if (this.datasets && this.datasets.length > 1) {
+ for (var a, h, r = this.datasets.length - 1; r >= 0 && (a = this.datasets[r].points || this.datasets[r].bars || this.datasets[r].segments, h = l(a, t[0]), - 1 === h); r--);
+ var c = [
+ ],
+ u = [
+ ],
+ d = function () {
+ var t,
+ i,
+ e,
+ n,
+ o,
+ a = [
+ ],
+ l = [
+ ],
+ r = [
+ ];
+ return s.each(this.datasets, function (i) {
+ t = i.points || i.bars || i.segments,
+ t[h] && t[h].hasValue() && a.push(t[h])
+ }),
+ s.each(a, function (t) {
+ l.push(t.x),
+ r.push(t.y),
+ c.push(s.template(this.options.multiTooltipTemplate, t)),
+ u.push({
+ fill: t._saved.fillColor || t.fillColor,
+ stroke: t._saved.strokeColor || t.strokeColor
+ })
+ }, this),
+ o = m(r),
+ e = g(r),
+ n = m(l),
+ i = g(l),
+ {
+ x: n > this.chart.width / 2 ? n : i,
+ y: (o + e) / 2
+ }
+ }.call(this, h);
+ new e.MultiTooltip({
+ x: d.x,
+ y: d.y,
+ xPadding: this.options.tooltipXPadding,
+ yPadding: this.options.tooltipYPadding,
+ xOffset: this.options.tooltipXOffset,
+ fillColor: this.options.tooltipFillColor,
+ textColor: this.options.tooltipFontColor,
+ fontFamily: this.options.tooltipFontFamily,
+ fontStyle: this.options.tooltipFontStyle,
+ fontSize: this.options.tooltipFontSize,
+ titleTextColor: this.options.tooltipTitleFontColor,
+ titleFontFamily: this.options.tooltipTitleFontFamily,
+ titleFontStyle: this.options.tooltipTitleFontStyle,
+ titleFontSize: this.options.tooltipTitleFontSize,
+ cornerRadius: this.options.tooltipCornerRadius,
+ labels: c,
+ legendColors: u,
+ legendColorBackground: this.options.multiTooltipKeyBackground,
+ title: t[0].label,
+ chart: this.chart,
+ ctx: this.chart.ctx
+ }).draw()
+ } else n(t, function (t) {
+ var i = t.tooltipPosition();
+ new e.Tooltip({
+ x: Math.round(i.x),
+ y: Math.round(i.y),
+ xPadding: this.options.tooltipXPadding,
+ yPadding: this.options.tooltipYPadding,
+ fillColor: this.options.tooltipFillColor,
+ textColor: this.options.tooltipFontColor,
+ fontFamily: this.options.tooltipFontFamily,
+ fontStyle: this.options.tooltipFontStyle,
+ fontSize: this.options.tooltipFontSize,
+ caretHeight: this.options.tooltipCaretSize,
+ cornerRadius: this.options.tooltipCornerRadius,
+ text: (t.label === undefined ? "值:" : "") + C(this.options.tooltipTemplate, t),
+ chart: this.chart
+ }).draw()
+ }, this);
+ return this
+ }
+ },
+ toBase64Image: function () {
+ return this.chart.canvas.toDataURL.apply(this.chart.canvas, arguments)
+ }
+ }),
+ e.Type.extend = function (t) {
+ var i = this,
+ s = function () {
+ return i.apply(this, arguments)
+ };
+ if (s.prototype = o(i.prototype), a(s.prototype, t), s.extend = e.Type.extend, t.name || i.prototype.name) {
+ var n = t.name || i.prototype.name,
+ l = e.defaults[i.prototype.name] ? o(e.defaults[i.prototype.name]) : {
+ };
+ e.defaults[n] = a(l, t.defaults),
+ e.types[n] = s,
+ e.prototype[n] = function (t, i) {
+ var o = h(e.defaults.global, e.defaults[n], i || {
+ });
+ return new s(t, o, this)
+ }
+ } else d('Name not provided for this chart, so it hasn\'t been registered');
+ return i
+ },
+ e.Element = function (t) {
+ a(this, t),
+ this.initialize.apply(this, arguments),
+ this.save()
+ },
+ a(e.Element.prototype, {
+ initialize: function () {
+ },
+ restore: function (t) {
+ return t ? n(t, function (t) {
+ this[t] = this._saved[t]
+ }, this) : a(this, this._saved),
+ this
+ },
+ save: function () {
+ return this._saved = o(this),
+ delete this._saved._saved,
+ this
+ },
+ update: function (t) {
+ return n(t, function (t, i) {
+ this._saved[i] = this[i],
+ this[i] = t
+ }, this),
+ this
+ },
+ transition: function (t, i) {
+ return n(t, function (t, e) {
+ this[e] = (t - this._saved[e]) * i + this._saved[e]
+ }, this),
+ this
+ },
+ tooltipPosition: function () {
+ return {
+ x: this.x,
+ y: this.y
+ }
+ },
+ hasValue: function () {
+ return f(this.value)
+ }
+ }),
+ e.Element.extend = r,
+ e.Point = e.Element.extend({
+ display: !0,
+ inRange: function (t, i) {
+ var e = this.hitDetectionRadius + this.radius;
+ return Math.pow(t - this.x, 2) + Math.pow(i - this.y, 2) < Math.pow(e, 2)
+ },
+ draw: function () {
+ if (this.display) {
+ var t = this.ctx;
+ t.beginPath(),
+ t.arc(this.x, this.y, this.radius, 0, 2 * Math.PI),
+ t.closePath(),
+ t.strokeStyle = this.strokeColor,
+ t.lineWidth = this.strokeWidth,
+ t.fillStyle = this.fillColor,
+ t.fill(),
+ t.stroke()
+ }
+ }
+ }),
+ e.Arc = e.Element.extend({
+ inRange: function (t, i) {
+ var e = s.getAngleFromPoint(this, {
+ x: t,
+ y: i
+ }),
+ n = e.angle >= this.startAngle && e.angle <= this.endAngle,
+ o = e.distance >= this.innerRadius && e.distance <= this.outerRadius;
+ return n && o
+ },
+ tooltipPosition: function () {
+ var t = this.startAngle + (this.endAngle - this.startAngle) / 2,
+ i = (this.outerRadius - this.innerRadius) / 2 + this.innerRadius;
+ return {
+ x: this.x + Math.cos(t) * i,
+ y: this.y + Math.sin(t) * i
+ }
+ },
+ draw: function (t) {
+ var i = this.ctx;
+ i.beginPath(),
+ i.arc(this.x, this.y, this.outerRadius, this.startAngle, this.endAngle),
+ i.arc(this.x, this.y, this.innerRadius, this.endAngle, this.startAngle, !0),
+ i.closePath(),
+ i.strokeStyle = this.strokeColor,
+ i.lineWidth = this.strokeWidth,
+ i.fillStyle = this.fillColor,
+ i.fill(),
+ i.lineJoin = 'bevel',
+ this.showStroke && i.stroke()
+ }
+ }),
+ e.Rectangle = e.Element.extend({
+ draw: function () {
+ var t = this.ctx,
+ i = this.width / 2,
+ e = this.x - i,
+ s = this.x + i,
+ n = this.base - (this.base - this.y),
+ o = this.strokeWidth / 2;
+ this.showStroke && (e += o, s -= o, n += o),
+ t.beginPath(),
+ t.fillStyle = this.fillColor,
+ t.strokeStyle = this.strokeColor,
+ t.lineWidth = this.strokeWidth,
+ t.moveTo(e, this.base),
+ t.lineTo(e, n),
+ t.lineTo(s, n),
+ t.lineTo(s, this.base),
+ t.fill(),
+ this.showStroke && t.stroke()
+ },
+ height: function () {
+ return this.base - this.y
+ },
+ inRange: function (t, i) {
+ return t >= this.x - this.width / 2 && t <= this.x + this.width / 2 && i >= this.y && i <= this.base
+ }
+ }),
+ e.Tooltip = e.Element.extend({
+ draw: function () {
+ var t = this.chart.ctx;
+ t.font = M(this.fontSize, this.fontStyle, this.fontFamily),
+ this.xAlign = 'center',
+ this.yAlign = 'above';
+ var i = 2,
+ e = t.measureText(this.text).width + 2 * this.xPadding,
+ s = this.fontSize + 2 * this.yPadding,
+ n = s + this.caretHeight + i;
+ this.x + e / 2 > this.chart.width ? this.xAlign = 'left' : this.x - e / 2 < 0 && (this.xAlign = 'right'),
+ this.y - n < 0 && (this.yAlign = 'below');
+ var o = this.x - e / 2,
+ a = this.y - n;
+ switch (t.fillStyle = this.fillColor, this.yAlign) {
+ case 'above':
+ t.beginPath(),
+ t.moveTo(this.x, this.y - i),
+ t.lineTo(this.x + this.caretHeight, this.y - (i + this.caretHeight)),
+ t.lineTo(this.x - this.caretHeight, this.y - (i + this.caretHeight)),
+ t.closePath(),
+ t.fill();
+ break;
+ case 'below':
+ a = this.y + i + this.caretHeight,
+ t.beginPath(),
+ t.moveTo(this.x, this.y + i),
+ t.lineTo(this.x + this.caretHeight, this.y + i + this.caretHeight),
+ t.lineTo(this.x - this.caretHeight, this.y + i + this.caretHeight),
+ t.closePath(),
+ t.fill()
+ }
+ switch (this.xAlign) {
+ case 'left':
+ o = this.x - e + (this.cornerRadius + this.caretHeight);
+ break;
+ case 'right':
+ o = this.x - (this.cornerRadius + this.caretHeight)
+ }
+ z(t, o, a, e, s, this.cornerRadius),
+ t.fill(),
+ t.fillStyle = this.textColor,
+ t.textAlign = 'center',
+ t.textBaseline = 'middle',
+ t.fillText(this.text, o + e / 2, a + s / 2)
+ }
+}),
+e.MultiTooltip = e.Element.extend({
+ initialize: function () {
+ this.font = M(this.fontSize, this.fontStyle, this.fontFamily),
+ this.titleFont = M(this.titleFontSize, this.titleFontStyle, this.titleFontFamily),
+ this.height = this.labels.length * this.fontSize + (this.labels.length - 1) * (this.fontSize / 2) + 2 * this.yPadding + 1.5 * this.titleFontSize,
+ this.ctx.font = this.titleFont;
+ var t = this.ctx.measureText(this.title).width,
+ i = W(this.ctx, this.font, this.labels) + this.fontSize + 3,
+ e = g([i,
+ t]);
+ this.width = e + 2 * this.xPadding;
+ var s = this.height / 2;
+ this.y - s < 0 ? this.y = s : this.y + s > this.chart.height && (this.y = this.chart.height - s),
+ this.x > this.chart.width / 2 ? this.x -= this.xOffset + this.width : this.x += this.xOffset
+ },
+ getLineHeight: function (t) {
+ var i = this.y - this.height / 2 + this.yPadding,
+ e = t - 1;
+ return 0 === t ? i + this.titleFontSize / 2 : i + (1.5 * this.fontSize * e + this.fontSize / 2) + 1.5 * this.titleFontSize
+ },
+ draw: function () {
+ z(this.ctx, this.x, this.y - this.height / 2, this.width, this.height, this.cornerRadius);
+ var t = this.ctx;
+ t.fillStyle = this.fillColor,
+ t.fill(),
+ t.closePath(),
+ t.textAlign = 'left',
+ t.textBaseline = 'middle',
+ t.fillStyle = this.titleTextColor,
+ t.font = this.titleFont,
+ t.fillText(this.title, this.x + this.xPadding, this.getLineHeight(0)),
+ t.font = this.font,
+ s.each(this.labels, function (i, e) {
+ t.fillStyle = this.textColor,
+ t.fillText(i, this.x + this.xPadding + this.fontSize + 3, this.getLineHeight(e + 1)),
+ t.fillStyle = this.legendColorBackground,
+ t.fillRect(this.x + this.xPadding, this.getLineHeight(e + 1) - this.fontSize / 2, this.fontSize, this.fontSize),
+ t.fillStyle = this.legendColors[e].fill,
+ t.fillRect(this.x + this.xPadding, this.getLineHeight(e + 1) - this.fontSize / 2, this.fontSize, this.fontSize)
+ }, this)
+ }
+}),
+e.Scale = e.Element.extend({
+ initialize: function () {
+ this.fit()
+ },
+ buildYLabels: function () {
+ this.yLabels = [
+ ];
+ for (var t = v(this.stepValue), i = 0; i <= this.steps; i++) this.yLabels.push(C(this.templateString, {
+ value: (this.min + i * this.stepValue).toFixed(t)
+ }));
+ this.yLabelWidth = this.display && this.showLabels ? W(this.ctx, this.font, this.yLabels) : 0
+ },
+ addXLabel: function (t) {
+ this.xLabels.push(t),
+ this.valuesCount++,
+ this.fit()
+ },
+ removeXLabel: function () {
+ this.xLabels.shift(),
+ this.valuesCount--,
+ this.fit()
+ },
+ fit: function () {
+ this.startPoint = this.display ? this.fontSize : 0,
+ this.endPoint = this.display ? this.height - 1.5 * this.fontSize - 5 : this.height,
+ this.startPoint += this.padding,
+ this.endPoint -= this.padding;
+ var t,
+ i = this.endPoint - this.startPoint;
+ for (this.calculateYRange(i), this.buildYLabels(), this.calculateXLabelRotation(); i > this.endPoint - this.startPoint; ) i = this.endPoint - this.startPoint,
+ t = this.yLabelWidth,
+ this.calculateYRange(i),
+ this.buildYLabels(),
+ t < this.yLabelWidth && this.calculateXLabelRotation()
+ },
+ calculateXLabelRotation: function () {
+ this.ctx.font = this.font;
+ var t,
+ i,
+ e = this.ctx.measureText(this.xLabels[0]).width,
+ s = this.ctx.measureText(this.xLabels[this.xLabels.length - 1]).width;
+ if (this.xScalePaddingRight = s / 2 + 3, this.xScalePaddingLeft = e / 2 > this.yLabelWidth + 10 ? e / 2 : this.yLabelWidth + 10, this.xLabelRotation = 0, this.display) {
+ var n,
+ o = W(this.ctx, this.font, this.xLabels);
+ this.xLabelWidth = o;
+ for (var a = Math.floor(this.calculateX(1) - this.calculateX(0)) - 6; this.xLabelWidth > a && 0 === this.xLabelRotation || this.xLabelWidth > a && this.xLabelRotation <= 90 && this.xLabelRotation > 0; ) n = Math.cos(x(this.xLabelRotation)),
+ t = n * e,
+ i = n * s,
+ t + this.fontSize / 2 > this.yLabelWidth + 8 && (this.xScalePaddingLeft = t + this.fontSize / 2),
+ this.xScalePaddingRight = this.fontSize / 2,
+ this.xLabelRotation++,
+ this.xLabelWidth = n * o;
+ this.xLabelRotation > 0 && (this.endPoint -= Math.sin(x(this.xLabelRotation)) * o + 3)
+ } else this.xLabelWidth = 0,
+ this.xScalePaddingRight = this.padding,
+ this.xScalePaddingLeft = this.padding
+ },
+ calculateYRange: c,
+ drawingArea: function () {
+ return this.startPoint - this.endPoint
+ },
+ calculateY: function (t) {
+ var i = this.drawingArea() / (this.min - this.max);
+ return this.endPoint - i * (t - this.min)
+ },
+ calculateX: function (t) {
+ var i = (this.xLabelRotation > 0, this.width - (this.xScalePaddingLeft + this.xScalePaddingRight)),
+ e = i / (this.valuesCount - (this.offsetGridLines ? 0 : 1)),
+ s = e * t + this.xScalePaddingLeft;
+ return this.offsetGridLines && (s += e / 2),
+ Math.round(s)
+ },
+ update: function (t) {
+ s.extend(this, t),
+ this.fit()
+ },
+ draw: function () {
+ var t = this.ctx,
+ i = (this.endPoint - this.startPoint) / this.steps,
+ e = Math.round(this.xScalePaddingLeft);
+ this.display && (t.fillStyle = this.textColor, t.font = this.font, n(this.yLabels, function (n, o) {
+ var a = this.endPoint - i * o,
+ h = Math.round(a);
+ t.textAlign = 'right',
+ t.textBaseline = 'middle',
+ this.showLabels && t.fillText(n, e - 10, a),
+ t.beginPath(),
+ o > 0 ? (t.lineWidth = this.gridLineWidth, t.strokeStyle = this.gridLineColor) : (t.lineWidth = this.lineWidth, t.strokeStyle = this.lineColor),
+ h += s.aliasPixel(t.lineWidth),
+ t.moveTo(e, h),
+ t.lineTo(this.width, h),
+ t.stroke(),
+ t.closePath(),
+ t.lineWidth = this.lineWidth,
+ t.strokeStyle = this.lineColor,
+ t.beginPath(),
+ t.moveTo(e - 5, h),
+ t.lineTo(e, h),
+ t.stroke(),
+ t.closePath()
+ }, this), n(this.xLabels, function (i, e) {
+ var s = this.calculateX(e) + S(this.lineWidth),
+ n = this.calculateX(e - (this.offsetGridLines ? 0.5 : 0)) + S(this.lineWidth),
+ o = this.xLabelRotation > 0;
+ t.beginPath(),
+ e > 0 ? (t.lineWidth = this.gridLineWidth, t.strokeStyle = this.gridLineColor) : (t.lineWidth = this.lineWidth, t.strokeStyle = this.lineColor),
+ t.moveTo(n, this.endPoint),
+ t.lineTo(n, this.startPoint - 3),
+ t.stroke(),
+ t.closePath(),
+ t.lineWidth = this.lineWidth,
+ t.strokeStyle = this.lineColor,
+ t.beginPath(),
+ t.moveTo(n, this.endPoint),
+ t.lineTo(n, this.endPoint + 5),
+ t.stroke(),
+ t.closePath(),
+ t.save(),
+ t.translate(s, o ? this.endPoint + 12 : this.endPoint + 8),
+ t.rotate( - 1 * x(this.xLabelRotation)),
+ t.font = this.font,
+ t.textAlign = o ? 'right' : 'center',
+ t.textBaseline = o ? 'middle' : 'top',
+ t.fillText(i, 0, 0),
+ t.restore()
+ }, this))
+ }
+}),
+e.RadialScale = e.Element.extend({
+ initialize: function () {
+ this.size = m([this.height,
+ this.width]),
+ this.drawingArea = this.display ? this.size / 2 - (this.fontSize / 2 + this.backdropPaddingY) : this.size / 2
+ },
+ calculateCenterOffset: function (t) {
+ var i = this.drawingArea / (this.max - this.min);
+ return (t - this.min) * i
+ },
+ update: function () {
+ this.lineArc ? this.drawingArea = this.display ? this.size / 2 - (this.fontSize / 2 + this.backdropPaddingY) : this.size / 2 : this.setScaleSize(),
+ this.buildYLabels()
+ },
+ buildYLabels: function () {
+ this.yLabels = [
+ ];
+ for (var t = v(this.stepValue), i = 0; i <= this.steps; i++) this.yLabels.push(C(this.templateString, {
+ value: (this.min + i * this.stepValue).toFixed(t)
+ }))
+ },
+ getCircumference: function () {
+ return 2 * Math.PI / this.valuesCount
+ },
+ setScaleSize: function () {
+ var t,
+ i,
+ e,
+ s,
+ n,
+ o,
+ a,
+ h,
+ l,
+ r,
+ c,
+ u,
+ d = m([this.height / 2 - this.pointLabelFontSize - 5,
+ this.width / 2]),
+ p = this.width,
+ g = 0;
+ for (this.ctx.font = M(this.pointLabelFontSize, this.pointLabelFontStyle, this.pointLabelFontFamily), i = 0; i < this.valuesCount; i++) t = this.getPointPosition(i, d),
+ e = this.ctx.measureText(C(this.templateString, {
+ value: this.labels[i]
+ })).width + 5,
+ 0 === i || i === this.valuesCount / 2 ? (s = e / 2, t.x + s > p && (p = t.x + s, n = i), t.x - s < g && (g = t.x - s, a = i)) : i < this.valuesCount / 2 ? t.x + e > p && (p = t.x + e, n = i) : i > this.valuesCount / 2 && t.x - e < g && (g = t.x - e, a = i);
+ l = g,
+ r = Math.ceil(p - this.width),
+ o = this.getIndexAngle(n),
+ h = this.getIndexAngle(a),
+ c = r / Math.sin(o + Math.PI / 2),
+ u = l / Math.sin(h + Math.PI / 2),
+ c = f(c) ? c : 0,
+ u = f(u) ? u : 0,
+ this.drawingArea = d - (u + c) / 2,
+ this.setCenterPoint(u, c)
+ },
+ setCenterPoint: function (t, i) {
+ var e = this.width - i - this.drawingArea,
+ s = t + this.drawingArea;
+ this.xCenter = (s + e) / 2,
+ this.yCenter = this.height / 2
+ },
+ getIndexAngle: function (t) {
+ var i = 2 * Math.PI / this.valuesCount;
+ return t * i - Math.PI / 2
+ },
+ getPointPosition: function (t, i) {
+ var e = this.getIndexAngle(t);
+ return {
+ x: Math.cos(e) * i + this.xCenter,
+ y: Math.sin(e) * i + this.yCenter
+ }
+ },
+ draw: function () {
+ if (this.display) {
+ var t = this.ctx;
+ if (n(this.yLabels, function (i, e) {
+ if (e > 0) {
+ var s,
+ n = e * (this.drawingArea / this.steps),
+ o = this.yCenter - n;
+ if (this.lineWidth > 0) if (t.strokeStyle = this.lineColor, t.lineWidth = this.lineWidth, this.lineArc) t.beginPath(),
+ t.arc(this.xCenter, this.yCenter, n, 0, 2 * Math.PI),
+ t.closePath(),
+ t.stroke();
+ else {
+ t.beginPath();
+ for (var a = 0; a < this.valuesCount; a++) s = this.getPointPosition(a, this.calculateCenterOffset(this.min + e * this.stepValue)),
+ 0 === a ? t.moveTo(s.x, s.y) : t.lineTo(s.x, s.y);
+ t.closePath(),
+ t.stroke()
+ }
+ if (this.showLabels) {
+ if (t.font = M(this.fontSize, this.fontStyle, this.fontFamily), this.showLabelBackdrop) {
+ var h = t.measureText(i).width;
+ t.fillStyle = this.backdropColor,
+ t.fillRect(this.xCenter - h / 2 - this.backdropPaddingX, o - this.fontSize / 2 - this.backdropPaddingY, h + 2 * this.backdropPaddingX, this.fontSize + 2 * this.backdropPaddingY)
+ }
+ t.textAlign = 'center',
+ t.textBaseline = 'middle',
+ t.fillStyle = this.fontColor,
+ t.fillText(i, this.xCenter, o)
+ }
+ }
+ }, this), !this.lineArc) {
+ t.lineWidth = this.angleLineWidth,
+ t.strokeStyle = this.angleLineColor;
+ for (var i = this.valuesCount - 1; i >= 0; i--) {
+ if (this.angleLineWidth > 0) {
+ var e = this.getPointPosition(i, this.calculateCenterOffset(this.max));
+ t.beginPath(),
+ t.moveTo(this.xCenter, this.yCenter),
+ t.lineTo(e.x, e.y),
+ t.stroke(),
+ t.closePath()
+ }
+ var s = this.getPointPosition(i, this.calculateCenterOffset(this.max) + 5);
+ t.font = M(this.pointLabelFontSize, this.pointLabelFontStyle, this.pointLabelFontFamily),
+ t.fillStyle = this.pointLabelFontColor;
+ var o = this.labels.length,
+ a = this.labels.length / 2,
+ h = a / 2,
+ l = h > i || i > o - h,
+ r = i === h || i === o - h;
+ t.textAlign = 0 === i ? 'center' : i === a ? 'center' : a > i ? 'left' : 'right',
+ t.textBaseline = r ? 'middle' : l ? 'bottom' : 'top',
+ t.fillText(this.labels[i], s.x, s.y)
+ }
+ }
+ }
+ }
+}),
+s.addEvent(window, 'resize', function () {
+ var t;
+ return function () {
+ clearTimeout(t),
+ t = setTimeout(function () {
+ n(e.instances, function (t) {
+ t.options.responsive && t.resize(t.render, !0)
+ })
+ }, 50)
+ }
+}()),
+p ? define(function () {
+ return e
+}) : 'object' == typeof module && module.exports && (module.exports = e),
+t.Chart = e,
+e.noConflict = function () {
+ return t.Chart = i,
+ e
+}
+}).call(this),
+function () {
+'use strict';
+var t = this,
+i = t.Chart,
+e = i.helpers,
+s = {
+ scaleBeginAtZero: !0,
+ scaleShowGridLines: !0,
+ scaleGridLineColor: 'rgba(0,0,0,.05)',
+ scaleGridLineWidth: 1,
+ barShowStroke: !0,
+ barStrokeWidth: 2,
+ barValueSpacing: 5,
+ barDatasetSpacing: 1,
+ legendTemplate: '<% for (var i=0; i- <%if(datasets[i].label){%><%=datasets[i].label%><%}%>
<%}%>
'
+};
+i.Type.extend({
+ name: 'Bar',
+ defaults: s,
+ initialize: function (t) {
+ var s = this.options;
+ this.ScaleClass = i.Scale.extend({
+ offsetGridLines: !0,
+ calculateBarX: function (t, i, e) {
+ var n = this.calculateBaseWidth(),
+ o = this.calculateX(e) - n / 2,
+ a = this.calculateBarWidth(t);
+ return o + a * i + i * s.barDatasetSpacing + a / 2
+ },
+ calculateBaseWidth: function () {
+ return this.calculateX(1) - this.calculateX(0) - 2 * s.barValueSpacing
+ },
+ calculateBarWidth: function (t) {
+ var i = this.calculateBaseWidth() - (t - 1) * s.barDatasetSpacing;
+ return i / t
+ }
+ }),
+ this.datasets = [
+ ],
+ this.options.showTooltips && e.bindEvents(this, this.options.tooltipEvents, function (t) {
+ var i = 'mouseout' !== t.type ? this.getBarsAtEvent(t) : [
+ ];
+ this.eachBars(function (t) {
+ t.restore(['fillColor',
+ 'strokeColor'])
+ }),
+ e.each(i, function (t) {
+ t.fillColor = t.highlightFill,
+ t.strokeColor = t.highlightStroke
+ }),
+ this.showTooltip(i)
+ }),
+ this.BarClass = i.Rectangle.extend({
+ strokeWidth: this.options.barStrokeWidth,
+ showStroke: this.options.barShowStroke,
+ ctx: this.chart.ctx
+ }),
+ e.each(t.datasets, function (i) {
+ var s = {
+ label: i.label || null,
+ fillColor: i.fillColor,
+ strokeColor: i.strokeColor,
+ bars: [
+ ]
+ };
+ this.datasets.push(s),
+ e.each(i.data, function (e, n) {
+ s.bars.push(new this.BarClass({
+ value: e,
+ label: t.labels[n],
+ datasetLabel: i.label,
+ strokeColor: i.strokeColor,
+ fillColor: i.fillColor,
+ highlightFill: i.highlightFill || i.fillColor,
+ highlightStroke: i.highlightStroke || i.strokeColor
+ }))
+ }, this)
+ }, this),
+ this.buildScale(t.labels),
+ this.BarClass.prototype.base = this.scale.endPoint,
+ this.eachBars(function (t, i, s) {
+ e.extend(t, {
+ width: this.scale.calculateBarWidth(this.datasets.length),
+ x: this.scale.calculateBarX(this.datasets.length, s, i),
+ y: this.scale.endPoint
+ }),
+ t.save()
+ }, this),
+ this.render()
+ },
+ update: function () {
+ this.scale.update(),
+ e.each(this.activeElements, function (t) {
+ t.restore(['fillColor',
+ 'strokeColor'])
+ }),
+ this.eachBars(function (t) {
+ t.save()
+ }),
+ this.render()
+ },
+ eachBars: function (t) {
+ e.each(this.datasets, function (i, s) {
+ e.each(i.bars, t, this, s)
+ }, this)
+ },
+ getBarsAtEvent: function (t) {
+ for (var i, s = [
+ ], n = e.getRelativePosition(t), o = function (t) {
+ s.push(t.bars[i])
+ }, a = 0; a < this.datasets.length; a++) for (i = 0; i < this.datasets[a].bars.length; i++) if (this.datasets[a].bars[i].inRange(n.x, n.y)) return e.each(this.datasets, o),
+ s;
+ return s
+ },
+ buildScale: function (t) {
+ var i = this,
+ s = function () {
+ var t = [
+ ];
+ return i.eachBars(function (i) {
+ t.push(i.value)
+ }),
+ t
+ },
+ n = {
+ templateString: this.options.scaleLabel,
+ height: this.chart.height,
+ width: this.chart.width,
+ ctx: this.chart.ctx,
+ textColor: this.options.scaleFontColor,
+ fontSize: this.options.scaleFontSize,
+ fontStyle: this.options.scaleFontStyle,
+ fontFamily: this.options.scaleFontFamily,
+ valuesCount: t.length,
+ beginAtZero: this.options.scaleBeginAtZero,
+ integersOnly: this.options.scaleIntegersOnly,
+ calculateYRange: function (t) {
+ var i = e.calculateScaleRange(s(), t, this.fontSize, this.beginAtZero, this.integersOnly);
+ e.extend(this, i)
+ },
+ xLabels: t,
+ font: e.fontString(this.options.scaleFontSize, this.options.scaleFontStyle, this.options.scaleFontFamily),
+ lineWidth: this.options.scaleLineWidth,
+ lineColor: this.options.scaleLineColor,
+ gridLineWidth: this.options.scaleShowGridLines ? this.options.scaleGridLineWidth : 0,
+ gridLineColor: this.options.scaleShowGridLines ? this.options.scaleGridLineColor : 'rgba(0,0,0,0)',
+ padding: this.options.showScale ? 0 : this.options.barShowStroke ? this.options.barStrokeWidth : 0,
+ showLabels: this.options.scaleShowLabels,
+ display: this.options.showScale
+ };
+ this.options.scaleOverride && e.extend(n, {
+ calculateYRange: e.noop,
+ steps: this.options.scaleSteps,
+ stepValue: this.options.scaleStepWidth,
+ min: this.options.scaleStartValue,
+ max: this.options.scaleStartValue + this.options.scaleSteps * this.options.scaleStepWidth
+ }),
+ this.scale = new this.ScaleClass(n)
+ },
+ addData: function (t, i) {
+ e.each(t, function (t, e) {
+ this.datasets[e].bars.push(new this.BarClass({
+ value: t,
+ label: i,
+ x: this.scale.calculateBarX(this.datasets.length, e, this.scale.valuesCount + 1),
+ y: this.scale.endPoint,
+ width: this.scale.calculateBarWidth(this.datasets.length),
+ base: this.scale.endPoint,
+ strokeColor: this.datasets[e].strokeColor,
+ fillColor: this.datasets[e].fillColor
+ }))
+ }, this),
+ this.scale.addXLabel(i),
+ this.update()
+ },
+ removeData: function () {
+ this.scale.removeXLabel(),
+ e.each(this.datasets, function (t) {
+ t.bars.shift()
+ }, this),
+ this.update()
+ },
+ reflow: function () {
+ e.extend(this.BarClass.prototype, {
+ y: this.scale.endPoint,
+ base: this.scale.endPoint
+ });
+ var t = e.extend({
+ height: this.chart.height,
+ width: this.chart.width
+ });
+ this.scale.update(t)
+ },
+ draw: function (t) {
+ var i = t || 1;
+ this.clear();
+ this.chart.ctx;
+ this.scale.draw(i),
+ e.each(this.datasets, function (t, s) {
+ e.each(t.bars, function (t, e) {
+ t.hasValue() && (t.base = this.scale.endPoint, t.transition({
+ x: this.scale.calculateBarX(this.datasets.length, s, e),
+ y: this.scale.calculateY(t.value),
+ width: this.scale.calculateBarWidth(this.datasets.length)
+ }, i).draw())
+ }, this)
+ }, this)
+ }
+})
+}.call(this),
+function () {
+'use strict';
+var t = this,
+i = t.Chart,
+e = i.helpers,
+s = {
+ segmentShowStroke: !0,
+ segmentStrokeColor: '#fff',
+ segmentStrokeWidth: 2,
+ percentageInnerCutout: 50,
+ animationSteps: 100,
+ animationEasing: 'easeOutBounce',
+ animateRotate: !0,
+ animateScale: !1,
+ legendTemplate: '<% for (var i=0; i- <%if(segments[i].label){%><%=segments[i].label%><%}%>
<%}%>
'
+};
+i.Type.extend({
+ name: 'Doughnut',
+ defaults: s,
+ initialize: function (t) {
+ this.segments = [
+ ],
+ this.outerRadius = (e.min([this.chart.width,
+ this.chart.height]) - this.options.segmentStrokeWidth / 2) / 2,
+ this.SegmentArc = i.Arc.extend({
+ ctx: this.chart.ctx,
+ x: this.chart.width / 2,
+ y: this.chart.height / 2
+ }),
+ this.options.showTooltips && e.bindEvents(this, this.options.tooltipEvents, function (t) {
+ var i = 'mouseout' !== t.type ? this.getSegmentsAtEvent(t) : [
+ ];
+ e.each(this.segments, function (t) {
+ t.restore(['fillColor'])
+ }),
+ e.each(i, function (t) {
+ t.fillColor = t.highlightColor
+ }),
+ this.showTooltip(i)
+ }),
+ this.calculateTotal(t),
+ e.each(t, function (t, i) {
+ this.addData(t, i, !0)
+ }, this),
+ this.render()
+ },
+ getSegmentsAtEvent: function (t) {
+ var i = [
+ ],
+ s = e.getRelativePosition(t);
+ return e.each(this.segments, function (t) {
+ t.inRange(s.x, s.y) && i.push(t)
+ }, this),
+ i
+ },
+ addData: function (t, i, e) {
+ var s = i || this.segments.length;
+ this.segments.splice(s, 0, new this.SegmentArc({
+ value: t.value,
+ outerRadius: this.options.animateScale ? 0 : this.outerRadius,
+ innerRadius: this.options.animateScale ? 0 : this.outerRadius / 100 * this.options.percentageInnerCutout,
+ fillColor: t.color,
+ highlightColor: t.highlight || t.color,
+ showStroke: this.options.segmentShowStroke,
+ strokeWidth: this.options.segmentStrokeWidth,
+ strokeColor: this.options.segmentStrokeColor,
+ startAngle: 1.5 * Math.PI,
+ circumference: this.options.animateRotate ? 0 : this.calculateCircumference(t.value),
+ label: t.label
+ })),
+ e || (this.reflow(), this.update())
+ },
+ calculateCircumference: function (t) {
+ return 2 * Math.PI * (t / this.total)
+ },
+ calculateTotal: function (t) {
+ this.total = 0,
+ e.each(t, function (t) {
+ this.total += t.value
+ }, this)
+ },
+ update: function () {
+ this.calculateTotal(this.segments),
+ e.each(this.activeElements, function (t) {
+ t.restore(['fillColor'])
+ }),
+ e.each(this.segments, function (t) {
+ t.save()
+ }),
+ this.render()
+ },
+ removeData: function (t) {
+ var i = e.isNumber(t) ? t : this.segments.length - 1;
+ this.segments.splice(i, 1),
+ this.reflow(),
+ this.update()
+ },
+ reflow: function () {
+ e.extend(this.SegmentArc.prototype, {
+ x: this.chart.width / 2,
+ y: this.chart.height / 2
+ }),
+ this.outerRadius = (e.min([this.chart.width,
+ this.chart.height]) - this.options.segmentStrokeWidth / 2) / 2,
+ e.each(this.segments, function (t) {
+ t.update({
+ outerRadius: this.outerRadius,
+ innerRadius: this.outerRadius / 100 * this.options.percentageInnerCutout
+ })
+ }, this)
+ },
+ draw: function (t) {
+ var i = t ? t : 1;
+ this.clear(),
+ e.each(this.segments, function (t, e) {
+ t.transition({
+ circumference: this.calculateCircumference(t.value),
+ outerRadius: this.outerRadius,
+ innerRadius: this.outerRadius / 100 * this.options.percentageInnerCutout
+ }, i),
+ t.endAngle = t.startAngle + t.circumference,
+ t.draw(),
+ 0 === e && (t.startAngle = 1.5 * Math.PI),
+ e < this.segments.length - 1 && (this.segments[e + 1].startAngle = t.endAngle)
+ }, this)
+ }
+}),
+i.types.Doughnut.extend({
+ name: 'Pie',
+ defaults: e.merge(s, {
+ percentageInnerCutout: 0
+ })
+})
+}.call(this),
+function () {
+'use strict';
+var t = this,
+i = t.Chart,
+e = i.helpers,
+s = {
+ scaleShowGridLines: !0,
+ scaleGridLineColor: 'rgba(0,0,0,.05)',
+ scaleGridLineWidth: 1,
+ bezierCurve: !0,
+ bezierCurveTension: 0.4,
+ pointDot: !0,
+ pointDotRadius: 4,
+ pointDotStrokeWidth: 1,
+ pointHitDetectionRadius: 20,
+ datasetStroke: !0,
+ datasetStrokeWidth: 2,
+ datasetFill: !0,
+ legendTemplate: '<% for (var i=0; i- <%if(datasets[i].label){%><%=datasets[i].label%><%}%>
<%}%>
'
+};
+i.Type.extend({
+ name: 'Line',
+ defaults: s,
+ initialize: function (t) {
+ this.PointClass = i.Point.extend({
+ strokeWidth: this.options.pointDotStrokeWidth,
+ radius: this.options.pointDotRadius,
+ display: this.options.pointDot,
+ hitDetectionRadius: this.options.pointHitDetectionRadius,
+ ctx: this.chart.ctx,
+ inRange: function (t) {
+ return Math.pow(t - this.x, 2) < Math.pow(this.radius + this.hitDetectionRadius, 2)
+ }
+ }),
+ this.datasets = [
+ ],
+ this.options.showTooltips && e.bindEvents(this, this.options.tooltipEvents, function (t) {
+ var i = 'mouseout' !== t.type ? this.getPointsAtEvent(t) : [
+ ];
+ this.eachPoints(function (t) {
+ t.restore(['fillColor',
+ 'strokeColor'])
+ }),
+ e.each(i, function (t) {
+ t.fillColor = t.highlightFill,
+ t.strokeColor = t.highlightStroke
+ }),
+ this.showTooltip(i)
+ }),
+ e.each(t.datasets, function (i) {
+ var s = {
+ label: i.label || null,
+ fillColor: i.fillColor,
+ strokeColor: i.strokeColor,
+ pointColor: i.pointColor,
+ pointStrokeColor: i.pointStrokeColor,
+ points: [
+ ]
+ };
+ this.datasets.push(s),
+ e.each(i.data, function (e, n) {
+ s.points.push(new this.PointClass({
+ value: e,
+ label: t.labels[n],
+ datasetLabel: i.label,
+ strokeColor: i.pointStrokeColor,
+ fillColor: i.pointColor,
+ highlightFill: i.pointHighlightFill || i.pointColor,
+ highlightStroke: i.pointHighlightStroke || i.pointStrokeColor
+ }))
+ }, this),
+ this.buildScale(t.labels),
+ this.eachPoints(function (t, i) {
+ e.extend(t, {
+ x: this.scale.calculateX(i),
+ y: this.scale.endPoint
+ }),
+ t.save()
+ }, this)
+ }, this),
+ this.render()
+ },
+ update: function () {
+ this.scale.update(),
+ e.each(this.activeElements, function (t) {
+ t.restore(['fillColor',
+ 'strokeColor'])
+ }),
+ this.eachPoints(function (t) {
+ t.save()
+ }),
+ this.render()
+ },
+ eachPoints: function (t) {
+ e.each(this.datasets, function (i) {
+ e.each(i.points, t, this)
+ }, this)
+ },
+ getPointsAtEvent: function (t) {
+ var i = [
+ ],
+ s = e.getRelativePosition(t);
+ return e.each(this.datasets, function (t) {
+ e.each(t.points, function (t) {
+ t.inRange(s.x, s.y) && i.push(t)
+ })
+ }, this),
+ i
+ },
+ buildScale: function (t) {
+ var s = this,
+ n = function () {
+ var t = [
+ ];
+ return s.eachPoints(function (i) {
+ t.push(i.value)
+ }),
+ t
+ },
+ o = {
+ templateString: this.options.scaleLabel,
+ height: this.chart.height,
+ width: this.chart.width,
+ ctx: this.chart.ctx,
+ textColor: this.options.scaleFontColor,
+ fontSize: this.options.scaleFontSize,
+ fontStyle: this.options.scaleFontStyle,
+ fontFamily: this.options.scaleFontFamily,
+ valuesCount: t.length,
+ beginAtZero: this.options.scaleBeginAtZero,
+ integersOnly: this.options.scaleIntegersOnly,
+ calculateYRange: function (t) {
+ var i = e.calculateScaleRange(n(), t, this.fontSize, this.beginAtZero, this.integersOnly);
+ e.extend(this, i)
+ },
+ xLabels: t,
+ font: e.fontString(this.options.scaleFontSize, this.options.scaleFontStyle, this.options.scaleFontFamily),
+ lineWidth: this.options.scaleLineWidth,
+ lineColor: this.options.scaleLineColor,
+ gridLineWidth: this.options.scaleShowGridLines ? this.options.scaleGridLineWidth : 0,
+ gridLineColor: this.options.scaleShowGridLines ? this.options.scaleGridLineColor : 'rgba(0,0,0,0)',
+ padding: this.options.showScale ? 0 : this.options.pointDotRadius + this.options.pointDotStrokeWidth,
+ showLabels: this.options.scaleShowLabels,
+ display: this.options.showScale
+ };
+ this.options.scaleOverride && e.extend(o, {
+ calculateYRange: e.noop,
+ steps: this.options.scaleSteps,
+ stepValue: this.options.scaleStepWidth,
+ min: this.options.scaleStartValue,
+ max: this.options.scaleStartValue + this.options.scaleSteps * this.options.scaleStepWidth
+ }),
+ this.scale = new i.Scale(o)
+ },
+ addData: function (t, i) {
+ e.each(t, function (t, e) {
+ this.datasets[e].points.push(new this.PointClass({
+ value: t,
+ label: i,
+ x: this.scale.calculateX(this.scale.valuesCount + 1),
+ y: this.scale.endPoint,
+ strokeColor: this.datasets[e].pointStrokeColor,
+ fillColor: this.datasets[e].pointColor
+ }))
+ }, this),
+ this.scale.addXLabel(i),
+ this.update()
+ },
+ removeData: function () {
+ this.scale.removeXLabel(),
+ e.each(this.datasets, function (t) {
+ t.points.shift()
+ }, this),
+ this.update()
+ },
+ reflow: function () {
+ var t = e.extend({
+ height: this.chart.height,
+ width: this.chart.width
+ });
+ this.scale.update(t)
+ },
+ draw: function (t) {
+ var i = t || 1;
+ this.clear();
+ var s = this.chart.ctx,
+ n = function (t) {
+ return null !== t.value
+ },
+ o = function (t, i, s) {
+ return e.findNextWhere(i, n, s) || t
+ },
+ a = function (t, i, s) {
+ return e.findPreviousWhere(i, n, s) || t
+ };
+ this.scale.draw(i),
+ e.each(this.datasets, function (t) {
+ var h = e.where(t.points, n);
+ e.each(t.points, function (t, e) {
+ t.hasValue() && t.transition({
+ y: this.scale.calculateY(t.value),
+ x: this.scale.calculateX(e)
+ }, i)
+ }, this),
+ this.options.bezierCurve && e.each(h, function (t, i) {
+ var s = i > 0 && i < h.length - 1 ? this.options.bezierCurveTension : 0;
+ t.controlPoints = e.splineCurve(a(t, h, i), t, o(t, h, i), s),
+ t.controlPoints.outer.y > this.scale.endPoint ? t.controlPoints.outer.y = this.scale.endPoint : t.controlPoints.outer.y < this.scale.startPoint && (t.controlPoints.outer.y = this.scale.startPoint),
+ t.controlPoints.inner.y > this.scale.endPoint ? t.controlPoints.inner.y = this.scale.endPoint : t.controlPoints.inner.y < this.scale.startPoint && (t.controlPoints.inner.y = this.scale.startPoint)
+ }, this),
+ s.lineWidth = this.options.datasetStrokeWidth,
+ s.strokeStyle = t.strokeColor,
+ s.beginPath(),
+ e.each(h, function (t, i) {
+ if (0 === i) s.moveTo(t.x, t.y);
+ else if (this.options.bezierCurve) {
+ var e = a(t, h, i);
+ s.bezierCurveTo(e.controlPoints.outer.x, e.controlPoints.outer.y, t.controlPoints.inner.x, t.controlPoints.inner.y, t.x, t.y)
+ } else s.lineTo(t.x, t.y)
+ }, this),
+ s.stroke(),
+ this.options.datasetFill && h.length > 0 && (s.lineTo(h[h.length - 1].x, this.scale.endPoint), s.lineTo(h[0].x, this.scale.endPoint), s.fillStyle = t.fillColor, s.closePath(), s.fill()),
+ e.each(h, function (t) {
+ t.draw()
+ })
+ }, this)
+ }
+})
+}.call(this),
+function () {
+'use strict';
+var t = this,
+i = t.Chart,
+e = i.helpers,
+s = {
+ scaleShowLabelBackdrop: !0,
+ scaleBackdropColor: 'rgba(255,255,255,0.75)',
+ scaleBeginAtZero: !0,
+ scaleBackdropPaddingY: 2,
+ scaleBackdropPaddingX: 2,
+ scaleShowLine: !0,
+ segmentShowStroke: !0,
+ segmentStrokeColor: '#fff',
+ segmentStrokeWidth: 2,
+ animationSteps: 100,
+ animationEasing: 'easeOutBounce',
+ animateRotate: !0,
+ animateScale: !1,
+ legendTemplate: '<% for (var i=0; i- <%if(segments[i].label){%><%=segments[i].label%><%}%>
<%}%>
'
+};
+i.Type.extend({
+ name: 'PolarArea',
+ defaults: s,
+ initialize: function (t) {
+ this.segments = [
+ ],
+ this.SegmentArc = i.Arc.extend({
+ showStroke: this.options.segmentShowStroke,
+ strokeWidth: this.options.segmentStrokeWidth,
+ strokeColor: this.options.segmentStrokeColor,
+ ctx: this.chart.ctx,
+ innerRadius: 0,
+ x: this.chart.width / 2,
+ y: this.chart.height / 2
+ }),
+ this.scale = new i.RadialScale({
+ display: this.options.showScale,
+ fontStyle: this.options.scaleFontStyle,
+ fontSize: this.options.scaleFontSize,
+ fontFamily: this.options.scaleFontFamily,
+ fontColor: this.options.scaleFontColor,
+ showLabels: this.options.scaleShowLabels,
+ showLabelBackdrop: this.options.scaleShowLabelBackdrop,
+ backdropColor: this.options.scaleBackdropColor,
+ backdropPaddingY: this.options.scaleBackdropPaddingY,
+ backdropPaddingX: this.options.scaleBackdropPaddingX,
+ lineWidth: this.options.scaleShowLine ? this.options.scaleLineWidth : 0,
+ lineColor: this.options.scaleLineColor,
+ lineArc: !0,
+ width: this.chart.width,
+ height: this.chart.height,
+ xCenter: this.chart.width / 2,
+ yCenter: this.chart.height / 2,
+ ctx: this.chart.ctx,
+ templateString: this.options.scaleLabel,
+ valuesCount: t.length
+ }),
+ this.updateScaleRange(t),
+ this.scale.update(),
+ e.each(t, function (t, i) {
+ this.addData(t, i, !0)
+ }, this),
+ this.options.showTooltips && e.bindEvents(this, this.options.tooltipEvents, function (t) {
+ var i = 'mouseout' !== t.type ? this.getSegmentsAtEvent(t) : [
+ ];
+ e.each(this.segments, function (t) {
+ t.restore(['fillColor'])
+ }),
+ e.each(i, function (t) {
+ t.fillColor = t.highlightColor
+ }),
+ this.showTooltip(i)
+ }),
+ this.render()
+ },
+ getSegmentsAtEvent: function (t) {
+ var i = [
+ ],
+ s = e.getRelativePosition(t);
+ return e.each(this.segments, function (t) {
+ t.inRange(s.x, s.y) && i.push(t)
+ }, this),
+ i
+ },
+ addData: function (t, i, e) {
+ var s = i || this.segments.length;
+ this.segments.splice(s, 0, new this.SegmentArc({
+ fillColor: t.color,
+ highlightColor: t.highlight || t.color,
+ label: t.label,
+ value: t.value,
+ outerRadius: this.options.animateScale ? 0 : this.scale.calculateCenterOffset(t.value),
+ circumference: this.options.animateRotate ? 0 : this.scale.getCircumference(),
+ startAngle: 1.5 * Math.PI
+ })),
+ e || (this.reflow(), this.update())
+ },
+ removeData: function (t) {
+ var i = e.isNumber(t) ? t : this.segments.length - 1;
+ this.segments.splice(i, 1),
+ this.reflow(),
+ this.update()
+ },
+ calculateTotal: function (t) {
+ this.total = 0,
+ e.each(t, function (t) {
+ this.total += t.value
+ }, this),
+ this.scale.valuesCount = this.segments.length
+ },
+ updateScaleRange: function (t) {
+ var i = [
+ ];
+ e.each(t, function (t) {
+ i.push(t.value)
+ });
+ var s = this.options.scaleOverride ? {
+ steps: this.options.scaleSteps,
+ stepValue: this.options.scaleStepWidth,
+ min: this.options.scaleStartValue,
+ max: this.options.scaleStartValue + this.options.scaleSteps * this.options.scaleStepWidth
+ }
+ : e.calculateScaleRange(i, e.min([this.chart.width,
+ this.chart.height]) / 2, this.options.scaleFontSize, this.options.scaleBeginAtZero, this.options.scaleIntegersOnly);
+ e.extend(this.scale, s, {
+ size: e.min([this.chart.width,
+ this.chart.height]),
+ xCenter: this.chart.width / 2,
+ yCenter: this.chart.height / 2
+ })
+ },
+ update: function () {
+ this.calculateTotal(this.segments),
+ e.each(this.segments, function (t) {
+ t.save()
+ }),
+ this.render()
+ },
+ reflow: function () {
+ e.extend(this.SegmentArc.prototype, {
+ x: this.chart.width / 2,
+ y: this.chart.height / 2
+ }),
+ this.updateScaleRange(this.segments),
+ this.scale.update(),
+ e.extend(this.scale, {
+ xCenter: this.chart.width / 2,
+ yCenter: this.chart.height / 2
+ }),
+ e.each(this.segments, function (t) {
+ t.update({
+ outerRadius: this.scale.calculateCenterOffset(t.value)
+ })
+ }, this)
+ },
+ draw: function (t) {
+ var i = t || 1;
+ this.clear(),
+ e.each(this.segments, function (t, e) {
+ t.transition({
+ circumference: this.scale.getCircumference(),
+ outerRadius: this.scale.calculateCenterOffset(t.value)
+ }, i),
+ t.endAngle = t.startAngle + t.circumference,
+ 0 === e && (t.startAngle = 1.5 * Math.PI),
+ e < this.segments.length - 1 && (this.segments[e + 1].startAngle = t.endAngle),
+ t.draw()
+ }, this),
+ this.scale.draw()
+ }
+})
+}.call(this),
+function () {
+'use strict';
+var t = this,
+i = t.Chart,
+e = i.helpers;
+i.Type.extend({
+ name: 'Radar',
+ defaults: {
+ scaleShowLine: !0,
+ angleShowLineOut: !0,
+ scaleShowLabels: !1,
+ scaleBeginAtZero: !0,
+ angleLineColor: 'rgba(0,0,0,.1)',
+ angleLineWidth: 1,
+ pointLabelFontFamily: '\'Arial\'',
+ pointLabelFontStyle: 'normal',
+ pointLabelFontSize: 10,
+ pointLabelFontColor: '#666',
+ pointDot: !0,
+ pointDotRadius: 3,
+ pointDotStrokeWidth: 1,
+ pointHitDetectionRadius: 20,
+ datasetStroke: !0,
+ datasetStrokeWidth: 2,
+ datasetFill: !0,
+ legendTemplate: '<% for (var i=0; i- <%if(datasets[i].label){%><%=datasets[i].label%><%}%>
<%}%>
'
+ },
+ initialize: function (t) {
+ this.PointClass = i.Point.extend({
+ strokeWidth: this.options.pointDotStrokeWidth,
+ radius: this.options.pointDotRadius,
+ display: this.options.pointDot,
+ hitDetectionRadius: this.options.pointHitDetectionRadius,
+ ctx: this.chart.ctx
+ }),
+ this.datasets = [
+ ],
+ this.buildScale(t),
+ this.options.showTooltips && e.bindEvents(this, this.options.tooltipEvents, function (t) {
+ var i = 'mouseout' !== t.type ? this.getPointsAtEvent(t) : [
+ ];
+ this.eachPoints(function (t) {
+ t.restore(['fillColor',
+ 'strokeColor'])
+ }),
+ e.each(i, function (t) {
+ t.fillColor = t.highlightFill,
+ t.strokeColor = t.highlightStroke
+ }),
+ this.showTooltip(i)
+ }),
+ e.each(t.datasets, function (i) {
+ var s = {
+ label: i.label || null,
+ fillColor: i.fillColor,
+ strokeColor: i.strokeColor,
+ pointColor: i.pointColor,
+ pointStrokeColor: i.pointStrokeColor,
+ points: [
+ ]
+ };
+ this.datasets.push(s),
+ e.each(i.data, function (e, n) {
+ var o;
+ this.scale.animation || (o = this.scale.getPointPosition(n, this.scale.calculateCenterOffset(e))),
+ s.points.push(new this.PointClass({
+ value: e,
+ label: t.labels[n],
+ datasetLabel: i.label,
+ x: this.options.animation ? this.scale.xCenter : o.x,
+ y: this.options.animation ? this.scale.yCenter : o.y,
+ strokeColor: i.pointStrokeColor,
+ fillColor: i.pointColor,
+ highlightFill: i.pointHighlightFill || i.pointColor,
+ highlightStroke: i.pointHighlightStroke || i.pointStrokeColor
+ }))
+ }, this)
+ }, this),
+ this.render()
+ },
+ eachPoints: function (t) {
+ e.each(this.datasets, function (i) {
+ e.each(i.points, t, this)
+ }, this)
+ },
+ getPointsAtEvent: function (t) {
+ var i = e.getRelativePosition(t),
+ s = e.getAngleFromPoint({
+ x: this.scale.xCenter,
+ y: this.scale.yCenter
+ }, i),
+ n = 2 * Math.PI / this.scale.valuesCount,
+ o = Math.round((s.angle - 1.5 * Math.PI) / n),
+ a = [
+ ];
+ return (o >= this.scale.valuesCount || 0 > o) && (o = 0),
+ s.distance <= this.scale.drawingArea && e.each(this.datasets, function (t) {
+ a.push(t.points[o])
+ }),
+ a
+ },
+ buildScale: function (t) {
+ this.scale = new i.RadialScale({
+ display: this.options.showScale,
+ fontStyle: this.options.scaleFontStyle,
+ fontSize: this.options.scaleFontSize,
+ fontFamily: this.options.scaleFontFamily,
+ fontColor: this.options.scaleFontColor,
+ showLabels: this.options.scaleShowLabels,
+ showLabelBackdrop: this.options.scaleShowLabelBackdrop,
+ backdropColor: this.options.scaleBackdropColor,
+ backdropPaddingY: this.options.scaleBackdropPaddingY,
+ backdropPaddingX: this.options.scaleBackdropPaddingX,
+ lineWidth: this.options.scaleShowLine ? this.options.scaleLineWidth : 0,
+ lineColor: this.options.scaleLineColor,
+ angleLineColor: this.options.angleLineColor,
+ angleLineWidth: this.options.angleShowLineOut ? this.options.angleLineWidth : 0,
+ pointLabelFontColor: this.options.pointLabelFontColor,
+ pointLabelFontSize: this.options.pointLabelFontSize,
+ pointLabelFontFamily: this.options.pointLabelFontFamily,
+ pointLabelFontStyle: this.options.pointLabelFontStyle,
+ height: this.chart.height,
+ width: this.chart.width,
+ xCenter: this.chart.width / 2,
+ yCenter: this.chart.height / 2,
+ ctx: this.chart.ctx,
+ templateString: this.options.scaleLabel,
+ labels: t.labels,
+ valuesCount: t.datasets[0].data.length
+ }),
+ this.scale.setScaleSize(),
+ this.updateScaleRange(t.datasets),
+ this.scale.buildYLabels()
+ },
+ updateScaleRange: function (t) {
+ var i = function () {
+ var i = [
+ ];
+ return e.each(t, function (t) {
+ t.data ? i = i.concat(t.data) : e.each(t.points, function (t) {
+ i.push(t.value)
+ })
+ }),
+ i
+ }(),
+ s = this.options.scaleOverride ? {
+ steps: this.options.scaleSteps,
+ stepValue: this.options.scaleStepWidth,
+ min: this.options.scaleStartValue,
+ max: this.options.scaleStartValue + this.options.scaleSteps * this.options.scaleStepWidth
+ }
+ : e.calculateScaleRange(i, e.min([this.chart.width,
+ this.chart.height]) / 2, this.options.scaleFontSize, this.options.scaleBeginAtZero, this.options.scaleIntegersOnly);
+ e.extend(this.scale, s)
+ },
+ addData: function (t, i) {
+ this.scale.valuesCount++,
+ e.each(t, function (t, e) {
+ var s = this.scale.getPointPosition(this.scale.valuesCount, this.scale.calculateCenterOffset(t));
+ this.datasets[e].points.push(new this.PointClass({
+ value: t,
+ label: i,
+ x: s.x,
+ y: s.y,
+ strokeColor: this.datasets[e].pointStrokeColor,
+ fillColor: this.datasets[e].pointColor
+ }))
+ }, this),
+ this.scale.labels.push(i),
+ this.reflow(),
+ this.update()
+ },
+ removeData: function () {
+ this.scale.valuesCount--,
+ this.scale.labels.shift(),
+ e.each(this.datasets, function (t) {
+ t.points.shift()
+ }, this),
+ this.reflow(),
+ this.update()
+ },
+ update: function () {
+ this.eachPoints(function (t) {
+ t.save()
+ }),
+ this.reflow(),
+ this.render()
+ },
+ reflow: function () {
+ e.extend(this.scale, {
+ width: this.chart.width,
+ height: this.chart.height,
+ size: e.min([this.chart.width,
+ this.chart.height]),
+ xCenter: this.chart.width / 2,
+ yCenter: this.chart.height / 2
+ }),
+ this.updateScaleRange(this.datasets),
+ this.scale.setScaleSize(),
+ this.scale.buildYLabels()
+ },
+ draw: function (t) {
+ var i = t || 1,
+ s = this.chart.ctx;
+ this.clear(),
+ this.scale.draw(),
+ e.each(this.datasets, function (t) {
+ e.each(t.points, function (t, e) {
+ t.hasValue() && t.transition(this.scale.getPointPosition(e, this.scale.calculateCenterOffset(t.value)), i)
+ }, this),
+ s.lineWidth = this.options.datasetStrokeWidth,
+ s.strokeStyle = t.strokeColor,
+ s.beginPath(),
+ e.each(t.points, function (t, i) {
+ 0 === i ? s.moveTo(t.x, t.y) : s.lineTo(t.x, t.y)
+ }, this),
+ s.closePath(),
+ s.stroke(),
+ s.fillStyle = t.fillColor,
+ s.fill(),
+ e.each(t.points, function (t) {
+ t.hasValue() && t.draw()
+ })
+ }, this)
+ }
+})
+}.call(this);
diff --git a/cgiProject/js/jquery-3.1.1.min.js b/cgiProject/js/jquery-3.1.1.min.js
new file mode 100644
index 0000000..4c5be4c
--- /dev/null
+++ b/cgiProject/js/jquery-3.1.1.min.js
@@ -0,0 +1,4 @@
+/*! jQuery v3.1.1 | (c) jQuery Foundation | jquery.org/license */
+!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.1.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,C=/^.[^:#\[\.,]*$/;function D(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):C.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(D(this,a||[],!1))},not:function(a){return this.pushStack(D(this,a||[],!0))},is:function(a){return!!D(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var E,F=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,G=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||E,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:F.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),B.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};G.prototype=r.fn,E=r(d);var H=/^(?:parents|prev(?:Until|All))/,I={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function J(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return J(a,"nextSibling")},prev:function(a){return J(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return a.contentDocument||r.merge([],a.childNodes)}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(I[a]||r.uniqueSort(e),H.test(a)&&e.reverse()),this.pushStack(e)}});var K=/[^\x20\t\r\n\f]+/g;function L(a){var b={};return r.each(a.match(K)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?L(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function M(a){return a}function N(a){throw a}function O(a,b,c){var d;try{a&&r.isFunction(d=a.promise)?d.call(a).done(b).fail(c):a&&r.isFunction(d=a.then)?d.call(a,b,c):b.call(void 0,a)}catch(a){c.call(void 0,a)}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==N&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:M,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:M)),c[2][3].add(g(0,a,r.isFunction(d)?d:N))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(O(a,g.done(h(c)).resolve,g.reject),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)O(e[c],h(c),g.reject);return g.promise()}});var P=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&P.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var Q=r.Deferred();r.fn.ready=function(a){return Q.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,holdReady:function(a){a?r.readyWait++:r.ready(!0)},ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||Q.resolveWith(d,[r]))}}),r.ready.then=Q.then;function R(){d.removeEventListener("DOMContentLoaded",R),
+a.removeEventListener("load",R),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",R),a.addEventListener("load",R));var S=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)S(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){W.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=V.get(a,b),c&&(!d||r.isArray(c)?d=V.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return V.get(a,c)||V.access(a,c,{empty:r.Callbacks("once memory").add(function(){V.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,ka=/^$|\/(?:java|ecma)script/i,la={option:[1,""],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};la.optgroup=la.option,la.tbody=la.tfoot=la.colgroup=la.caption=la.thead,la.th=la.td;function ma(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&r.nodeName(a,b)?r.merge([a],c):c}function na(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=ma(l.appendChild(f),"script"),j&&na(g),c){k=0;while(f=g[k++])ka.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var qa=d.documentElement,ra=/^key/,sa=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ta=/^([^.]*)(?:\.(.+)|)/;function ua(){return!0}function va(){return!1}function wa(){try{return d.activeElement}catch(a){}}function xa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)xa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=va;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(qa,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(K)||[""],j=b.length;while(j--)h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.hasData(a)&&V.get(a);if(q&&(i=q.events)){b=(b||"").match(K)||[""],j=b.length;while(j--)if(h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&V.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(V.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,za=/