jquery.min.js 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427
  1. var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
  2. /*! jQuery v1.8.2 jquery.com | jquery.org/license */
  3. (function (a, b) {
  4. function G(a) {
  5. var b = F[a] = {};return p.each(a.split(s), function (a, c) {
  6. b[c] = !0;
  7. }), b;
  8. }function J(a, c, d) {
  9. if (d === b && a.nodeType === 1) {
  10. var e = "data-" + c.replace(I, "-$1").toLowerCase();d = a.getAttribute(e);if (typeof d == "string") {
  11. try {
  12. d = d === "true" ? !0 : d === "false" ? !1 : d === "null" ? null : +d + "" === d ? +d : H.test(d) ? p.parseJSON(d) : d;
  13. } catch (f) {}p.data(a, c, d);
  14. } else d = b;
  15. }return d;
  16. }function K(a) {
  17. var b;for (b in a) {
  18. if (b === "data" && p.isEmptyObject(a[b])) continue;if (b !== "toJSON") return !1;
  19. }return !0;
  20. }function ba() {
  21. return !1;
  22. }function bb() {
  23. return !0;
  24. }function bh(a) {
  25. return !a || !a.parentNode || a.parentNode.nodeType === 11;
  26. }function bi(a, b) {
  27. do {
  28. a = a[b];
  29. } while (a && a.nodeType !== 1);return a;
  30. }function bj(a, b, c) {
  31. b = b || 0;if (p.isFunction(b)) return p.grep(a, function (a, d) {
  32. var e = !!b.call(a, d, a);return e === c;
  33. });if (b.nodeType) return p.grep(a, function (a, d) {
  34. return a === b === c;
  35. });if (typeof b == "string") {
  36. var d = p.grep(a, function (a) {
  37. return a.nodeType === 1;
  38. });if (be.test(b)) return p.filter(b, d, !c);b = p.filter(b, d);
  39. }return p.grep(a, function (a, d) {
  40. return p.inArray(a, b) >= 0 === c;
  41. });
  42. }function bk(a) {
  43. var b = bl.split("|"),
  44. c = a.createDocumentFragment();if (c.createElement) while (b.length) {
  45. c.createElement(b.pop());
  46. }return c;
  47. }function bC(a, b) {
  48. return a.getElementsByTagName(b)[0] || a.appendChild(a.ownerDocument.createElement(b));
  49. }function bD(a, b) {
  50. if (b.nodeType !== 1 || !p.hasData(a)) return;var c,
  51. d,
  52. e,
  53. f = p._data(a),
  54. g = p._data(b, f),
  55. h = f.events;if (h) {
  56. delete g.handle, g.events = {};for (c in h) {
  57. for (d = 0, e = h[c].length; d < e; d++) {
  58. p.event.add(b, c, h[c][d]);
  59. }
  60. }
  61. }g.data && (g.data = p.extend({}, g.data));
  62. }function bE(a, b) {
  63. var c;if (b.nodeType !== 1) return;b.clearAttributes && b.clearAttributes(), b.mergeAttributes && b.mergeAttributes(a), c = b.nodeName.toLowerCase(), c === "object" ? (b.parentNode && (b.outerHTML = a.outerHTML), p.support.html5Clone && a.innerHTML && !p.trim(b.innerHTML) && (b.innerHTML = a.innerHTML)) : c === "input" && bv.test(a.type) ? (b.defaultChecked = b.checked = a.checked, b.value !== a.value && (b.value = a.value)) : c === "option" ? b.selected = a.defaultSelected : c === "input" || c === "textarea" ? b.defaultValue = a.defaultValue : c === "script" && b.text !== a.text && (b.text = a.text), b.removeAttribute(p.expando);
  64. }function bF(a) {
  65. return typeof a.getElementsByTagName != "undefined" ? a.getElementsByTagName("*") : typeof a.querySelectorAll != "undefined" ? a.querySelectorAll("*") : [];
  66. }function bG(a) {
  67. bv.test(a.type) && (a.defaultChecked = a.checked);
  68. }function bY(a, b) {
  69. if (b in a) return b;var c = b.charAt(0).toUpperCase() + b.slice(1),
  70. d = b,
  71. e = bW.length;while (e--) {
  72. b = bW[e] + c;if (b in a) return b;
  73. }return d;
  74. }function bZ(a, b) {
  75. return a = b || a, p.css(a, "display") === "none" || !p.contains(a.ownerDocument, a);
  76. }function b$(a, b) {
  77. var c,
  78. d,
  79. e = [],
  80. f = 0,
  81. g = a.length;for (; f < g; f++) {
  82. c = a[f];if (!c.style) continue;e[f] = p._data(c, "olddisplay"), b ? (!e[f] && c.style.display === "none" && (c.style.display = ""), c.style.display === "" && bZ(c) && (e[f] = p._data(c, "olddisplay", cc(c.nodeName)))) : (d = bH(c, "display"), !e[f] && d !== "none" && p._data(c, "olddisplay", d));
  83. }for (f = 0; f < g; f++) {
  84. c = a[f];if (!c.style) continue;if (!b || c.style.display === "none" || c.style.display === "") c.style.display = b ? e[f] || "" : "none";
  85. }return a;
  86. }function b_(a, b, c) {
  87. var d = bP.exec(b);return d ? Math.max(0, d[1] - (c || 0)) + (d[2] || "px") : b;
  88. }function ca(a, b, c, d) {
  89. var e = c === (d ? "border" : "content") ? 4 : b === "width" ? 1 : 0,
  90. f = 0;for (; e < 4; e += 2) {
  91. c === "margin" && (f += p.css(a, c + bV[e], !0)), d ? (c === "content" && (f -= parseFloat(bH(a, "padding" + bV[e])) || 0), c !== "margin" && (f -= parseFloat(bH(a, "border" + bV[e] + "Width")) || 0)) : (f += parseFloat(bH(a, "padding" + bV[e])) || 0, c !== "padding" && (f += parseFloat(bH(a, "border" + bV[e] + "Width")) || 0));
  92. }return f;
  93. }function cb(a, b, c) {
  94. var d = b === "width" ? a.offsetWidth : a.offsetHeight,
  95. e = !0,
  96. f = p.support.boxSizing && p.css(a, "boxSizing") === "border-box";if (d <= 0 || d == null) {
  97. d = bH(a, b);if (d < 0 || d == null) d = a.style[b];if (bQ.test(d)) return d;e = f && (p.support.boxSizingReliable || d === a.style[b]), d = parseFloat(d) || 0;
  98. }return d + ca(a, b, c || (f ? "border" : "content"), e) + "px";
  99. }function cc(a) {
  100. if (bS[a]) return bS[a];var b = p("<" + a + ">").appendTo(e.body),
  101. c = b.css("display");b.remove();if (c === "none" || c === "") {
  102. bI = e.body.appendChild(bI || p.extend(e.createElement("iframe"), { frameBorder: 0, width: 0, height: 0 }));if (!bJ || !bI.createElement) bJ = (bI.contentWindow || bI.contentDocument).document, bJ.write("<!doctype html><html><body>"), bJ.close();b = bJ.body.appendChild(bJ.createElement(a)), c = bH(b, "display"), e.body.removeChild(bI);
  103. }return bS[a] = c, c;
  104. }function ci(a, b, c, d) {
  105. var e;if (p.isArray(b)) p.each(b, function (b, e) {
  106. c || ce.test(a) ? d(a, e) : ci(a + "[" + ((typeof e === "undefined" ? "undefined" : _typeof(e)) == "object" ? b : "") + "]", e, c, d);
  107. });else if (!c && p.type(b) === "object") for (e in b) {
  108. ci(a + "[" + e + "]", b[e], c, d);
  109. } else d(a, b);
  110. }function cz(a) {
  111. return function (b, c) {
  112. typeof b != "string" && (c = b, b = "*");var d,
  113. e,
  114. f,
  115. g = b.toLowerCase().split(s),
  116. h = 0,
  117. i = g.length;if (p.isFunction(c)) for (; h < i; h++) {
  118. d = g[h], f = /^\+/.test(d), f && (d = d.substr(1) || "*"), e = a[d] = a[d] || [], e[f ? "unshift" : "push"](c);
  119. }
  120. };
  121. }function cA(a, c, d, e, f, g) {
  122. f = f || c.dataTypes[0], g = g || {}, g[f] = !0;var h,
  123. i = a[f],
  124. j = 0,
  125. k = i ? i.length : 0,
  126. l = a === cv;for (; j < k && (l || !h); j++) {
  127. h = i[j](c, d, e), typeof h == "string" && (!l || g[h] ? h = b : (c.dataTypes.unshift(h), h = cA(a, c, d, e, h, g)));
  128. }return (l || !h) && !g["*"] && (h = cA(a, c, d, e, "*", g)), h;
  129. }function cB(a, c) {
  130. var d,
  131. e,
  132. f = p.ajaxSettings.flatOptions || {};for (d in c) {
  133. c[d] !== b && ((f[d] ? a : e || (e = {}))[d] = c[d]);
  134. }e && p.extend(!0, a, e);
  135. }function cC(a, c, d) {
  136. var e,
  137. f,
  138. g,
  139. h,
  140. i = a.contents,
  141. j = a.dataTypes,
  142. k = a.responseFields;for (f in k) {
  143. f in d && (c[k[f]] = d[f]);
  144. }while (j[0] === "*") {
  145. j.shift(), e === b && (e = a.mimeType || c.getResponseHeader("content-type"));
  146. }if (e) for (f in i) {
  147. if (i[f] && i[f].test(e)) {
  148. j.unshift(f);break;
  149. }
  150. }if (j[0] in d) g = j[0];else {
  151. for (f in d) {
  152. if (!j[0] || a.converters[f + " " + j[0]]) {
  153. g = f;break;
  154. }h || (h = f);
  155. }g = g || h;
  156. }if (g) return g !== j[0] && j.unshift(g), d[g];
  157. }function cD(a, b) {
  158. var c,
  159. d,
  160. e,
  161. f,
  162. g = a.dataTypes.slice(),
  163. h = g[0],
  164. i = {},
  165. j = 0;a.dataFilter && (b = a.dataFilter(b, a.dataType));if (g[1]) for (c in a.converters) {
  166. i[c.toLowerCase()] = a.converters[c];
  167. }for (; e = g[++j];) {
  168. if (e !== "*") {
  169. if (h !== "*" && h !== e) {
  170. c = i[h + " " + e] || i["* " + e];if (!c) for (d in i) {
  171. f = d.split(" ");if (f[1] === e) {
  172. c = i[h + " " + f[0]] || i["* " + f[0]];if (c) {
  173. c === !0 ? c = i[d] : i[d] !== !0 && (e = f[0], g.splice(j--, 0, e));break;
  174. }
  175. }
  176. }if (c !== !0) if (c && a["throws"]) b = c(b);else try {
  177. b = c(b);
  178. } catch (k) {
  179. return { state: "parsererror", error: c ? k : "No conversion from " + h + " to " + e };
  180. }
  181. }h = e;
  182. }
  183. }return { state: "success", data: b };
  184. }function cL() {
  185. try {
  186. return new a.XMLHttpRequest();
  187. } catch (b) {}
  188. }function cM() {
  189. try {
  190. return new a.ActiveXObject("Microsoft.XMLHTTP");
  191. } catch (b) {}
  192. }function cU() {
  193. return setTimeout(function () {
  194. cN = b;
  195. }, 0), cN = p.now();
  196. }function cV(a, b) {
  197. p.each(b, function (b, c) {
  198. var d = (cT[b] || []).concat(cT["*"]),
  199. e = 0,
  200. f = d.length;for (; e < f; e++) {
  201. if (d[e].call(a, b, c)) return;
  202. }
  203. });
  204. }function cW(a, b, c) {
  205. var d,
  206. e = 0,
  207. f = 0,
  208. g = cS.length,
  209. h = p.Deferred().always(function () {
  210. delete i.elem;
  211. }),
  212. i = function i() {
  213. var b = cN || cU(),
  214. c = Math.max(0, j.startTime + j.duration - b),
  215. d = 1 - (c / j.duration || 0),
  216. e = 0,
  217. f = j.tweens.length;for (; e < f; e++) {
  218. j.tweens[e].run(d);
  219. }return h.notifyWith(a, [j, d, c]), d < 1 && f ? c : (h.resolveWith(a, [j]), !1);
  220. },
  221. j = h.promise({ elem: a, props: p.extend({}, b), opts: p.extend(!0, { specialEasing: {} }, c), originalProperties: b, originalOptions: c, startTime: cN || cU(), duration: c.duration, tweens: [], createTween: function createTween(b, c, d) {
  222. var e = p.Tween(a, j.opts, b, c, j.opts.specialEasing[b] || j.opts.easing);return j.tweens.push(e), e;
  223. }, stop: function stop(b) {
  224. var c = 0,
  225. d = b ? j.tweens.length : 0;for (; c < d; c++) {
  226. j.tweens[c].run(1);
  227. }return b ? h.resolveWith(a, [j, b]) : h.rejectWith(a, [j, b]), this;
  228. } }),
  229. k = j.props;cX(k, j.opts.specialEasing);for (; e < g; e++) {
  230. d = cS[e].call(j, a, k, j.opts);if (d) return d;
  231. }return cV(j, k), p.isFunction(j.opts.start) && j.opts.start.call(a, j), p.fx.timer(p.extend(i, { anim: j, queue: j.opts.queue, elem: a })), j.progress(j.opts.progress).done(j.opts.done, j.opts.complete).fail(j.opts.fail).always(j.opts.always);
  232. }function cX(a, b) {
  233. var c, d, e, f, g;for (c in a) {
  234. d = p.camelCase(c), e = b[d], f = a[c], p.isArray(f) && (e = f[1], f = a[c] = f[0]), c !== d && (a[d] = f, delete a[c]), g = p.cssHooks[d];if (g && "expand" in g) {
  235. f = g.expand(f), delete a[d];for (c in f) {
  236. c in a || (a[c] = f[c], b[c] = e);
  237. }
  238. } else b[d] = e;
  239. }
  240. }function cY(a, b, c) {
  241. var d,
  242. e,
  243. f,
  244. g,
  245. h,
  246. i,
  247. j,
  248. k,
  249. l = this,
  250. m = a.style,
  251. n = {},
  252. o = [],
  253. q = a.nodeType && bZ(a);c.queue || (j = p._queueHooks(a, "fx"), j.unqueued == null && (j.unqueued = 0, k = j.empty.fire, j.empty.fire = function () {
  254. j.unqueued || k();
  255. }), j.unqueued++, l.always(function () {
  256. l.always(function () {
  257. j.unqueued--, p.queue(a, "fx").length || j.empty.fire();
  258. });
  259. })), a.nodeType === 1 && ("height" in b || "width" in b) && (c.overflow = [m.overflow, m.overflowX, m.overflowY], p.css(a, "display") === "inline" && p.css(a, "float") === "none" && (!p.support.inlineBlockNeedsLayout || cc(a.nodeName) === "inline" ? m.display = "inline-block" : m.zoom = 1)), c.overflow && (m.overflow = "hidden", p.support.shrinkWrapBlocks || l.done(function () {
  260. m.overflow = c.overflow[0], m.overflowX = c.overflow[1], m.overflowY = c.overflow[2];
  261. }));for (d in b) {
  262. f = b[d];if (cP.exec(f)) {
  263. delete b[d];if (f === (q ? "hide" : "show")) continue;o.push(d);
  264. }
  265. }g = o.length;if (g) {
  266. h = p._data(a, "fxshow") || p._data(a, "fxshow", {}), q ? p(a).show() : l.done(function () {
  267. p(a).hide();
  268. }), l.done(function () {
  269. var b;p.removeData(a, "fxshow", !0);for (b in n) {
  270. p.style(a, b, n[b]);
  271. }
  272. });for (d = 0; d < g; d++) {
  273. e = o[d], i = l.createTween(e, q ? h[e] : 0), n[e] = h[e] || p.style(a, e), e in h || (h[e] = i.start, q && (i.end = i.start, i.start = e === "width" || e === "height" ? 1 : 0));
  274. }
  275. }
  276. }function cZ(a, b, c, d, e) {
  277. return new cZ.prototype.init(a, b, c, d, e);
  278. }function c$(a, b) {
  279. var c,
  280. d = { height: a },
  281. e = 0;b = b ? 1 : 0;for (; e < 4; e += 2 - b) {
  282. c = bV[e], d["margin" + c] = d["padding" + c] = a;
  283. }return b && (d.opacity = d.width = a), d;
  284. }function da(a) {
  285. return p.isWindow(a) ? a : a.nodeType === 9 ? a.defaultView || a.parentWindow : !1;
  286. }var c,
  287. d,
  288. e = a.document,
  289. f = a.location,
  290. g = a.navigator,
  291. h = a.jQuery,
  292. i = a.$,
  293. j = Array.prototype.push,
  294. k = Array.prototype.slice,
  295. l = Array.prototype.indexOf,
  296. m = Object.prototype.toString,
  297. n = Object.prototype.hasOwnProperty,
  298. o = String.prototype.trim,
  299. p = function p(a, b) {
  300. return new p.fn.init(a, b, c);
  301. },
  302. q = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,
  303. r = /\S/,
  304. s = /\s+/,
  305. t = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
  306. u = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,
  307. v = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
  308. w = /^[\],:{}\s]*$/,
  309. x = /(?:^|:|,)(?:\s*\[)+/g,
  310. y = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,
  311. z = /"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,
  312. A = /^-ms-/,
  313. B = /-([\da-z])/gi,
  314. C = function C(a, b) {
  315. return (b + "").toUpperCase();
  316. },
  317. D = function D() {
  318. e.addEventListener ? (e.removeEventListener("DOMContentLoaded", D, !1), p.ready()) : e.readyState === "complete" && (e.detachEvent("onreadystatechange", D), p.ready());
  319. },
  320. E = {};p.fn = p.prototype = { constructor: p, init: function init(a, c, d) {
  321. var f, g, h, i;if (!a) return this;if (a.nodeType) return this.context = this[0] = a, this.length = 1, this;if (typeof a == "string") {
  322. a.charAt(0) === "<" && a.charAt(a.length - 1) === ">" && a.length >= 3 ? f = [null, a, null] : f = u.exec(a);if (f && (f[1] || !c)) {
  323. if (f[1]) return c = c instanceof p ? c[0] : c, i = c && c.nodeType ? c.ownerDocument || c : e, a = p.parseHTML(f[1], i, !0), v.test(f[1]) && p.isPlainObject(c) && this.attr.call(a, c, !0), p.merge(this, a);g = e.getElementById(f[2]);if (g && g.parentNode) {
  324. if (g.id !== f[2]) return d.find(a);this.length = 1, this[0] = g;
  325. }return this.context = e, this.selector = a, this;
  326. }return !c || c.jquery ? (c || d).find(a) : this.constructor(c).find(a);
  327. }return p.isFunction(a) ? d.ready(a) : (a.selector !== b && (this.selector = a.selector, this.context = a.context), p.makeArray(a, this));
  328. }, selector: "", jquery: "1.8.2", length: 0, size: function size() {
  329. return this.length;
  330. }, toArray: function toArray() {
  331. return k.call(this);
  332. }, get: function get(a) {
  333. return a == null ? this.toArray() : a < 0 ? this[this.length + a] : this[a];
  334. }, pushStack: function pushStack(a, b, c) {
  335. var d = p.merge(this.constructor(), a);return d.prevObject = this, d.context = this.context, b === "find" ? d.selector = this.selector + (this.selector ? " " : "") + c : b && (d.selector = this.selector + "." + b + "(" + c + ")"), d;
  336. }, each: function each(a, b) {
  337. return p.each(this, a, b);
  338. }, ready: function ready(a) {
  339. return p.ready.promise().done(a), this;
  340. }, eq: function eq(a) {
  341. return a = +a, a === -1 ? this.slice(a) : this.slice(a, a + 1);
  342. }, first: function first() {
  343. return this.eq(0);
  344. }, last: function last() {
  345. return this.eq(-1);
  346. }, slice: function slice() {
  347. return this.pushStack(k.apply(this, arguments), "slice", k.call(arguments).join(","));
  348. }, map: function map(a) {
  349. return this.pushStack(p.map(this, function (b, c) {
  350. return a.call(b, c, b);
  351. }));
  352. }, end: function end() {
  353. return this.prevObject || this.constructor(null);
  354. }, push: j, sort: [].sort, splice: [].splice }, p.fn.init.prototype = p.fn, p.extend = p.fn.extend = function () {
  355. var a,
  356. c,
  357. d,
  358. e,
  359. f,
  360. g,
  361. h = arguments[0] || {},
  362. i = 1,
  363. j = arguments.length,
  364. k = !1;typeof h == "boolean" && (k = h, h = arguments[1] || {}, i = 2), (typeof h === "undefined" ? "undefined" : _typeof(h)) != "object" && !p.isFunction(h) && (h = {}), j === i && (h = this, --i);for (; i < j; i++) {
  365. if ((a = arguments[i]) != null) for (c in a) {
  366. d = h[c], e = a[c];if (h === e) continue;k && e && (p.isPlainObject(e) || (f = p.isArray(e))) ? (f ? (f = !1, g = d && p.isArray(d) ? d : []) : g = d && p.isPlainObject(d) ? d : {}, h[c] = p.extend(k, g, e)) : e !== b && (h[c] = e);
  367. }
  368. }return h;
  369. }, p.extend({ noConflict: function noConflict(b) {
  370. return a.$ === p && (a.$ = i), b && a.jQuery === p && (a.jQuery = h), p;
  371. }, isReady: !1, readyWait: 1, holdReady: function holdReady(a) {
  372. a ? p.readyWait++ : p.ready(!0);
  373. }, ready: function ready(a) {
  374. if (a === !0 ? --p.readyWait : p.isReady) return;if (!e.body) return setTimeout(p.ready, 1);p.isReady = !0;if (a !== !0 && --p.readyWait > 0) return;d.resolveWith(e, [p]), p.fn.trigger && p(e).trigger("ready").off("ready");
  375. }, isFunction: function isFunction(a) {
  376. return p.type(a) === "function";
  377. }, isArray: Array.isArray || function (a) {
  378. return p.type(a) === "array";
  379. }, isWindow: function isWindow(a) {
  380. return a != null && a == a.window;
  381. }, isNumeric: function isNumeric(a) {
  382. return !isNaN(parseFloat(a)) && isFinite(a);
  383. }, type: function type(a) {
  384. return a == null ? String(a) : E[m.call(a)] || "object";
  385. }, isPlainObject: function isPlainObject(a) {
  386. if (!a || p.type(a) !== "object" || a.nodeType || p.isWindow(a)) return !1;try {
  387. if (a.constructor && !n.call(a, "constructor") && !n.call(a.constructor.prototype, "isPrototypeOf")) return !1;
  388. } catch (c) {
  389. return !1;
  390. }var d;for (d in a) {}return d === b || n.call(a, d);
  391. }, isEmptyObject: function isEmptyObject(a) {
  392. var b;for (b in a) {
  393. return !1;
  394. }return !0;
  395. }, error: function error(a) {
  396. throw new Error(a);
  397. }, parseHTML: function parseHTML(a, b, c) {
  398. var d;return !a || typeof a != "string" ? null : (typeof b == "boolean" && (c = b, b = 0), b = b || e, (d = v.exec(a)) ? [b.createElement(d[1])] : (d = p.buildFragment([a], b, c ? null : []), p.merge([], (d.cacheable ? p.clone(d.fragment) : d.fragment).childNodes)));
  399. }, parseJSON: function parseJSON(b) {
  400. if (!b || typeof b != "string") return null;b = p.trim(b);if (a.JSON && a.JSON.parse) return a.JSON.parse(b);if (w.test(b.replace(y, "@").replace(z, "]").replace(x, ""))) return new Function("return " + b)();p.error("Invalid JSON: " + b);
  401. }, parseXML: function parseXML(c) {
  402. var d, e;if (!c || typeof c != "string") return null;try {
  403. a.DOMParser ? (e = new DOMParser(), d = e.parseFromString(c, "text/xml")) : (d = new ActiveXObject("Microsoft.XMLDOM"), d.async = "false", d.loadXML(c));
  404. } catch (f) {
  405. d = b;
  406. }return (!d || !d.documentElement || d.getElementsByTagName("parsererror").length) && p.error("Invalid XML: " + c), d;
  407. }, noop: function noop() {}, globalEval: function globalEval(b) {
  408. b && r.test(b) && (a.execScript || function (b) {
  409. a.eval.call(a, b);
  410. })(b);
  411. }, camelCase: function camelCase(a) {
  412. return a.replace(A, "ms-").replace(B, C);
  413. }, nodeName: function nodeName(a, b) {
  414. return a.nodeName && a.nodeName.toLowerCase() === b.toLowerCase();
  415. }, each: function each(a, c, d) {
  416. var e,
  417. f = 0,
  418. g = a.length,
  419. h = g === b || p.isFunction(a);if (d) {
  420. if (h) {
  421. for (e in a) {
  422. if (c.apply(a[e], d) === !1) break;
  423. }
  424. } else for (; f < g;) {
  425. if (c.apply(a[f++], d) === !1) break;
  426. }
  427. } else if (h) {
  428. for (e in a) {
  429. if (c.call(a[e], e, a[e]) === !1) break;
  430. }
  431. } else for (; f < g;) {
  432. if (c.call(a[f], f, a[f++]) === !1) break;
  433. }return a;
  434. }, trim: o && !o.call(" ") ? function (a) {
  435. return a == null ? "" : o.call(a);
  436. } : function (a) {
  437. return a == null ? "" : (a + "").replace(t, "");
  438. }, makeArray: function makeArray(a, b) {
  439. var c,
  440. d = b || [];return a != null && (c = p.type(a), a.length == null || c === "string" || c === "function" || c === "regexp" || p.isWindow(a) ? j.call(d, a) : p.merge(d, a)), d;
  441. }, inArray: function inArray(a, b, c) {
  442. var d;if (b) {
  443. if (l) return l.call(b, a, c);d = b.length, c = c ? c < 0 ? Math.max(0, d + c) : c : 0;for (; c < d; c++) {
  444. if (c in b && b[c] === a) return c;
  445. }
  446. }return -1;
  447. }, merge: function merge(a, c) {
  448. var d = c.length,
  449. e = a.length,
  450. f = 0;if (typeof d == "number") for (; f < d; f++) {
  451. a[e++] = c[f];
  452. } else while (c[f] !== b) {
  453. a[e++] = c[f++];
  454. }return a.length = e, a;
  455. }, grep: function grep(a, b, c) {
  456. var d,
  457. e = [],
  458. f = 0,
  459. g = a.length;c = !!c;for (; f < g; f++) {
  460. d = !!b(a[f], f), c !== d && e.push(a[f]);
  461. }return e;
  462. }, map: function map(a, c, d) {
  463. var e,
  464. f,
  465. g = [],
  466. h = 0,
  467. i = a.length,
  468. j = a instanceof p || i !== b && typeof i == "number" && (i > 0 && a[0] && a[i - 1] || i === 0 || p.isArray(a));if (j) for (; h < i; h++) {
  469. e = c(a[h], h, d), e != null && (g[g.length] = e);
  470. } else for (f in a) {
  471. e = c(a[f], f, d), e != null && (g[g.length] = e);
  472. }return g.concat.apply([], g);
  473. }, guid: 1, proxy: function proxy(a, c) {
  474. var d, e, f;return typeof c == "string" && (d = a[c], c = a, a = d), p.isFunction(a) ? (e = k.call(arguments, 2), f = function f() {
  475. return a.apply(c, e.concat(k.call(arguments)));
  476. }, f.guid = a.guid = a.guid || p.guid++, f) : b;
  477. }, access: function access(a, c, d, e, f, g, h) {
  478. var i,
  479. j = d == null,
  480. k = 0,
  481. l = a.length;if (d && (typeof d === "undefined" ? "undefined" : _typeof(d)) == "object") {
  482. for (k in d) {
  483. p.access(a, c, k, d[k], 1, g, e);
  484. }f = 1;
  485. } else if (e !== b) {
  486. i = h === b && p.isFunction(e), j && (i ? (i = c, c = function c(a, b, _c) {
  487. return i.call(p(a), _c);
  488. }) : (c.call(a, e), c = null));if (c) for (; k < l; k++) {
  489. c(a[k], d, i ? e.call(a[k], k, c(a[k], d)) : e, h);
  490. }f = 1;
  491. }return f ? a : j ? c.call(a) : l ? c(a[0], d) : g;
  492. }, now: function now() {
  493. return new Date().getTime();
  494. } }), p.ready.promise = function (b) {
  495. if (!d) {
  496. d = p.Deferred();if (e.readyState === "complete") setTimeout(p.ready, 1);else if (e.addEventListener) e.addEventListener("DOMContentLoaded", D, !1), a.addEventListener("load", p.ready, !1);else {
  497. e.attachEvent("onreadystatechange", D), a.attachEvent("onload", p.ready);var c = !1;try {
  498. c = a.frameElement == null && e.documentElement;
  499. } catch (f) {}c && c.doScroll && function g() {
  500. if (!p.isReady) {
  501. try {
  502. c.doScroll("left");
  503. } catch (a) {
  504. return setTimeout(g, 50);
  505. }p.ready();
  506. }
  507. }();
  508. }
  509. }return d.promise(b);
  510. }, p.each("Boolean Number String Function Array Date RegExp Object".split(" "), function (a, b) {
  511. E["[object " + b + "]"] = b.toLowerCase();
  512. }), c = p(e);var F = {};p.Callbacks = function (a) {
  513. a = typeof a == "string" ? F[a] || G(a) : p.extend({}, a);var c,
  514. d,
  515. e,
  516. f,
  517. g,
  518. h,
  519. i = [],
  520. j = !a.once && [],
  521. k = function k(b) {
  522. c = a.memory && b, d = !0, h = f || 0, f = 0, g = i.length, e = !0;for (; i && h < g; h++) {
  523. if (i[h].apply(b[0], b[1]) === !1 && a.stopOnFalse) {
  524. c = !1;break;
  525. }
  526. }e = !1, i && (j ? j.length && k(j.shift()) : c ? i = [] : l.disable());
  527. },
  528. l = { add: function add() {
  529. if (i) {
  530. var b = i.length;(function d(b) {
  531. p.each(b, function (b, c) {
  532. var e = p.type(c);e === "function" && (!a.unique || !l.has(c)) ? i.push(c) : c && c.length && e !== "string" && d(c);
  533. });
  534. })(arguments), e ? g = i.length : c && (f = b, k(c));
  535. }return this;
  536. }, remove: function remove() {
  537. return i && p.each(arguments, function (a, b) {
  538. var c;while ((c = p.inArray(b, i, c)) > -1) {
  539. i.splice(c, 1), e && (c <= g && g--, c <= h && h--);
  540. }
  541. }), this;
  542. }, has: function has(a) {
  543. return p.inArray(a, i) > -1;
  544. }, empty: function empty() {
  545. return i = [], this;
  546. }, disable: function disable() {
  547. return i = j = c = b, this;
  548. }, disabled: function disabled() {
  549. return !i;
  550. }, lock: function lock() {
  551. return j = b, c || l.disable(), this;
  552. }, locked: function locked() {
  553. return !j;
  554. }, fireWith: function fireWith(a, b) {
  555. return b = b || [], b = [a, b.slice ? b.slice() : b], i && (!d || j) && (e ? j.push(b) : k(b)), this;
  556. }, fire: function fire() {
  557. return l.fireWith(this, arguments), this;
  558. }, fired: function fired() {
  559. return !!d;
  560. } };return l;
  561. }, p.extend({ Deferred: function Deferred(a) {
  562. var b = [["resolve", "done", p.Callbacks("once memory"), "resolved"], ["reject", "fail", p.Callbacks("once memory"), "rejected"], ["notify", "progress", p.Callbacks("memory")]],
  563. c = "pending",
  564. d = { state: function state() {
  565. return c;
  566. }, always: function always() {
  567. return e.done(arguments).fail(arguments), this;
  568. }, then: function then() {
  569. var a = arguments;return p.Deferred(function (c) {
  570. p.each(b, function (b, d) {
  571. var f = d[0],
  572. g = a[b];e[d[1]](p.isFunction(g) ? function () {
  573. var a = g.apply(this, arguments);a && p.isFunction(a.promise) ? a.promise().done(c.resolve).fail(c.reject).progress(c.notify) : c[f + "With"](this === e ? c : this, [a]);
  574. } : c[f]);
  575. }), a = null;
  576. }).promise();
  577. }, promise: function promise(a) {
  578. return a != null ? p.extend(a, d) : d;
  579. } },
  580. e = {};return d.pipe = d.then, p.each(b, function (a, f) {
  581. var g = f[2],
  582. h = f[3];d[f[1]] = g.add, h && g.add(function () {
  583. c = h;
  584. }, b[a ^ 1][2].disable, b[2][2].lock), e[f[0]] = g.fire, e[f[0] + "With"] = g.fireWith;
  585. }), d.promise(e), a && a.call(e, e), e;
  586. }, when: function when(a) {
  587. var b = 0,
  588. c = k.call(arguments),
  589. d = c.length,
  590. e = d !== 1 || a && p.isFunction(a.promise) ? d : 0,
  591. f = e === 1 ? a : p.Deferred(),
  592. g = function g(a, b, c) {
  593. return function (d) {
  594. b[a] = this, c[a] = arguments.length > 1 ? k.call(arguments) : d, c === h ? f.notifyWith(b, c) : --e || f.resolveWith(b, c);
  595. };
  596. },
  597. h,
  598. i,
  599. j;if (d > 1) {
  600. h = new Array(d), i = new Array(d), j = new Array(d);for (; b < d; b++) {
  601. c[b] && p.isFunction(c[b].promise) ? c[b].promise().done(g(b, j, c)).fail(f.reject).progress(g(b, i, h)) : --e;
  602. }
  603. }return e || f.resolveWith(j, c), f.promise();
  604. } }), p.support = function () {
  605. var b,
  606. c,
  607. d,
  608. f,
  609. g,
  610. h,
  611. i,
  612. j,
  613. k,
  614. l,
  615. m,
  616. n = e.createElement("div");n.setAttribute("className", "t"), n.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", c = n.getElementsByTagName("*"), d = n.getElementsByTagName("a")[0], d.style.cssText = "top:1px;float:left;opacity:.5";if (!c || !c.length) return {};f = e.createElement("select"), g = f.appendChild(e.createElement("option")), h = n.getElementsByTagName("input")[0], b = { leadingWhitespace: n.firstChild.nodeType === 3, tbody: !n.getElementsByTagName("tbody").length, htmlSerialize: !!n.getElementsByTagName("link").length, style: /top/.test(d.getAttribute("style")), hrefNormalized: d.getAttribute("href") === "/a", opacity: /^0.5/.test(d.style.opacity), cssFloat: !!d.style.cssFloat, checkOn: h.value === "on", optSelected: g.selected, getSetAttribute: n.className !== "t", enctype: !!e.createElement("form").enctype, html5Clone: e.createElement("nav").cloneNode(!0).outerHTML !== "<:nav></:nav>", boxModel: e.compatMode === "CSS1Compat", submitBubbles: !0, changeBubbles: !0, focusinBubbles: !1, deleteExpando: !0, noCloneEvent: !0, inlineBlockNeedsLayout: !1, shrinkWrapBlocks: !1, reliableMarginRight: !0, boxSizingReliable: !0, pixelPosition: !1 }, h.checked = !0, b.noCloneChecked = h.cloneNode(!0).checked, f.disabled = !0, b.optDisabled = !g.disabled;try {
  617. delete n.test;
  618. } catch (o) {
  619. b.deleteExpando = !1;
  620. }!n.addEventListener && n.attachEvent && n.fireEvent && (n.attachEvent("onclick", m = function m() {
  621. b.noCloneEvent = !1;
  622. }), n.cloneNode(!0).fireEvent("onclick"), n.detachEvent("onclick", m)), h = e.createElement("input"), h.value = "t", h.setAttribute("type", "radio"), b.radioValue = h.value === "t", h.setAttribute("checked", "checked"), h.setAttribute("name", "t"), n.appendChild(h), i = e.createDocumentFragment(), i.appendChild(n.lastChild), b.checkClone = i.cloneNode(!0).cloneNode(!0).lastChild.checked, b.appendChecked = h.checked, i.removeChild(h), i.appendChild(n);if (n.attachEvent) for (k in { submit: !0, change: !0, focusin: !0 }) {
  623. j = "on" + k, l = j in n, l || (n.setAttribute(j, "return;"), l = typeof n[j] == "function"), b[k + "Bubbles"] = l;
  624. }return p(function () {
  625. var c,
  626. d,
  627. f,
  628. g,
  629. h = "padding:0;margin:0;border:0;display:block;overflow:hidden;",
  630. i = e.getElementsByTagName("body")[0];if (!i) return;c = e.createElement("div"), c.style.cssText = "visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px", i.insertBefore(c, i.firstChild), d = e.createElement("div"), c.appendChild(d), d.innerHTML = "<table><tr><td></td><td>t</td></tr></table>", f = d.getElementsByTagName("td"), f[0].style.cssText = "padding:0;margin:0;border:0;display:none", l = f[0].offsetHeight === 0, f[0].style.display = "", f[1].style.display = "none", b.reliableHiddenOffsets = l && f[0].offsetHeight === 0, d.innerHTML = "", d.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;", b.boxSizing = d.offsetWidth === 4, b.doesNotIncludeMarginInBodyOffset = i.offsetTop !== 1, a.getComputedStyle && (b.pixelPosition = (a.getComputedStyle(d, null) || {}).top !== "1%", b.boxSizingReliable = (a.getComputedStyle(d, null) || { width: "4px" }).width === "4px", g = e.createElement("div"), g.style.cssText = d.style.cssText = h, g.style.marginRight = g.style.width = "0", d.style.width = "1px", d.appendChild(g), b.reliableMarginRight = !parseFloat((a.getComputedStyle(g, null) || {}).marginRight)), typeof d.style.zoom != "undefined" && (d.innerHTML = "", d.style.cssText = h + "width:1px;padding:1px;display:inline;zoom:1", b.inlineBlockNeedsLayout = d.offsetWidth === 3, d.style.display = "block", d.style.overflow = "visible", d.innerHTML = "<div></div>", d.firstChild.style.width = "5px", b.shrinkWrapBlocks = d.offsetWidth !== 3, c.style.zoom = 1), i.removeChild(c), c = d = f = g = null;
  631. }), i.removeChild(n), c = d = f = g = h = i = n = null, b;
  632. }();var H = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/,
  633. I = /([A-Z])/g;p.extend({ cache: {}, deletedIds: [], uuid: 0, expando: "jQuery" + (p.fn.jquery + Math.random()).replace(/\D/g, ""), noData: { embed: !0, object: "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", applet: !0 }, hasData: function hasData(a) {
  634. return a = a.nodeType ? p.cache[a[p.expando]] : a[p.expando], !!a && !K(a);
  635. }, data: function data(a, c, d, e) {
  636. if (!p.acceptData(a)) return;var f,
  637. g,
  638. h = p.expando,
  639. i = typeof c == "string",
  640. j = a.nodeType,
  641. k = j ? p.cache : a,
  642. l = j ? a[h] : a[h] && h;if ((!l || !k[l] || !e && !k[l].data) && i && d === b) return;l || (j ? a[h] = l = p.deletedIds.pop() || p.guid++ : l = h), k[l] || (k[l] = {}, j || (k[l].toJSON = p.noop));if ((typeof c === "undefined" ? "undefined" : _typeof(c)) == "object" || typeof c == "function") e ? k[l] = p.extend(k[l], c) : k[l].data = p.extend(k[l].data, c);return f = k[l], e || (f.data || (f.data = {}), f = f.data), d !== b && (f[p.camelCase(c)] = d), i ? (g = f[c], g == null && (g = f[p.camelCase(c)])) : g = f, g;
  643. }, removeData: function removeData(a, b, c) {
  644. if (!p.acceptData(a)) return;var d,
  645. e,
  646. f,
  647. g = a.nodeType,
  648. h = g ? p.cache : a,
  649. i = g ? a[p.expando] : p.expando;if (!h[i]) return;if (b) {
  650. d = c ? h[i] : h[i].data;if (d) {
  651. p.isArray(b) || (b in d ? b = [b] : (b = p.camelCase(b), b in d ? b = [b] : b = b.split(" ")));for (e = 0, f = b.length; e < f; e++) {
  652. delete d[b[e]];
  653. }if (!(c ? K : p.isEmptyObject)(d)) return;
  654. }
  655. }if (!c) {
  656. delete h[i].data;if (!K(h[i])) return;
  657. }g ? p.cleanData([a], !0) : p.support.deleteExpando || h != h.window ? delete h[i] : h[i] = null;
  658. }, _data: function _data(a, b, c) {
  659. return p.data(a, b, c, !0);
  660. }, acceptData: function acceptData(a) {
  661. var b = a.nodeName && p.noData[a.nodeName.toLowerCase()];return !b || b !== !0 && a.getAttribute("classid") === b;
  662. } }), p.fn.extend({ data: function data(a, c) {
  663. var d,
  664. e,
  665. f,
  666. g,
  667. h,
  668. i = this[0],
  669. j = 0,
  670. k = null;if (a === b) {
  671. if (this.length) {
  672. k = p.data(i);if (i.nodeType === 1 && !p._data(i, "parsedAttrs")) {
  673. f = i.attributes;for (h = f.length; j < h; j++) {
  674. g = f[j].name, g.indexOf("data-") || (g = p.camelCase(g.substring(5)), J(i, g, k[g]));
  675. }p._data(i, "parsedAttrs", !0);
  676. }
  677. }return k;
  678. }return (typeof a === "undefined" ? "undefined" : _typeof(a)) == "object" ? this.each(function () {
  679. p.data(this, a);
  680. }) : (d = a.split(".", 2), d[1] = d[1] ? "." + d[1] : "", e = d[1] + "!", p.access(this, function (c) {
  681. if (c === b) return k = this.triggerHandler("getData" + e, [d[0]]), k === b && i && (k = p.data(i, a), k = J(i, a, k)), k === b && d[1] ? this.data(d[0]) : k;d[1] = c, this.each(function () {
  682. var b = p(this);b.triggerHandler("setData" + e, d), p.data(this, a, c), b.triggerHandler("changeData" + e, d);
  683. });
  684. }, null, c, arguments.length > 1, null, !1));
  685. }, removeData: function removeData(a) {
  686. return this.each(function () {
  687. p.removeData(this, a);
  688. });
  689. } }), p.extend({ queue: function queue(a, b, c) {
  690. var d;if (a) return b = (b || "fx") + "queue", d = p._data(a, b), c && (!d || p.isArray(c) ? d = p._data(a, b, p.makeArray(c)) : d.push(c)), d || [];
  691. }, dequeue: function dequeue(a, b) {
  692. b = b || "fx";var c = p.queue(a, b),
  693. d = c.length,
  694. e = c.shift(),
  695. f = p._queueHooks(a, b),
  696. g = function g() {
  697. p.dequeue(a, b);
  698. };e === "inprogress" && (e = c.shift(), d--), e && (b === "fx" && c.unshift("inprogress"), delete f.stop, e.call(a, g, f)), !d && f && f.empty.fire();
  699. }, _queueHooks: function _queueHooks(a, b) {
  700. var c = b + "queueHooks";return p._data(a, c) || p._data(a, c, { empty: p.Callbacks("once memory").add(function () {
  701. p.removeData(a, b + "queue", !0), p.removeData(a, c, !0);
  702. }) });
  703. } }), p.fn.extend({ queue: function queue(a, c) {
  704. var d = 2;return typeof a != "string" && (c = a, a = "fx", d--), arguments.length < d ? p.queue(this[0], a) : c === b ? this : this.each(function () {
  705. var b = p.queue(this, a, c);p._queueHooks(this, a), a === "fx" && b[0] !== "inprogress" && p.dequeue(this, a);
  706. });
  707. }, dequeue: function dequeue(a) {
  708. return this.each(function () {
  709. p.dequeue(this, a);
  710. });
  711. }, delay: function delay(a, b) {
  712. return a = p.fx ? p.fx.speeds[a] || a : a, b = b || "fx", this.queue(b, function (b, c) {
  713. var d = setTimeout(b, a);c.stop = function () {
  714. clearTimeout(d);
  715. };
  716. });
  717. }, clearQueue: function clearQueue(a) {
  718. return this.queue(a || "fx", []);
  719. }, promise: function promise(a, c) {
  720. var d,
  721. e = 1,
  722. f = p.Deferred(),
  723. g = this,
  724. h = this.length,
  725. i = function i() {
  726. --e || f.resolveWith(g, [g]);
  727. };typeof a != "string" && (c = a, a = b), a = a || "fx";while (h--) {
  728. d = p._data(g[h], a + "queueHooks"), d && d.empty && (e++, d.empty.add(i));
  729. }return i(), f.promise(c);
  730. } });var L,
  731. M,
  732. N,
  733. O = /[\t\r\n]/g,
  734. P = /\r/g,
  735. Q = /^(?:button|input)$/i,
  736. R = /^(?:button|input|object|select|textarea)$/i,
  737. S = /^a(?:rea|)$/i,
  738. T = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
  739. U = p.support.getSetAttribute;p.fn.extend({ attr: function attr(a, b) {
  740. return p.access(this, p.attr, a, b, arguments.length > 1);
  741. }, removeAttr: function removeAttr(a) {
  742. return this.each(function () {
  743. p.removeAttr(this, a);
  744. });
  745. }, prop: function prop(a, b) {
  746. return p.access(this, p.prop, a, b, arguments.length > 1);
  747. }, removeProp: function removeProp(a) {
  748. return a = p.propFix[a] || a, this.each(function () {
  749. try {
  750. this[a] = b, delete this[a];
  751. } catch (c) {}
  752. });
  753. }, addClass: function addClass(a) {
  754. var b, c, d, e, f, g, h;if (p.isFunction(a)) return this.each(function (b) {
  755. p(this).addClass(a.call(this, b, this.className));
  756. });if (a && typeof a == "string") {
  757. b = a.split(s);for (c = 0, d = this.length; c < d; c++) {
  758. e = this[c];if (e.nodeType === 1) if (!e.className && b.length === 1) e.className = a;else {
  759. f = " " + e.className + " ";for (g = 0, h = b.length; g < h; g++) {
  760. f.indexOf(" " + b[g] + " ") < 0 && (f += b[g] + " ");
  761. }e.className = p.trim(f);
  762. }
  763. }
  764. }return this;
  765. }, removeClass: function removeClass(a) {
  766. var c, d, e, f, g, h, i;if (p.isFunction(a)) return this.each(function (b) {
  767. p(this).removeClass(a.call(this, b, this.className));
  768. });if (a && typeof a == "string" || a === b) {
  769. c = (a || "").split(s);for (h = 0, i = this.length; h < i; h++) {
  770. e = this[h];if (e.nodeType === 1 && e.className) {
  771. d = (" " + e.className + " ").replace(O, " ");for (f = 0, g = c.length; f < g; f++) {
  772. while (d.indexOf(" " + c[f] + " ") >= 0) {
  773. d = d.replace(" " + c[f] + " ", " ");
  774. }
  775. }e.className = a ? p.trim(d) : "";
  776. }
  777. }
  778. }return this;
  779. }, toggleClass: function toggleClass(a, b) {
  780. var c = typeof a === "undefined" ? "undefined" : _typeof(a),
  781. d = typeof b == "boolean";return p.isFunction(a) ? this.each(function (c) {
  782. p(this).toggleClass(a.call(this, c, this.className, b), b);
  783. }) : this.each(function () {
  784. if (c === "string") {
  785. var e,
  786. f = 0,
  787. g = p(this),
  788. h = b,
  789. i = a.split(s);while (e = i[f++]) {
  790. h = d ? h : !g.hasClass(e), g[h ? "addClass" : "removeClass"](e);
  791. }
  792. } else if (c === "undefined" || c === "boolean") this.className && p._data(this, "__className__", this.className), this.className = this.className || a === !1 ? "" : p._data(this, "__className__") || "";
  793. });
  794. }, hasClass: function hasClass(a) {
  795. var b = " " + a + " ",
  796. c = 0,
  797. d = this.length;for (; c < d; c++) {
  798. if (this[c].nodeType === 1 && (" " + this[c].className + " ").replace(O, " ").indexOf(b) >= 0) return !0;
  799. }return !1;
  800. }, val: function val(a) {
  801. var c,
  802. d,
  803. e,
  804. f = this[0];if (!arguments.length) {
  805. if (f) return c = p.valHooks[f.type] || p.valHooks[f.nodeName.toLowerCase()], c && "get" in c && (d = c.get(f, "value")) !== b ? d : (d = f.value, typeof d == "string" ? d.replace(P, "") : d == null ? "" : d);return;
  806. }return e = p.isFunction(a), this.each(function (d) {
  807. var f,
  808. g = p(this);if (this.nodeType !== 1) return;e ? f = a.call(this, d, g.val()) : f = a, f == null ? f = "" : typeof f == "number" ? f += "" : p.isArray(f) && (f = p.map(f, function (a) {
  809. return a == null ? "" : a + "";
  810. })), c = p.valHooks[this.type] || p.valHooks[this.nodeName.toLowerCase()];if (!c || !("set" in c) || c.set(this, f, "value") === b) this.value = f;
  811. });
  812. } }), p.extend({ valHooks: { option: { get: function get(a) {
  813. var b = a.attributes.value;return !b || b.specified ? a.value : a.text;
  814. } }, select: { get: function get(a) {
  815. var b,
  816. c,
  817. d,
  818. e,
  819. f = a.selectedIndex,
  820. g = [],
  821. h = a.options,
  822. i = a.type === "select-one";if (f < 0) return null;c = i ? f : 0, d = i ? f + 1 : h.length;for (; c < d; c++) {
  823. e = h[c];if (e.selected && (p.support.optDisabled ? !e.disabled : e.getAttribute("disabled") === null) && (!e.parentNode.disabled || !p.nodeName(e.parentNode, "optgroup"))) {
  824. b = p(e).val();if (i) return b;g.push(b);
  825. }
  826. }return i && !g.length && h.length ? p(h[f]).val() : g;
  827. }, set: function set(a, b) {
  828. var c = p.makeArray(b);return p(a).find("option").each(function () {
  829. this.selected = p.inArray(p(this).val(), c) >= 0;
  830. }), c.length || (a.selectedIndex = -1), c;
  831. } } }, attrFn: {}, attr: function attr(a, c, d, e) {
  832. var f,
  833. g,
  834. h,
  835. i = a.nodeType;if (!a || i === 3 || i === 8 || i === 2) return;if (e && p.isFunction(p.fn[c])) return p(a)[c](d);if (typeof a.getAttribute == "undefined") return p.prop(a, c, d);h = i !== 1 || !p.isXMLDoc(a), h && (c = c.toLowerCase(), g = p.attrHooks[c] || (T.test(c) ? M : L));if (d !== b) {
  836. if (d === null) {
  837. p.removeAttr(a, c);return;
  838. }return g && "set" in g && h && (f = g.set(a, d, c)) !== b ? f : (a.setAttribute(c, d + ""), d);
  839. }return g && "get" in g && h && (f = g.get(a, c)) !== null ? f : (f = a.getAttribute(c), f === null ? b : f);
  840. }, removeAttr: function removeAttr(a, b) {
  841. var c,
  842. d,
  843. e,
  844. f,
  845. g = 0;if (b && a.nodeType === 1) {
  846. d = b.split(s);for (; g < d.length; g++) {
  847. e = d[g], e && (c = p.propFix[e] || e, f = T.test(e), f || p.attr(a, e, ""), a.removeAttribute(U ? e : c), f && c in a && (a[c] = !1));
  848. }
  849. }
  850. }, attrHooks: { type: { set: function set(a, b) {
  851. if (Q.test(a.nodeName) && a.parentNode) p.error("type property can't be changed");else if (!p.support.radioValue && b === "radio" && p.nodeName(a, "input")) {
  852. var c = a.value;return a.setAttribute("type", b), c && (a.value = c), b;
  853. }
  854. } }, value: { get: function get(a, b) {
  855. return L && p.nodeName(a, "button") ? L.get(a, b) : b in a ? a.value : null;
  856. }, set: function set(a, b, c) {
  857. if (L && p.nodeName(a, "button")) return L.set(a, b, c);a.value = b;
  858. } } }, propFix: { tabindex: "tabIndex", readonly: "readOnly", "for": "htmlFor", "class": "className", maxlength: "maxLength", cellspacing: "cellSpacing", cellpadding: "cellPadding", rowspan: "rowSpan", colspan: "colSpan", usemap: "useMap", frameborder: "frameBorder", contenteditable: "contentEditable" }, prop: function prop(a, c, d) {
  859. var e,
  860. f,
  861. g,
  862. h = a.nodeType;if (!a || h === 3 || h === 8 || h === 2) return;return g = h !== 1 || !p.isXMLDoc(a), g && (c = p.propFix[c] || c, f = p.propHooks[c]), d !== b ? f && "set" in f && (e = f.set(a, d, c)) !== b ? e : a[c] = d : f && "get" in f && (e = f.get(a, c)) !== null ? e : a[c];
  863. }, propHooks: { tabIndex: { get: function get(a) {
  864. var c = a.getAttributeNode("tabindex");return c && c.specified ? parseInt(c.value, 10) : R.test(a.nodeName) || S.test(a.nodeName) && a.href ? 0 : b;
  865. } } } }), M = { get: function get(a, c) {
  866. var d,
  867. e = p.prop(a, c);return e === !0 || typeof e != "boolean" && (d = a.getAttributeNode(c)) && d.nodeValue !== !1 ? c.toLowerCase() : b;
  868. }, set: function set(a, b, c) {
  869. var d;return b === !1 ? p.removeAttr(a, c) : (d = p.propFix[c] || c, d in a && (a[d] = !0), a.setAttribute(c, c.toLowerCase())), c;
  870. } }, U || (N = { name: !0, id: !0, coords: !0 }, L = p.valHooks.button = { get: function get(a, c) {
  871. var d;return d = a.getAttributeNode(c), d && (N[c] ? d.value !== "" : d.specified) ? d.value : b;
  872. }, set: function set(a, b, c) {
  873. var d = a.getAttributeNode(c);return d || (d = e.createAttribute(c), a.setAttributeNode(d)), d.value = b + "";
  874. } }, p.each(["width", "height"], function (a, b) {
  875. p.attrHooks[b] = p.extend(p.attrHooks[b], { set: function set(a, c) {
  876. if (c === "") return a.setAttribute(b, "auto"), c;
  877. } });
  878. }), p.attrHooks.contenteditable = { get: L.get, set: function set(a, b, c) {
  879. b === "" && (b = "false"), L.set(a, b, c);
  880. } }), p.support.hrefNormalized || p.each(["href", "src", "width", "height"], function (a, c) {
  881. p.attrHooks[c] = p.extend(p.attrHooks[c], { get: function get(a) {
  882. var d = a.getAttribute(c, 2);return d === null ? b : d;
  883. } });
  884. }), p.support.style || (p.attrHooks.style = { get: function get(a) {
  885. return a.style.cssText.toLowerCase() || b;
  886. }, set: function set(a, b) {
  887. return a.style.cssText = b + "";
  888. } }), p.support.optSelected || (p.propHooks.selected = p.extend(p.propHooks.selected, { get: function get(a) {
  889. var b = a.parentNode;return b && (b.selectedIndex, b.parentNode && b.parentNode.selectedIndex), null;
  890. } })), p.support.enctype || (p.propFix.enctype = "encoding"), p.support.checkOn || p.each(["radio", "checkbox"], function () {
  891. p.valHooks[this] = { get: function get(a) {
  892. return a.getAttribute("value") === null ? "on" : a.value;
  893. } };
  894. }), p.each(["radio", "checkbox"], function () {
  895. p.valHooks[this] = p.extend(p.valHooks[this], { set: function set(a, b) {
  896. if (p.isArray(b)) return a.checked = p.inArray(p(a).val(), b) >= 0;
  897. } });
  898. });var V = /^(?:textarea|input|select)$/i,
  899. W = /^([^\.]*|)(?:\.(.+)|)$/,
  900. X = /(?:^|\s)hover(\.\S+|)\b/,
  901. Y = /^key/,
  902. Z = /^(?:mouse|contextmenu)|click/,
  903. $ = /^(?:focusinfocus|focusoutblur)$/,
  904. _ = function _(a) {
  905. return p.event.special.hover ? a : a.replace(X, "mouseenter$1 mouseleave$1");
  906. };p.event = { add: function add(a, c, d, e, f) {
  907. var g, _h, i, j, k, l, m, n, o, q, r;if (a.nodeType === 3 || a.nodeType === 8 || !c || !d || !(g = p._data(a))) return;d.handler && (o = d, d = o.handler, f = o.selector), d.guid || (d.guid = p.guid++), i = g.events, i || (g.events = i = {}), _h = g.handle, _h || (g.handle = _h = function h(a) {
  908. return typeof p != "undefined" && (!a || p.event.triggered !== a.type) ? p.event.dispatch.apply(_h.elem, arguments) : b;
  909. }, _h.elem = a), c = p.trim(_(c)).split(" ");for (j = 0; j < c.length; j++) {
  910. k = W.exec(c[j]) || [], l = k[1], m = (k[2] || "").split(".").sort(), r = p.event.special[l] || {}, l = (f ? r.delegateType : r.bindType) || l, r = p.event.special[l] || {}, n = p.extend({ type: l, origType: k[1], data: e, handler: d, guid: d.guid, selector: f, needsContext: f && p.expr.match.needsContext.test(f), namespace: m.join(".") }, o), q = i[l];if (!q) {
  911. q = i[l] = [], q.delegateCount = 0;if (!r.setup || r.setup.call(a, e, m, _h) === !1) a.addEventListener ? a.addEventListener(l, _h, !1) : a.attachEvent && a.attachEvent("on" + l, _h);
  912. }r.add && (r.add.call(a, n), n.handler.guid || (n.handler.guid = d.guid)), f ? q.splice(q.delegateCount++, 0, n) : q.push(n), p.event.global[l] = !0;
  913. }a = null;
  914. }, global: {}, remove: function remove(a, b, c, d, e) {
  915. var f,
  916. g,
  917. h,
  918. i,
  919. j,
  920. k,
  921. l,
  922. m,
  923. n,
  924. o,
  925. q,
  926. r = p.hasData(a) && p._data(a);if (!r || !(m = r.events)) return;b = p.trim(_(b || "")).split(" ");for (f = 0; f < b.length; f++) {
  927. g = W.exec(b[f]) || [], h = i = g[1], j = g[2];if (!h) {
  928. for (h in m) {
  929. p.event.remove(a, h + b[f], c, d, !0);
  930. }continue;
  931. }n = p.event.special[h] || {}, h = (d ? n.delegateType : n.bindType) || h, o = m[h] || [], k = o.length, j = j ? new RegExp("(^|\\.)" + j.split(".").sort().join("\\.(?:.*\\.|)") + "(\\.|$)") : null;for (l = 0; l < o.length; l++) {
  932. q = o[l], (e || i === q.origType) && (!c || c.guid === q.guid) && (!j || j.test(q.namespace)) && (!d || d === q.selector || d === "**" && q.selector) && (o.splice(l--, 1), q.selector && o.delegateCount--, n.remove && n.remove.call(a, q));
  933. }o.length === 0 && k !== o.length && ((!n.teardown || n.teardown.call(a, j, r.handle) === !1) && p.removeEvent(a, h, r.handle), delete m[h]);
  934. }p.isEmptyObject(m) && (delete r.handle, p.removeData(a, "events", !0));
  935. }, customEvent: { getData: !0, setData: !0, changeData: !0 }, trigger: function trigger(c, d, f, g) {
  936. if (!f || f.nodeType !== 3 && f.nodeType !== 8) {
  937. var h,
  938. i,
  939. j,
  940. k,
  941. l,
  942. m,
  943. n,
  944. o,
  945. q,
  946. r,
  947. s = c.type || c,
  948. t = [];if ($.test(s + p.event.triggered)) return;s.indexOf("!") >= 0 && (s = s.slice(0, -1), i = !0), s.indexOf(".") >= 0 && (t = s.split("."), s = t.shift(), t.sort());if ((!f || p.event.customEvent[s]) && !p.event.global[s]) return;c = (typeof c === "undefined" ? "undefined" : _typeof(c)) == "object" ? c[p.expando] ? c : new p.Event(s, c) : new p.Event(s), c.type = s, c.isTrigger = !0, c.exclusive = i, c.namespace = t.join("."), c.namespace_re = c.namespace ? new RegExp("(^|\\.)" + t.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, m = s.indexOf(":") < 0 ? "on" + s : "";if (!f) {
  949. h = p.cache;for (j in h) {
  950. h[j].events && h[j].events[s] && p.event.trigger(c, d, h[j].handle.elem, !0);
  951. }return;
  952. }c.result = b, c.target || (c.target = f), d = d != null ? p.makeArray(d) : [], d.unshift(c), n = p.event.special[s] || {};if (n.trigger && n.trigger.apply(f, d) === !1) return;q = [[f, n.bindType || s]];if (!g && !n.noBubble && !p.isWindow(f)) {
  953. r = n.delegateType || s, k = $.test(r + s) ? f : f.parentNode;for (l = f; k; k = k.parentNode) {
  954. q.push([k, r]), l = k;
  955. }l === (f.ownerDocument || e) && q.push([l.defaultView || l.parentWindow || a, r]);
  956. }for (j = 0; j < q.length && !c.isPropagationStopped(); j++) {
  957. k = q[j][0], c.type = q[j][1], o = (p._data(k, "events") || {})[c.type] && p._data(k, "handle"), o && o.apply(k, d), o = m && k[m], o && p.acceptData(k) && o.apply && o.apply(k, d) === !1 && c.preventDefault();
  958. }return c.type = s, !g && !c.isDefaultPrevented() && (!n._default || n._default.apply(f.ownerDocument, d) === !1) && (s !== "click" || !p.nodeName(f, "a")) && p.acceptData(f) && m && f[s] && (s !== "focus" && s !== "blur" || c.target.offsetWidth !== 0) && !p.isWindow(f) && (l = f[m], l && (f[m] = null), p.event.triggered = s, f[s](), p.event.triggered = b, l && (f[m] = l)), c.result;
  959. }return;
  960. }, dispatch: function dispatch(c) {
  961. c = p.event.fix(c || a.event);var d,
  962. e,
  963. f,
  964. g,
  965. h,
  966. i,
  967. j,
  968. l,
  969. m,
  970. n,
  971. o = (p._data(this, "events") || {})[c.type] || [],
  972. q = o.delegateCount,
  973. r = k.call(arguments),
  974. s = !c.exclusive && !c.namespace,
  975. t = p.event.special[c.type] || {},
  976. u = [];r[0] = c, c.delegateTarget = this;if (t.preDispatch && t.preDispatch.call(this, c) === !1) return;if (q && (!c.button || c.type !== "click")) for (f = c.target; f != this; f = f.parentNode || this) {
  977. if (f.disabled !== !0 || c.type !== "click") {
  978. h = {}, j = [];for (d = 0; d < q; d++) {
  979. l = o[d], m = l.selector, h[m] === b && (h[m] = l.needsContext ? p(m, this).index(f) >= 0 : p.find(m, this, null, [f]).length), h[m] && j.push(l);
  980. }j.length && u.push({ elem: f, matches: j });
  981. }
  982. }o.length > q && u.push({ elem: this, matches: o.slice(q) });for (d = 0; d < u.length && !c.isPropagationStopped(); d++) {
  983. i = u[d], c.currentTarget = i.elem;for (e = 0; e < i.matches.length && !c.isImmediatePropagationStopped(); e++) {
  984. l = i.matches[e];if (s || !c.namespace && !l.namespace || c.namespace_re && c.namespace_re.test(l.namespace)) c.data = l.data, c.handleObj = l, g = ((p.event.special[l.origType] || {}).handle || l.handler).apply(i.elem, r), g !== b && (c.result = g, g === !1 && (c.preventDefault(), c.stopPropagation()));
  985. }
  986. }return t.postDispatch && t.postDispatch.call(this, c), c.result;
  987. }, props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), fixHooks: {}, keyHooks: { props: "char charCode key keyCode".split(" "), filter: function filter(a, b) {
  988. return a.which == null && (a.which = b.charCode != null ? b.charCode : b.keyCode), a;
  989. } }, mouseHooks: { props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), filter: function filter(a, c) {
  990. var d,
  991. f,
  992. g,
  993. h = c.button,
  994. i = c.fromElement;return a.pageX == null && c.clientX != null && (d = a.target.ownerDocument || e, f = d.documentElement, g = d.body, a.pageX = c.clientX + (f && f.scrollLeft || g && g.scrollLeft || 0) - (f && f.clientLeft || g && g.clientLeft || 0), a.pageY = c.clientY + (f && f.scrollTop || g && g.scrollTop || 0) - (f && f.clientTop || g && g.clientTop || 0)), !a.relatedTarget && i && (a.relatedTarget = i === a.target ? c.toElement : i), !a.which && h !== b && (a.which = h & 1 ? 1 : h & 2 ? 3 : h & 4 ? 2 : 0), a;
  995. } }, fix: function fix(a) {
  996. if (a[p.expando]) return a;var b,
  997. c,
  998. d = a,
  999. f = p.event.fixHooks[a.type] || {},
  1000. g = f.props ? this.props.concat(f.props) : this.props;a = p.Event(d);for (b = g.length; b;) {
  1001. c = g[--b], a[c] = d[c];
  1002. }return a.target || (a.target = d.srcElement || e), a.target.nodeType === 3 && (a.target = a.target.parentNode), a.metaKey = !!a.metaKey, f.filter ? f.filter(a, d) : a;
  1003. }, special: { load: { noBubble: !0 }, focus: { delegateType: "focusin" }, blur: { delegateType: "focusout" }, beforeunload: { setup: function setup(a, b, c) {
  1004. p.isWindow(this) && (this.onbeforeunload = c);
  1005. }, teardown: function teardown(a, b) {
  1006. this.onbeforeunload === b && (this.onbeforeunload = null);
  1007. } } }, simulate: function simulate(a, b, c, d) {
  1008. var e = p.extend(new p.Event(), c, { type: a, isSimulated: !0, originalEvent: {} });d ? p.event.trigger(e, null, b) : p.event.dispatch.call(b, e), e.isDefaultPrevented() && c.preventDefault();
  1009. } }, p.event.handle = p.event.dispatch, p.removeEvent = e.removeEventListener ? function (a, b, c) {
  1010. a.removeEventListener && a.removeEventListener(b, c, !1);
  1011. } : function (a, b, c) {
  1012. var d = "on" + b;a.detachEvent && (typeof a[d] == "undefined" && (a[d] = null), a.detachEvent(d, c));
  1013. }, p.Event = function (a, b) {
  1014. if (this instanceof p.Event) a && a.type ? (this.originalEvent = a, this.type = a.type, this.isDefaultPrevented = a.defaultPrevented || a.returnValue === !1 || a.getPreventDefault && a.getPreventDefault() ? bb : ba) : this.type = a, b && p.extend(this, b), this.timeStamp = a && a.timeStamp || p.now(), this[p.expando] = !0;else return new p.Event(a, b);
  1015. }, p.Event.prototype = { preventDefault: function preventDefault() {
  1016. this.isDefaultPrevented = bb;var a = this.originalEvent;if (!a) return;a.preventDefault ? a.preventDefault() : a.returnValue = !1;
  1017. }, stopPropagation: function stopPropagation() {
  1018. this.isPropagationStopped = bb;var a = this.originalEvent;if (!a) return;a.stopPropagation && a.stopPropagation(), a.cancelBubble = !0;
  1019. }, stopImmediatePropagation: function stopImmediatePropagation() {
  1020. this.isImmediatePropagationStopped = bb, this.stopPropagation();
  1021. }, isDefaultPrevented: ba, isPropagationStopped: ba, isImmediatePropagationStopped: ba }, p.each({ mouseenter: "mouseover", mouseleave: "mouseout" }, function (a, b) {
  1022. p.event.special[a] = { delegateType: b, bindType: b, handle: function handle(a) {
  1023. var c,
  1024. d = this,
  1025. e = a.relatedTarget,
  1026. f = a.handleObj,
  1027. g = f.selector;if (!e || e !== d && !p.contains(d, e)) a.type = f.origType, c = f.handler.apply(this, arguments), a.type = b;return c;
  1028. } };
  1029. }), p.support.submitBubbles || (p.event.special.submit = { setup: function setup() {
  1030. if (p.nodeName(this, "form")) return !1;p.event.add(this, "click._submit keypress._submit", function (a) {
  1031. var c = a.target,
  1032. d = p.nodeName(c, "input") || p.nodeName(c, "button") ? c.form : b;d && !p._data(d, "_submit_attached") && (p.event.add(d, "submit._submit", function (a) {
  1033. a._submit_bubble = !0;
  1034. }), p._data(d, "_submit_attached", !0));
  1035. });
  1036. }, postDispatch: function postDispatch(a) {
  1037. a._submit_bubble && (delete a._submit_bubble, this.parentNode && !a.isTrigger && p.event.simulate("submit", this.parentNode, a, !0));
  1038. }, teardown: function teardown() {
  1039. if (p.nodeName(this, "form")) return !1;p.event.remove(this, "._submit");
  1040. } }), p.support.changeBubbles || (p.event.special.change = { setup: function setup() {
  1041. if (V.test(this.nodeName)) {
  1042. if (this.type === "checkbox" || this.type === "radio") p.event.add(this, "propertychange._change", function (a) {
  1043. a.originalEvent.propertyName === "checked" && (this._just_changed = !0);
  1044. }), p.event.add(this, "click._change", function (a) {
  1045. this._just_changed && !a.isTrigger && (this._just_changed = !1), p.event.simulate("change", this, a, !0);
  1046. });return !1;
  1047. }p.event.add(this, "beforeactivate._change", function (a) {
  1048. var b = a.target;V.test(b.nodeName) && !p._data(b, "_change_attached") && (p.event.add(b, "change._change", function (a) {
  1049. this.parentNode && !a.isSimulated && !a.isTrigger && p.event.simulate("change", this.parentNode, a, !0);
  1050. }), p._data(b, "_change_attached", !0));
  1051. });
  1052. }, handle: function handle(a) {
  1053. var b = a.target;if (this !== b || a.isSimulated || a.isTrigger || b.type !== "radio" && b.type !== "checkbox") return a.handleObj.handler.apply(this, arguments);
  1054. }, teardown: function teardown() {
  1055. return p.event.remove(this, "._change"), !V.test(this.nodeName);
  1056. } }), p.support.focusinBubbles || p.each({ focus: "focusin", blur: "focusout" }, function (a, b) {
  1057. var c = 0,
  1058. d = function d(a) {
  1059. p.event.simulate(b, a.target, p.event.fix(a), !0);
  1060. };p.event.special[b] = { setup: function setup() {
  1061. c++ === 0 && e.addEventListener(a, d, !0);
  1062. }, teardown: function teardown() {
  1063. --c === 0 && e.removeEventListener(a, d, !0);
  1064. } };
  1065. }), p.fn.extend({ on: function on(a, c, d, e, f) {
  1066. var g, h;if ((typeof a === "undefined" ? "undefined" : _typeof(a)) == "object") {
  1067. typeof c != "string" && (d = d || c, c = b);for (h in a) {
  1068. this.on(h, c, d, a[h], f);
  1069. }return this;
  1070. }d == null && e == null ? (e = c, d = c = b) : e == null && (typeof c == "string" ? (e = d, d = b) : (e = d, d = c, c = b));if (e === !1) e = ba;else if (!e) return this;return f === 1 && (g = e, e = function e(a) {
  1071. return p().off(a), g.apply(this, arguments);
  1072. }, e.guid = g.guid || (g.guid = p.guid++)), this.each(function () {
  1073. p.event.add(this, a, e, d, c);
  1074. });
  1075. }, one: function one(a, b, c, d) {
  1076. return this.on(a, b, c, d, 1);
  1077. }, off: function off(a, c, d) {
  1078. var e, f;if (a && a.preventDefault && a.handleObj) return e = a.handleObj, p(a.delegateTarget).off(e.namespace ? e.origType + "." + e.namespace : e.origType, e.selector, e.handler), this;if ((typeof a === "undefined" ? "undefined" : _typeof(a)) == "object") {
  1079. for (f in a) {
  1080. this.off(f, c, a[f]);
  1081. }return this;
  1082. }if (c === !1 || typeof c == "function") d = c, c = b;return d === !1 && (d = ba), this.each(function () {
  1083. p.event.remove(this, a, d, c);
  1084. });
  1085. }, bind: function bind(a, b, c) {
  1086. return this.on(a, null, b, c);
  1087. }, unbind: function unbind(a, b) {
  1088. return this.off(a, null, b);
  1089. }, live: function live(a, b, c) {
  1090. return p(this.context).on(a, this.selector, b, c), this;
  1091. }, die: function die(a, b) {
  1092. return p(this.context).off(a, this.selector || "**", b), this;
  1093. }, delegate: function delegate(a, b, c, d) {
  1094. return this.on(b, a, c, d);
  1095. }, undelegate: function undelegate(a, b, c) {
  1096. return arguments.length === 1 ? this.off(a, "**") : this.off(b, a || "**", c);
  1097. }, trigger: function trigger(a, b) {
  1098. return this.each(function () {
  1099. p.event.trigger(a, b, this);
  1100. });
  1101. }, triggerHandler: function triggerHandler(a, b) {
  1102. if (this[0]) return p.event.trigger(a, b, this[0], !0);
  1103. }, toggle: function toggle(a) {
  1104. var b = arguments,
  1105. c = a.guid || p.guid++,
  1106. d = 0,
  1107. e = function e(c) {
  1108. var e = (p._data(this, "lastToggle" + a.guid) || 0) % d;return p._data(this, "lastToggle" + a.guid, e + 1), c.preventDefault(), b[e].apply(this, arguments) || !1;
  1109. };e.guid = c;while (d < b.length) {
  1110. b[d++].guid = c;
  1111. }return this.click(e);
  1112. }, hover: function hover(a, b) {
  1113. return this.mouseenter(a).mouseleave(b || a);
  1114. } }), p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "), function (a, b) {
  1115. p.fn[b] = function (a, c) {
  1116. return c == null && (c = a, a = null), arguments.length > 0 ? this.on(b, null, a, c) : this.trigger(b);
  1117. }, Y.test(b) && (p.event.fixHooks[b] = p.event.keyHooks), Z.test(b) && (p.event.fixHooks[b] = p.event.mouseHooks);
  1118. }), function (a, b) {
  1119. function bc(a, b, c, d) {
  1120. c = c || [], b = b || r;var e,
  1121. f,
  1122. i,
  1123. j,
  1124. k = b.nodeType;if (!a || typeof a != "string") return c;if (k !== 1 && k !== 9) return [];i = g(b);if (!i && !d) if (e = P.exec(a)) if (j = e[1]) {
  1125. if (k === 9) {
  1126. f = b.getElementById(j);if (!f || !f.parentNode) return c;if (f.id === j) return c.push(f), c;
  1127. } else if (b.ownerDocument && (f = b.ownerDocument.getElementById(j)) && h(b, f) && f.id === j) return c.push(f), c;
  1128. } else {
  1129. if (e[2]) return w.apply(c, x.call(b.getElementsByTagName(a), 0)), c;if ((j = e[3]) && _ && b.getElementsByClassName) return w.apply(c, x.call(b.getElementsByClassName(j), 0)), c;
  1130. }return bp(a.replace(L, "$1"), b, c, d, i);
  1131. }function bd(a) {
  1132. return function (b) {
  1133. var c = b.nodeName.toLowerCase();return c === "input" && b.type === a;
  1134. };
  1135. }function be(a) {
  1136. return function (b) {
  1137. var c = b.nodeName.toLowerCase();return (c === "input" || c === "button") && b.type === a;
  1138. };
  1139. }function bf(a) {
  1140. return z(function (b) {
  1141. return b = +b, z(function (c, d) {
  1142. var e,
  1143. f = a([], c.length, b),
  1144. g = f.length;while (g--) {
  1145. c[e = f[g]] && (c[e] = !(d[e] = c[e]));
  1146. }
  1147. });
  1148. });
  1149. }function bg(a, b, c) {
  1150. if (a === b) return c;var d = a.nextSibling;while (d) {
  1151. if (d === b) return -1;d = d.nextSibling;
  1152. }return 1;
  1153. }function bh(a, b) {
  1154. var c,
  1155. d,
  1156. f,
  1157. g,
  1158. h,
  1159. i,
  1160. j,
  1161. k = C[o][a];if (k) return b ? 0 : k.slice(0);h = a, i = [], j = e.preFilter;while (h) {
  1162. if (!c || (d = M.exec(h))) d && (h = h.slice(d[0].length)), i.push(f = []);c = !1;if (d = N.exec(h)) f.push(c = new q(d.shift())), h = h.slice(c.length), c.type = d[0].replace(L, " ");for (g in e.filter) {
  1163. (d = W[g].exec(h)) && (!j[g] || (d = j[g](d, r, !0))) && (f.push(c = new q(d.shift())), h = h.slice(c.length), c.type = g, c.matches = d);
  1164. }if (!c) break;
  1165. }return b ? h.length : h ? bc.error(a) : C(a, i).slice(0);
  1166. }function bi(a, b, d) {
  1167. var e = b.dir,
  1168. f = d && b.dir === "parentNode",
  1169. g = u++;return b.first ? function (b, c, d) {
  1170. while (b = b[e]) {
  1171. if (f || b.nodeType === 1) return a(b, c, d);
  1172. }
  1173. } : function (b, d, h) {
  1174. if (!h) {
  1175. var i,
  1176. j = t + " " + g + " ",
  1177. k = j + c;while (b = b[e]) {
  1178. if (f || b.nodeType === 1) {
  1179. if ((i = b[o]) === k) return b.sizset;if (typeof i == "string" && i.indexOf(j) === 0) {
  1180. if (b.sizset) return b;
  1181. } else {
  1182. b[o] = k;if (a(b, d, h)) return b.sizset = !0, b;b.sizset = !1;
  1183. }
  1184. }
  1185. }
  1186. } else while (b = b[e]) {
  1187. if (f || b.nodeType === 1) if (a(b, d, h)) return b;
  1188. }
  1189. };
  1190. }function bj(a) {
  1191. return a.length > 1 ? function (b, c, d) {
  1192. var e = a.length;while (e--) {
  1193. if (!a[e](b, c, d)) return !1;
  1194. }return !0;
  1195. } : a[0];
  1196. }function bk(a, b, c, d, e) {
  1197. var f,
  1198. g = [],
  1199. h = 0,
  1200. i = a.length,
  1201. j = b != null;for (; h < i; h++) {
  1202. if (f = a[h]) if (!c || c(f, d, e)) g.push(f), j && b.push(h);
  1203. }return g;
  1204. }function bl(a, b, c, d, e, f) {
  1205. return d && !d[o] && (d = bl(d)), e && !e[o] && (e = bl(e, f)), z(function (f, g, h, i) {
  1206. if (f && e) return;var j,
  1207. k,
  1208. l,
  1209. m = [],
  1210. n = [],
  1211. o = g.length,
  1212. p = f || bo(b || "*", h.nodeType ? [h] : h, [], f),
  1213. q = a && (f || !b) ? bk(p, m, a, h, i) : p,
  1214. r = c ? e || (f ? a : o || d) ? [] : g : q;c && c(q, r, h, i);if (d) {
  1215. l = bk(r, n), d(l, [], h, i), j = l.length;while (j--) {
  1216. if (k = l[j]) r[n[j]] = !(q[n[j]] = k);
  1217. }
  1218. }if (f) {
  1219. j = a && r.length;while (j--) {
  1220. if (k = r[j]) f[m[j]] = !(g[m[j]] = k);
  1221. }
  1222. } else r = bk(r === g ? r.splice(o, r.length) : r), e ? e(null, g, r, i) : w.apply(g, r);
  1223. });
  1224. }function bm(a) {
  1225. var b,
  1226. c,
  1227. d,
  1228. f = a.length,
  1229. g = e.relative[a[0].type],
  1230. h = g || e.relative[" "],
  1231. i = g ? 1 : 0,
  1232. j = bi(function (a) {
  1233. return a === b;
  1234. }, h, !0),
  1235. k = bi(function (a) {
  1236. return y.call(b, a) > -1;
  1237. }, h, !0),
  1238. m = [function (a, c, d) {
  1239. return !g && (d || c !== l) || ((b = c).nodeType ? j(a, c, d) : k(a, c, d));
  1240. }];for (; i < f; i++) {
  1241. if (c = e.relative[a[i].type]) m = [bi(bj(m), c)];else {
  1242. c = e.filter[a[i].type].apply(null, a[i].matches);if (c[o]) {
  1243. d = ++i;for (; d < f; d++) {
  1244. if (e.relative[a[d].type]) break;
  1245. }return bl(i > 1 && bj(m), i > 1 && a.slice(0, i - 1).join("").replace(L, "$1"), c, i < d && bm(a.slice(i, d)), d < f && bm(a = a.slice(d)), d < f && a.join(""));
  1246. }m.push(c);
  1247. }
  1248. }return bj(m);
  1249. }function bn(a, b) {
  1250. var d = b.length > 0,
  1251. f = a.length > 0,
  1252. g = function g(h, i, j, k, m) {
  1253. var n,
  1254. o,
  1255. p,
  1256. q = [],
  1257. s = 0,
  1258. u = "0",
  1259. x = h && [],
  1260. y = m != null,
  1261. z = l,
  1262. A = h || f && e.find.TAG("*", m && i.parentNode || i),
  1263. B = t += z == null ? 1 : Math.E;y && (l = i !== r && i, c = g.el);for (; (n = A[u]) != null; u++) {
  1264. if (f && n) {
  1265. for (o = 0; p = a[o]; o++) {
  1266. if (p(n, i, j)) {
  1267. k.push(n);break;
  1268. }
  1269. }y && (t = B, c = ++g.el);
  1270. }d && ((n = !p && n) && s--, h && x.push(n));
  1271. }s += u;if (d && u !== s) {
  1272. for (o = 0; p = b[o]; o++) {
  1273. p(x, q, i, j);
  1274. }if (h) {
  1275. if (s > 0) while (u--) {
  1276. !x[u] && !q[u] && (q[u] = v.call(k));
  1277. }q = bk(q);
  1278. }w.apply(k, q), y && !h && q.length > 0 && s + b.length > 1 && bc.uniqueSort(k);
  1279. }return y && (t = B, l = z), x;
  1280. };return g.el = 0, d ? z(g) : g;
  1281. }function bo(a, b, c, d) {
  1282. var e = 0,
  1283. f = b.length;for (; e < f; e++) {
  1284. bc(a, b[e], c, d);
  1285. }return c;
  1286. }function bp(a, b, c, d, f) {
  1287. var g,
  1288. h,
  1289. j,
  1290. k,
  1291. l,
  1292. m = bh(a),
  1293. n = m.length;if (!d && m.length === 1) {
  1294. h = m[0] = m[0].slice(0);if (h.length > 2 && (j = h[0]).type === "ID" && b.nodeType === 9 && !f && e.relative[h[1].type]) {
  1295. b = e.find.ID(j.matches[0].replace(V, ""), b, f)[0];if (!b) return c;a = a.slice(h.shift().length);
  1296. }for (g = W.POS.test(a) ? -1 : h.length - 1; g >= 0; g--) {
  1297. j = h[g];if (e.relative[k = j.type]) break;if (l = e.find[k]) if (d = l(j.matches[0].replace(V, ""), R.test(h[0].type) && b.parentNode || b, f)) {
  1298. h.splice(g, 1), a = d.length && h.join("");if (!a) return w.apply(c, x.call(d, 0)), c;break;
  1299. }
  1300. }
  1301. }return i(a, m)(d, b, f, c, R.test(a)), c;
  1302. }function bq() {}var c,
  1303. d,
  1304. e,
  1305. f,
  1306. g,
  1307. h,
  1308. i,
  1309. j,
  1310. k,
  1311. l,
  1312. m = !0,
  1313. n = "undefined",
  1314. o = ("sizcache" + Math.random()).replace(".", ""),
  1315. q = String,
  1316. r = a.document,
  1317. s = r.documentElement,
  1318. t = 0,
  1319. u = 0,
  1320. v = [].pop,
  1321. w = [].push,
  1322. x = [].slice,
  1323. y = [].indexOf || function (a) {
  1324. var b = 0,
  1325. c = this.length;for (; b < c; b++) {
  1326. if (this[b] === a) return b;
  1327. }return -1;
  1328. },
  1329. z = function z(a, b) {
  1330. return a[o] = b == null || b, a;
  1331. },
  1332. A = function A() {
  1333. var a = {},
  1334. b = [];return z(function (c, d) {
  1335. return b.push(c) > e.cacheLength && delete a[b.shift()], a[c] = d;
  1336. }, a);
  1337. },
  1338. B = A(),
  1339. C = A(),
  1340. D = A(),
  1341. E = "[\\x20\\t\\r\\n\\f]",
  1342. F = "(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",
  1343. G = F.replace("w", "w#"),
  1344. H = "([*^$|!~]?=)",
  1345. I = "\\[" + E + "*(" + F + ")" + E + "*(?:" + H + E + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + G + ")|)|)" + E + "*\\]",
  1346. J = ":(" + F + ")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:" + I + ")|[^:]|\\\\.)*|.*))\\)|)",
  1347. K = ":(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + E + "*((?:-\\d)?\\d*)" + E + "*\\)|)(?=[^-]|$)",
  1348. L = new RegExp("^" + E + "+|((?:^|[^\\\\])(?:\\\\.)*)" + E + "+$", "g"),
  1349. M = new RegExp("^" + E + "*," + E + "*"),
  1350. N = new RegExp("^" + E + "*([\\x20\\t\\r\\n\\f>+~])" + E + "*"),
  1351. O = new RegExp(J),
  1352. P = /^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,
  1353. Q = /^:not/,
  1354. R = /[\x20\t\r\n\f]*[+~]/,
  1355. S = /:not\($/,
  1356. T = /h\d/i,
  1357. U = /input|select|textarea|button/i,
  1358. V = /\\(?!\\)/g,
  1359. W = { ID: new RegExp("^#(" + F + ")"), CLASS: new RegExp("^\\.(" + F + ")"), NAME: new RegExp("^\\[name=['\"]?(" + F + ")['\"]?\\]"), TAG: new RegExp("^(" + F.replace("w", "w*") + ")"), ATTR: new RegExp("^" + I), PSEUDO: new RegExp("^" + J), POS: new RegExp(K, "i"), CHILD: new RegExp("^:(only|nth|first|last)-child(?:\\(" + E + "*(even|odd|(([+-]|)(\\d*)n|)" + E + "*(?:([+-]|)" + E + "*(\\d+)|))" + E + "*\\)|)", "i"), needsContext: new RegExp("^" + E + "*[>+~]|" + K, "i") },
  1360. X = function X(a) {
  1361. var b = r.createElement("div");try {
  1362. return a(b);
  1363. } catch (c) {
  1364. return !1;
  1365. } finally {
  1366. b = null;
  1367. }
  1368. },
  1369. Y = X(function (a) {
  1370. return a.appendChild(r.createComment("")), !a.getElementsByTagName("*").length;
  1371. }),
  1372. Z = X(function (a) {
  1373. return a.innerHTML = "<a href='#'></a>", a.firstChild && _typeof(a.firstChild.getAttribute) !== n && a.firstChild.getAttribute("href") === "#";
  1374. }),
  1375. $ = X(function (a) {
  1376. a.innerHTML = "<select></select>";var b = _typeof(a.lastChild.getAttribute("multiple"));return b !== "boolean" && b !== "string";
  1377. }),
  1378. _ = X(function (a) {
  1379. return a.innerHTML = "<div class='hidden e'></div><div class='hidden'></div>", !a.getElementsByClassName || !a.getElementsByClassName("e").length ? !1 : (a.lastChild.className = "e", a.getElementsByClassName("e").length === 2);
  1380. }),
  1381. ba = X(function (a) {
  1382. a.id = o + 0, a.innerHTML = "<a name='" + o + "'></a><div name='" + o + "'></div>", s.insertBefore(a, s.firstChild);var b = r.getElementsByName && r.getElementsByName(o).length === 2 + r.getElementsByName(o + 0).length;return d = !r.getElementById(o), s.removeChild(a), b;
  1383. });try {
  1384. x.call(s.childNodes, 0)[0].nodeType;
  1385. } catch (bb) {
  1386. x = function x(a) {
  1387. var b,
  1388. c = [];for (; b = this[a]; a++) {
  1389. c.push(b);
  1390. }return c;
  1391. };
  1392. }bc.matches = function (a, b) {
  1393. return bc(a, null, null, b);
  1394. }, bc.matchesSelector = function (a, b) {
  1395. return bc(b, null, null, [a]).length > 0;
  1396. }, f = bc.getText = function (a) {
  1397. var b,
  1398. c = "",
  1399. d = 0,
  1400. e = a.nodeType;if (e) {
  1401. if (e === 1 || e === 9 || e === 11) {
  1402. if (typeof a.textContent == "string") return a.textContent;for (a = a.firstChild; a; a = a.nextSibling) {
  1403. c += f(a);
  1404. }
  1405. } else if (e === 3 || e === 4) return a.nodeValue;
  1406. } else for (; b = a[d]; d++) {
  1407. c += f(b);
  1408. }return c;
  1409. }, g = bc.isXML = function (a) {
  1410. var b = a && (a.ownerDocument || a).documentElement;return b ? b.nodeName !== "HTML" : !1;
  1411. }, h = bc.contains = s.contains ? function (a, b) {
  1412. var c = a.nodeType === 9 ? a.documentElement : a,
  1413. d = b && b.parentNode;return a === d || !!(d && d.nodeType === 1 && c.contains && c.contains(d));
  1414. } : s.compareDocumentPosition ? function (a, b) {
  1415. return b && !!(a.compareDocumentPosition(b) & 16);
  1416. } : function (a, b) {
  1417. while (b = b.parentNode) {
  1418. if (b === a) return !0;
  1419. }return !1;
  1420. }, bc.attr = function (a, b) {
  1421. var c,
  1422. d = g(a);return d || (b = b.toLowerCase()), (c = e.attrHandle[b]) ? c(a) : d || $ ? a.getAttribute(b) : (c = a.getAttributeNode(b), c ? typeof a[b] == "boolean" ? a[b] ? b : null : c.specified ? c.value : null : null);
  1423. }, e = bc.selectors = { cacheLength: 50, createPseudo: z, match: W, attrHandle: Z ? {} : { href: function href(a) {
  1424. return a.getAttribute("href", 2);
  1425. }, type: function type(a) {
  1426. return a.getAttribute("type");
  1427. } }, find: { ID: d ? function (a, b, c) {
  1428. if (_typeof(b.getElementById) !== n && !c) {
  1429. var d = b.getElementById(a);return d && d.parentNode ? [d] : [];
  1430. }
  1431. } : function (a, c, d) {
  1432. if (_typeof(c.getElementById) !== n && !d) {
  1433. var e = c.getElementById(a);return e ? e.id === a || _typeof(e.getAttributeNode) !== n && e.getAttributeNode("id").value === a ? [e] : b : [];
  1434. }
  1435. }, TAG: Y ? function (a, b) {
  1436. if (_typeof(b.getElementsByTagName) !== n) return b.getElementsByTagName(a);
  1437. } : function (a, b) {
  1438. var c = b.getElementsByTagName(a);if (a === "*") {
  1439. var d,
  1440. e = [],
  1441. f = 0;for (; d = c[f]; f++) {
  1442. d.nodeType === 1 && e.push(d);
  1443. }return e;
  1444. }return c;
  1445. }, NAME: ba && function (a, b) {
  1446. if (_typeof(b.getElementsByName) !== n) return b.getElementsByName(name);
  1447. }, CLASS: _ && function (a, b, c) {
  1448. if (_typeof(b.getElementsByClassName) !== n && !c) return b.getElementsByClassName(a);
  1449. } }, relative: { ">": { dir: "parentNode", first: !0 }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: !0 }, "~": { dir: "previousSibling" } }, preFilter: { ATTR: function ATTR(a) {
  1450. return a[1] = a[1].replace(V, ""), a[3] = (a[4] || a[5] || "").replace(V, ""), a[2] === "~=" && (a[3] = " " + a[3] + " "), a.slice(0, 4);
  1451. }, CHILD: function CHILD(a) {
  1452. return a[1] = a[1].toLowerCase(), a[1] === "nth" ? (a[2] || bc.error(a[0]), a[3] = +(a[3] ? a[4] + (a[5] || 1) : 2 * (a[2] === "even" || a[2] === "odd")), a[4] = +(a[6] + a[7] || a[2] === "odd")) : a[2] && bc.error(a[0]), a;
  1453. }, PSEUDO: function PSEUDO(a) {
  1454. var b, c;if (W.CHILD.test(a[0])) return null;if (a[3]) a[2] = a[3];else if (b = a[4]) O.test(b) && (c = bh(b, !0)) && (c = b.indexOf(")", b.length - c) - b.length) && (b = b.slice(0, c), a[0] = a[0].slice(0, c)), a[2] = b;return a.slice(0, 3);
  1455. } }, filter: { ID: d ? function (a) {
  1456. return a = a.replace(V, ""), function (b) {
  1457. return b.getAttribute("id") === a;
  1458. };
  1459. } : function (a) {
  1460. return a = a.replace(V, ""), function (b) {
  1461. var c = _typeof(b.getAttributeNode) !== n && b.getAttributeNode("id");return c && c.value === a;
  1462. };
  1463. }, TAG: function TAG(a) {
  1464. return a === "*" ? function () {
  1465. return !0;
  1466. } : (a = a.replace(V, "").toLowerCase(), function (b) {
  1467. return b.nodeName && b.nodeName.toLowerCase() === a;
  1468. });
  1469. }, CLASS: function CLASS(a) {
  1470. var b = B[o][a];return b || (b = B(a, new RegExp("(^|" + E + ")" + a + "(" + E + "|$)"))), function (a) {
  1471. return b.test(a.className || _typeof(a.getAttribute) !== n && a.getAttribute("class") || "");
  1472. };
  1473. }, ATTR: function ATTR(a, b, c) {
  1474. return function (d, e) {
  1475. var f = bc.attr(d, a);return f == null ? b === "!=" : b ? (f += "", b === "=" ? f === c : b === "!=" ? f !== c : b === "^=" ? c && f.indexOf(c) === 0 : b === "*=" ? c && f.indexOf(c) > -1 : b === "$=" ? c && f.substr(f.length - c.length) === c : b === "~=" ? (" " + f + " ").indexOf(c) > -1 : b === "|=" ? f === c || f.substr(0, c.length + 1) === c + "-" : !1) : !0;
  1476. };
  1477. }, CHILD: function CHILD(a, b, c, d) {
  1478. return a === "nth" ? function (a) {
  1479. var b,
  1480. e,
  1481. f = a.parentNode;if (c === 1 && d === 0) return !0;if (f) {
  1482. e = 0;for (b = f.firstChild; b; b = b.nextSibling) {
  1483. if (b.nodeType === 1) {
  1484. e++;if (a === b) break;
  1485. }
  1486. }
  1487. }return e -= d, e === c || e % c === 0 && e / c >= 0;
  1488. } : function (b) {
  1489. var c = b;switch (a) {case "only":case "first":
  1490. while (c = c.previousSibling) {
  1491. if (c.nodeType === 1) return !1;
  1492. }if (a === "first") return !0;c = b;case "last":
  1493. while (c = c.nextSibling) {
  1494. if (c.nodeType === 1) return !1;
  1495. }return !0;}
  1496. };
  1497. }, PSEUDO: function PSEUDO(a, b) {
  1498. var c,
  1499. d = e.pseudos[a] || e.setFilters[a.toLowerCase()] || bc.error("unsupported pseudo: " + a);return d[o] ? d(b) : d.length > 1 ? (c = [a, a, "", b], e.setFilters.hasOwnProperty(a.toLowerCase()) ? z(function (a, c) {
  1500. var e,
  1501. f = d(a, b),
  1502. g = f.length;while (g--) {
  1503. e = y.call(a, f[g]), a[e] = !(c[e] = f[g]);
  1504. }
  1505. }) : function (a) {
  1506. return d(a, 0, c);
  1507. }) : d;
  1508. } }, pseudos: { not: z(function (a) {
  1509. var b = [],
  1510. c = [],
  1511. d = i(a.replace(L, "$1"));return d[o] ? z(function (a, b, c, e) {
  1512. var f,
  1513. g = d(a, null, e, []),
  1514. h = a.length;while (h--) {
  1515. if (f = g[h]) a[h] = !(b[h] = f);
  1516. }
  1517. }) : function (a, e, f) {
  1518. return b[0] = a, d(b, null, f, c), !c.pop();
  1519. };
  1520. }), has: z(function (a) {
  1521. return function (b) {
  1522. return bc(a, b).length > 0;
  1523. };
  1524. }), contains: z(function (a) {
  1525. return function (b) {
  1526. return (b.textContent || b.innerText || f(b)).indexOf(a) > -1;
  1527. };
  1528. }), enabled: function enabled(a) {
  1529. return a.disabled === !1;
  1530. }, disabled: function disabled(a) {
  1531. return a.disabled === !0;
  1532. }, checked: function checked(a) {
  1533. var b = a.nodeName.toLowerCase();return b === "input" && !!a.checked || b === "option" && !!a.selected;
  1534. }, selected: function selected(a) {
  1535. return a.parentNode && a.parentNode.selectedIndex, a.selected === !0;
  1536. }, parent: function parent(a) {
  1537. return !e.pseudos.empty(a);
  1538. }, empty: function empty(a) {
  1539. var b;a = a.firstChild;while (a) {
  1540. if (a.nodeName > "@" || (b = a.nodeType) === 3 || b === 4) return !1;a = a.nextSibling;
  1541. }return !0;
  1542. }, header: function header(a) {
  1543. return T.test(a.nodeName);
  1544. }, text: function text(a) {
  1545. var b, c;return a.nodeName.toLowerCase() === "input" && (b = a.type) === "text" && ((c = a.getAttribute("type")) == null || c.toLowerCase() === b);
  1546. }, radio: bd("radio"), checkbox: bd("checkbox"), file: bd("file"), password: bd("password"), image: bd("image"), submit: be("submit"), reset: be("reset"), button: function button(a) {
  1547. var b = a.nodeName.toLowerCase();return b === "input" && a.type === "button" || b === "button";
  1548. }, input: function input(a) {
  1549. return U.test(a.nodeName);
  1550. }, focus: function focus(a) {
  1551. var b = a.ownerDocument;return a === b.activeElement && (!b.hasFocus || b.hasFocus()) && (!!a.type || !!a.href);
  1552. }, active: function active(a) {
  1553. return a === a.ownerDocument.activeElement;
  1554. }, first: bf(function (a, b, c) {
  1555. return [0];
  1556. }), last: bf(function (a, b, c) {
  1557. return [b - 1];
  1558. }), eq: bf(function (a, b, c) {
  1559. return [c < 0 ? c + b : c];
  1560. }), even: bf(function (a, b, c) {
  1561. for (var d = 0; d < b; d += 2) {
  1562. a.push(d);
  1563. }return a;
  1564. }), odd: bf(function (a, b, c) {
  1565. for (var d = 1; d < b; d += 2) {
  1566. a.push(d);
  1567. }return a;
  1568. }), lt: bf(function (a, b, c) {
  1569. for (var d = c < 0 ? c + b : c; --d >= 0;) {
  1570. a.push(d);
  1571. }return a;
  1572. }), gt: bf(function (a, b, c) {
  1573. for (var d = c < 0 ? c + b : c; ++d < b;) {
  1574. a.push(d);
  1575. }return a;
  1576. }) } }, j = s.compareDocumentPosition ? function (a, b) {
  1577. return a === b ? (k = !0, 0) : (!a.compareDocumentPosition || !b.compareDocumentPosition ? a.compareDocumentPosition : a.compareDocumentPosition(b) & 4) ? -1 : 1;
  1578. } : function (a, b) {
  1579. if (a === b) return k = !0, 0;if (a.sourceIndex && b.sourceIndex) return a.sourceIndex - b.sourceIndex;var c,
  1580. d,
  1581. e = [],
  1582. f = [],
  1583. g = a.parentNode,
  1584. h = b.parentNode,
  1585. i = g;if (g === h) return bg(a, b);if (!g) return -1;if (!h) return 1;while (i) {
  1586. e.unshift(i), i = i.parentNode;
  1587. }i = h;while (i) {
  1588. f.unshift(i), i = i.parentNode;
  1589. }c = e.length, d = f.length;for (var j = 0; j < c && j < d; j++) {
  1590. if (e[j] !== f[j]) return bg(e[j], f[j]);
  1591. }return j === c ? bg(a, f[j], -1) : bg(e[j], b, 1);
  1592. }, [0, 0].sort(j), m = !k, bc.uniqueSort = function (a) {
  1593. var b,
  1594. c = 1;k = m, a.sort(j);if (k) for (; b = a[c]; c++) {
  1595. b === a[c - 1] && a.splice(c--, 1);
  1596. }return a;
  1597. }, bc.error = function (a) {
  1598. throw new Error("Syntax error, unrecognized expression: " + a);
  1599. }, i = bc.compile = function (a, b) {
  1600. var c,
  1601. d = [],
  1602. e = [],
  1603. f = D[o][a];if (!f) {
  1604. b || (b = bh(a)), c = b.length;while (c--) {
  1605. f = bm(b[c]), f[o] ? d.push(f) : e.push(f);
  1606. }f = D(a, bn(e, d));
  1607. }return f;
  1608. }, r.querySelectorAll && function () {
  1609. var a,
  1610. b = bp,
  1611. c = /'|\\/g,
  1612. d = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,
  1613. e = [":focus"],
  1614. f = [":active", ":focus"],
  1615. h = s.matchesSelector || s.mozMatchesSelector || s.webkitMatchesSelector || s.oMatchesSelector || s.msMatchesSelector;X(function (a) {
  1616. a.innerHTML = "<select><option selected=''></option></select>", a.querySelectorAll("[selected]").length || e.push("\\[" + E + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)"), a.querySelectorAll(":checked").length || e.push(":checked");
  1617. }), X(function (a) {
  1618. a.innerHTML = "<p test=''></p>", a.querySelectorAll("[test^='']").length && e.push("[*^$]=" + E + "*(?:\"\"|'')"), a.innerHTML = "<input type='hidden'/>", a.querySelectorAll(":enabled").length || e.push(":enabled", ":disabled");
  1619. }), e = new RegExp(e.join("|")), bp = function bp(a, d, f, g, h) {
  1620. if (!g && !h && (!e || !e.test(a))) {
  1621. var i,
  1622. j,
  1623. k = !0,
  1624. l = o,
  1625. m = d,
  1626. n = d.nodeType === 9 && a;if (d.nodeType === 1 && d.nodeName.toLowerCase() !== "object") {
  1627. i = bh(a), (k = d.getAttribute("id")) ? l = k.replace(c, "\\$&") : d.setAttribute("id", l), l = "[id='" + l + "'] ", j = i.length;while (j--) {
  1628. i[j] = l + i[j].join("");
  1629. }m = R.test(a) && d.parentNode || d, n = i.join(",");
  1630. }if (n) try {
  1631. return w.apply(f, x.call(m.querySelectorAll(n), 0)), f;
  1632. } catch (p) {} finally {
  1633. k || d.removeAttribute("id");
  1634. }
  1635. }return b(a, d, f, g, h);
  1636. }, h && (X(function (b) {
  1637. a = h.call(b, "div");try {
  1638. h.call(b, "[test!='']:sizzle"), f.push("!=", J);
  1639. } catch (c) {}
  1640. }), f = new RegExp(f.join("|")), bc.matchesSelector = function (b, c) {
  1641. c = c.replace(d, "='$1']");if (!g(b) && !f.test(c) && (!e || !e.test(c))) try {
  1642. var i = h.call(b, c);if (i || a || b.document && b.document.nodeType !== 11) return i;
  1643. } catch (j) {}return bc(c, null, null, [b]).length > 0;
  1644. });
  1645. }(), e.pseudos.nth = e.pseudos.eq, e.filters = bq.prototype = e.pseudos, e.setFilters = new bq(), bc.attr = p.attr, p.find = bc, p.expr = bc.selectors, p.expr[":"] = p.expr.pseudos, p.unique = bc.uniqueSort, p.text = bc.getText, p.isXMLDoc = bc.isXML, p.contains = bc.contains;
  1646. }(a);var bc = /Until$/,
  1647. bd = /^(?:parents|prev(?:Until|All))/,
  1648. be = /^.[^:#\[\.,]*$/,
  1649. bf = p.expr.match.needsContext,
  1650. bg = { children: !0, contents: !0, next: !0, prev: !0 };p.fn.extend({ find: function find(a) {
  1651. var b,
  1652. c,
  1653. d,
  1654. e,
  1655. f,
  1656. g,
  1657. h = this;if (typeof a != "string") return p(a).filter(function () {
  1658. for (b = 0, c = h.length; b < c; b++) {
  1659. if (p.contains(h[b], this)) return !0;
  1660. }
  1661. });g = this.pushStack("", "find", a);for (b = 0, c = this.length; b < c; b++) {
  1662. d = g.length, p.find(a, this[b], g);if (b > 0) for (e = d; e < g.length; e++) {
  1663. for (f = 0; f < d; f++) {
  1664. if (g[f] === g[e]) {
  1665. g.splice(e--, 1);break;
  1666. }
  1667. }
  1668. }
  1669. }return g;
  1670. }, has: function has(a) {
  1671. var b,
  1672. c = p(a, this),
  1673. d = c.length;return this.filter(function () {
  1674. for (b = 0; b < d; b++) {
  1675. if (p.contains(this, c[b])) return !0;
  1676. }
  1677. });
  1678. }, not: function not(a) {
  1679. return this.pushStack(bj(this, a, !1), "not", a);
  1680. }, filter: function filter(a) {
  1681. return this.pushStack(bj(this, a, !0), "filter", a);
  1682. }, is: function is(a) {
  1683. return !!a && (typeof a == "string" ? bf.test(a) ? p(a, this.context).index(this[0]) >= 0 : p.filter(a, this).length > 0 : this.filter(a).length > 0);
  1684. }, closest: function closest(a, b) {
  1685. var c,
  1686. d = 0,
  1687. e = this.length,
  1688. f = [],
  1689. g = bf.test(a) || typeof a != "string" ? p(a, b || this.context) : 0;for (; d < e; d++) {
  1690. c = this[d];while (c && c.ownerDocument && c !== b && c.nodeType !== 11) {
  1691. if (g ? g.index(c) > -1 : p.find.matchesSelector(c, a)) {
  1692. f.push(c);break;
  1693. }c = c.parentNode;
  1694. }
  1695. }return f = f.length > 1 ? p.unique(f) : f, this.pushStack(f, "closest", a);
  1696. }, index: function index(a) {
  1697. return a ? typeof a == "string" ? p.inArray(this[0], p(a)) : p.inArray(a.jquery ? a[0] : a, this) : this[0] && this[0].parentNode ? this.prevAll().length : -1;
  1698. }, add: function add(a, b) {
  1699. var c = typeof a == "string" ? p(a, b) : p.makeArray(a && a.nodeType ? [a] : a),
  1700. d = p.merge(this.get(), c);return this.pushStack(bh(c[0]) || bh(d[0]) ? d : p.unique(d));
  1701. }, addBack: function addBack(a) {
  1702. return this.add(a == null ? this.prevObject : this.prevObject.filter(a));
  1703. } }), p.fn.andSelf = p.fn.addBack, p.each({ parent: function parent(a) {
  1704. var b = a.parentNode;return b && b.nodeType !== 11 ? b : null;
  1705. }, parents: function parents(a) {
  1706. return p.dir(a, "parentNode");
  1707. }, parentsUntil: function parentsUntil(a, b, c) {
  1708. return p.dir(a, "parentNode", c);
  1709. }, next: function next(a) {
  1710. return bi(a, "nextSibling");
  1711. }, prev: function prev(a) {
  1712. return bi(a, "previousSibling");
  1713. }, nextAll: function nextAll(a) {
  1714. return p.dir(a, "nextSibling");
  1715. }, prevAll: function prevAll(a) {
  1716. return p.dir(a, "previousSibling");
  1717. }, nextUntil: function nextUntil(a, b, c) {
  1718. return p.dir(a, "nextSibling", c);
  1719. }, prevUntil: function prevUntil(a, b, c) {
  1720. return p.dir(a, "previousSibling", c);
  1721. }, siblings: function siblings(a) {
  1722. return p.sibling((a.parentNode || {}).firstChild, a);
  1723. }, children: function children(a) {
  1724. return p.sibling(a.firstChild);
  1725. }, contents: function contents(a) {
  1726. return p.nodeName(a, "iframe") ? a.contentDocument || a.contentWindow.document : p.merge([], a.childNodes);
  1727. } }, function (a, b) {
  1728. p.fn[a] = function (c, d) {
  1729. var e = p.map(this, b, c);return bc.test(a) || (d = c), d && typeof d == "string" && (e = p.filter(d, e)), e = this.length > 1 && !bg[a] ? p.unique(e) : e, this.length > 1 && bd.test(a) && (e = e.reverse()), this.pushStack(e, a, k.call(arguments).join(","));
  1730. };
  1731. }), p.extend({ filter: function filter(a, b, c) {
  1732. return c && (a = ":not(" + a + ")"), b.length === 1 ? p.find.matchesSelector(b[0], a) ? [b[0]] : [] : p.find.matches(a, b);
  1733. }, dir: function dir(a, c, d) {
  1734. var e = [],
  1735. f = a[c];while (f && f.nodeType !== 9 && (d === b || f.nodeType !== 1 || !p(f).is(d))) {
  1736. f.nodeType === 1 && e.push(f), f = f[c];
  1737. }return e;
  1738. }, sibling: function sibling(a, b) {
  1739. var c = [];for (; a; a = a.nextSibling) {
  1740. a.nodeType === 1 && a !== b && c.push(a);
  1741. }return c;
  1742. } });var bl = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
  1743. bm = / jQuery\d+="(?:null|\d+)"/g,
  1744. bn = /^\s+/,
  1745. bo = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
  1746. bp = /<([\w:]+)/,
  1747. bq = /<tbody/i,
  1748. br = /<|&#?\w+;/,
  1749. bs = /<(?:script|style|link)/i,
  1750. bt = /<(?:script|object|embed|option|style)/i,
  1751. bu = new RegExp("<(?:" + bl + ")[\\s/>]", "i"),
  1752. bv = /^(?:checkbox|radio)$/,
  1753. bw = /checked\s*(?:[^=]|=\s*.checked.)/i,
  1754. bx = /\/(java|ecma)script/i,
  1755. by = /^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,
  1756. bz = { option: [1, "<select multiple='multiple'>", "</select>"], legend: [1, "<fieldset>", "</fieldset>"], thead: [1, "<table>", "</table>"], tr: [2, "<table><tbody>", "</tbody></table>"], td: [3, "<table><tbody><tr>", "</tr></tbody></table>"], col: [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"], area: [1, "<map>", "</map>"], _default: [0, "", ""] },
  1757. bA = bk(e),
  1758. bB = bA.appendChild(e.createElement("div"));bz.optgroup = bz.option, bz.tbody = bz.tfoot = bz.colgroup = bz.caption = bz.thead, bz.th = bz.td, p.support.htmlSerialize || (bz._default = [1, "X<div>", "</div>"]), p.fn.extend({ text: function text(a) {
  1759. return p.access(this, function (a) {
  1760. return a === b ? p.text(this) : this.empty().append((this[0] && this[0].ownerDocument || e).createTextNode(a));
  1761. }, null, a, arguments.length);
  1762. }, wrapAll: function wrapAll(a) {
  1763. if (p.isFunction(a)) return this.each(function (b) {
  1764. p(this).wrapAll(a.call(this, b));
  1765. });if (this[0]) {
  1766. var b = p(a, this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode && b.insertBefore(this[0]), b.map(function () {
  1767. var a = this;while (a.firstChild && a.firstChild.nodeType === 1) {
  1768. a = a.firstChild;
  1769. }return a;
  1770. }).append(this);
  1771. }return this;
  1772. }, wrapInner: function wrapInner(a) {
  1773. return p.isFunction(a) ? this.each(function (b) {
  1774. p(this).wrapInner(a.call(this, b));
  1775. }) : this.each(function () {
  1776. var b = p(this),
  1777. c = b.contents();c.length ? c.wrapAll(a) : b.append(a);
  1778. });
  1779. }, wrap: function wrap(a) {
  1780. var b = p.isFunction(a);return this.each(function (c) {
  1781. p(this).wrapAll(b ? a.call(this, c) : a);
  1782. });
  1783. }, unwrap: function unwrap() {
  1784. return this.parent().each(function () {
  1785. p.nodeName(this, "body") || p(this).replaceWith(this.childNodes);
  1786. }).end();
  1787. }, append: function append() {
  1788. return this.domManip(arguments, !0, function (a) {
  1789. (this.nodeType === 1 || this.nodeType === 11) && this.appendChild(a);
  1790. });
  1791. }, prepend: function prepend() {
  1792. return this.domManip(arguments, !0, function (a) {
  1793. (this.nodeType === 1 || this.nodeType === 11) && this.insertBefore(a, this.firstChild);
  1794. });
  1795. }, before: function before() {
  1796. if (!bh(this[0])) return this.domManip(arguments, !1, function (a) {
  1797. this.parentNode.insertBefore(a, this);
  1798. });if (arguments.length) {
  1799. var a = p.clean(arguments);return this.pushStack(p.merge(a, this), "before", this.selector);
  1800. }
  1801. }, after: function after() {
  1802. if (!bh(this[0])) return this.domManip(arguments, !1, function (a) {
  1803. this.parentNode.insertBefore(a, this.nextSibling);
  1804. });if (arguments.length) {
  1805. var a = p.clean(arguments);return this.pushStack(p.merge(this, a), "after", this.selector);
  1806. }
  1807. }, remove: function remove(a, b) {
  1808. var c,
  1809. d = 0;for (; (c = this[d]) != null; d++) {
  1810. if (!a || p.filter(a, [c]).length) !b && c.nodeType === 1 && (p.cleanData(c.getElementsByTagName("*")), p.cleanData([c])), c.parentNode && c.parentNode.removeChild(c);
  1811. }return this;
  1812. }, empty: function empty() {
  1813. var a,
  1814. b = 0;for (; (a = this[b]) != null; b++) {
  1815. a.nodeType === 1 && p.cleanData(a.getElementsByTagName("*"));while (a.firstChild) {
  1816. a.removeChild(a.firstChild);
  1817. }
  1818. }return this;
  1819. }, clone: function clone(a, b) {
  1820. return a = a == null ? !1 : a, b = b == null ? a : b, this.map(function () {
  1821. return p.clone(this, a, b);
  1822. });
  1823. }, html: function html(a) {
  1824. return p.access(this, function (a) {
  1825. var c = this[0] || {},
  1826. d = 0,
  1827. e = this.length;if (a === b) return c.nodeType === 1 ? c.innerHTML.replace(bm, "") : b;if (typeof a == "string" && !bs.test(a) && (p.support.htmlSerialize || !bu.test(a)) && (p.support.leadingWhitespace || !bn.test(a)) && !bz[(bp.exec(a) || ["", ""])[1].toLowerCase()]) {
  1828. a = a.replace(bo, "<$1></$2>");try {
  1829. for (; d < e; d++) {
  1830. c = this[d] || {}, c.nodeType === 1 && (p.cleanData(c.getElementsByTagName("*")), c.innerHTML = a);
  1831. }c = 0;
  1832. } catch (f) {}
  1833. }c && this.empty().append(a);
  1834. }, null, a, arguments.length);
  1835. }, replaceWith: function replaceWith(a) {
  1836. return bh(this[0]) ? this.length ? this.pushStack(p(p.isFunction(a) ? a() : a), "replaceWith", a) : this : p.isFunction(a) ? this.each(function (b) {
  1837. var c = p(this),
  1838. d = c.html();c.replaceWith(a.call(this, b, d));
  1839. }) : (typeof a != "string" && (a = p(a).detach()), this.each(function () {
  1840. var b = this.nextSibling,
  1841. c = this.parentNode;p(this).remove(), b ? p(b).before(a) : p(c).append(a);
  1842. }));
  1843. }, detach: function detach(a) {
  1844. return this.remove(a, !0);
  1845. }, domManip: function domManip(a, c, d) {
  1846. a = [].concat.apply([], a);var e,
  1847. f,
  1848. g,
  1849. h,
  1850. i = 0,
  1851. j = a[0],
  1852. k = [],
  1853. l = this.length;if (!p.support.checkClone && l > 1 && typeof j == "string" && bw.test(j)) return this.each(function () {
  1854. p(this).domManip(a, c, d);
  1855. });if (p.isFunction(j)) return this.each(function (e) {
  1856. var f = p(this);a[0] = j.call(this, e, c ? f.html() : b), f.domManip(a, c, d);
  1857. });if (this[0]) {
  1858. e = p.buildFragment(a, this, k), g = e.fragment, f = g.firstChild, g.childNodes.length === 1 && (g = f);if (f) {
  1859. c = c && p.nodeName(f, "tr");for (h = e.cacheable || l - 1; i < l; i++) {
  1860. d.call(c && p.nodeName(this[i], "table") ? bC(this[i], "tbody") : this[i], i === h ? g : p.clone(g, !0, !0));
  1861. }
  1862. }g = f = null, k.length && p.each(k, function (a, b) {
  1863. b.src ? p.ajax ? p.ajax({ url: b.src, type: "GET", dataType: "script", async: !1, global: !1, "throws": !0 }) : p.error("no ajax") : p.globalEval((b.text || b.textContent || b.innerHTML || "").replace(by, "")), b.parentNode && b.parentNode.removeChild(b);
  1864. });
  1865. }return this;
  1866. } }), p.buildFragment = function (a, c, d) {
  1867. var f,
  1868. g,
  1869. h,
  1870. i = a[0];return c = c || e, c = !c.nodeType && c[0] || c, c = c.ownerDocument || c, a.length === 1 && typeof i == "string" && i.length < 512 && c === e && i.charAt(0) === "<" && !bt.test(i) && (p.support.checkClone || !bw.test(i)) && (p.support.html5Clone || !bu.test(i)) && (g = !0, f = p.fragments[i], h = f !== b), f || (f = c.createDocumentFragment(), p.clean(a, c, f, d), g && (p.fragments[i] = h && f)), { fragment: f, cacheable: g };
  1871. }, p.fragments = {}, p.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function (a, b) {
  1872. p.fn[a] = function (c) {
  1873. var d,
  1874. e = 0,
  1875. f = [],
  1876. g = p(c),
  1877. h = g.length,
  1878. i = this.length === 1 && this[0].parentNode;if ((i == null || i && i.nodeType === 11 && i.childNodes.length === 1) && h === 1) return g[b](this[0]), this;for (; e < h; e++) {
  1879. d = (e > 0 ? this.clone(!0) : this).get(), p(g[e])[b](d), f = f.concat(d);
  1880. }return this.pushStack(f, a, g.selector);
  1881. };
  1882. }), p.extend({ clone: function clone(a, b, c) {
  1883. var d, e, f, g;p.support.html5Clone || p.isXMLDoc(a) || !bu.test("<" + a.nodeName + ">") ? g = a.cloneNode(!0) : (bB.innerHTML = a.outerHTML, bB.removeChild(g = bB.firstChild));if ((!p.support.noCloneEvent || !p.support.noCloneChecked) && (a.nodeType === 1 || a.nodeType === 11) && !p.isXMLDoc(a)) {
  1884. bE(a, g), d = bF(a), e = bF(g);for (f = 0; d[f]; ++f) {
  1885. e[f] && bE(d[f], e[f]);
  1886. }
  1887. }if (b) {
  1888. bD(a, g);if (c) {
  1889. d = bF(a), e = bF(g);for (f = 0; d[f]; ++f) {
  1890. bD(d[f], e[f]);
  1891. }
  1892. }
  1893. }return d = e = null, g;
  1894. }, clean: function clean(a, b, c, d) {
  1895. var f,
  1896. g,
  1897. h,
  1898. i,
  1899. j,
  1900. k,
  1901. l,
  1902. m,
  1903. n,
  1904. o,
  1905. q,
  1906. r,
  1907. s = b === e && bA,
  1908. t = [];if (!b || typeof b.createDocumentFragment == "undefined") b = e;for (f = 0; (h = a[f]) != null; f++) {
  1909. typeof h == "number" && (h += "");if (!h) continue;if (typeof h == "string") if (!br.test(h)) h = b.createTextNode(h);else {
  1910. s = s || bk(b), l = b.createElement("div"), s.appendChild(l), h = h.replace(bo, "<$1></$2>"), i = (bp.exec(h) || ["", ""])[1].toLowerCase(), j = bz[i] || bz._default, k = j[0], l.innerHTML = j[1] + h + j[2];while (k--) {
  1911. l = l.lastChild;
  1912. }if (!p.support.tbody) {
  1913. m = bq.test(h), n = i === "table" && !m ? l.firstChild && l.firstChild.childNodes : j[1] === "<table>" && !m ? l.childNodes : [];for (g = n.length - 1; g >= 0; --g) {
  1914. p.nodeName(n[g], "tbody") && !n[g].childNodes.length && n[g].parentNode.removeChild(n[g]);
  1915. }
  1916. }!p.support.leadingWhitespace && bn.test(h) && l.insertBefore(b.createTextNode(bn.exec(h)[0]), l.firstChild), h = l.childNodes, l.parentNode.removeChild(l);
  1917. }h.nodeType ? t.push(h) : p.merge(t, h);
  1918. }l && (h = l = s = null);if (!p.support.appendChecked) for (f = 0; (h = t[f]) != null; f++) {
  1919. p.nodeName(h, "input") ? bG(h) : typeof h.getElementsByTagName != "undefined" && p.grep(h.getElementsByTagName("input"), bG);
  1920. }if (c) {
  1921. q = function q(a) {
  1922. if (!a.type || bx.test(a.type)) return d ? d.push(a.parentNode ? a.parentNode.removeChild(a) : a) : c.appendChild(a);
  1923. };for (f = 0; (h = t[f]) != null; f++) {
  1924. if (!p.nodeName(h, "script") || !q(h)) c.appendChild(h), typeof h.getElementsByTagName != "undefined" && (r = p.grep(p.merge([], h.getElementsByTagName("script")), q), t.splice.apply(t, [f + 1, 0].concat(r)), f += r.length);
  1925. }
  1926. }return t;
  1927. }, cleanData: function cleanData(a, b) {
  1928. var c,
  1929. d,
  1930. e,
  1931. f,
  1932. g = 0,
  1933. h = p.expando,
  1934. i = p.cache,
  1935. j = p.support.deleteExpando,
  1936. k = p.event.special;for (; (e = a[g]) != null; g++) {
  1937. if (b || p.acceptData(e)) {
  1938. d = e[h], c = d && i[d];if (c) {
  1939. if (c.events) for (f in c.events) {
  1940. k[f] ? p.event.remove(e, f) : p.removeEvent(e, f, c.handle);
  1941. }i[d] && (delete i[d], j ? delete e[h] : e.removeAttribute ? e.removeAttribute(h) : e[h] = null, p.deletedIds.push(d));
  1942. }
  1943. }
  1944. }
  1945. } }), function () {
  1946. var a, b;p.uaMatch = function (a) {
  1947. a = a.toLowerCase();var b = /(chrome)[ \/]([\w.]+)/.exec(a) || /(webkit)[ \/]([\w.]+)/.exec(a) || /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a) || /(msie) ([\w.]+)/.exec(a) || a.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a) || [];return { browser: b[1] || "", version: b[2] || "0" };
  1948. }, a = p.uaMatch(g.userAgent), b = {}, a.browser && (b[a.browser] = !0, b.version = a.version), b.chrome ? b.webkit = !0 : b.webkit && (b.safari = !0), p.browser = b, p.sub = function () {
  1949. function a(b, c) {
  1950. return new a.fn.init(b, c);
  1951. }p.extend(!0, a, this), a.superclass = this, a.fn = a.prototype = this(), a.fn.constructor = a, a.sub = this.sub, a.fn.init = function c(c, d) {
  1952. return d && d instanceof p && !(d instanceof a) && (d = a(d)), p.fn.init.call(this, c, d, b);
  1953. }, a.fn.init.prototype = a.fn;var b = a(e);return a;
  1954. };
  1955. }();var bH,
  1956. bI,
  1957. bJ,
  1958. bK = /alpha\([^)]*\)/i,
  1959. bL = /opacity=([^)]*)/,
  1960. bM = /^(top|right|bottom|left)$/,
  1961. bN = /^(none|table(?!-c[ea]).+)/,
  1962. bO = /^margin/,
  1963. bP = new RegExp("^(" + q + ")(.*)$", "i"),
  1964. bQ = new RegExp("^(" + q + ")(?!px)[a-z%]+$", "i"),
  1965. bR = new RegExp("^([-+])=(" + q + ")", "i"),
  1966. bS = {},
  1967. bT = { position: "absolute", visibility: "hidden", display: "block" },
  1968. bU = { letterSpacing: 0, fontWeight: 400 },
  1969. bV = ["Top", "Right", "Bottom", "Left"],
  1970. bW = ["Webkit", "O", "Moz", "ms"],
  1971. bX = p.fn.toggle;p.fn.extend({ css: function css(a, c) {
  1972. return p.access(this, function (a, c, d) {
  1973. return d !== b ? p.style(a, c, d) : p.css(a, c);
  1974. }, a, c, arguments.length > 1);
  1975. }, show: function show() {
  1976. return b$(this, !0);
  1977. }, hide: function hide() {
  1978. return b$(this);
  1979. }, toggle: function toggle(a, b) {
  1980. var c = typeof a == "boolean";return p.isFunction(a) && p.isFunction(b) ? bX.apply(this, arguments) : this.each(function () {
  1981. (c ? a : bZ(this)) ? p(this).show() : p(this).hide();
  1982. });
  1983. } }), p.extend({ cssHooks: { opacity: { get: function get(a, b) {
  1984. if (b) {
  1985. var c = bH(a, "opacity");return c === "" ? "1" : c;
  1986. }
  1987. } } }, cssNumber: { fillOpacity: !0, fontWeight: !0, lineHeight: !0, opacity: !0, orphans: !0, widows: !0, zIndex: !0, zoom: !0 }, cssProps: { "float": p.support.cssFloat ? "cssFloat" : "styleFloat" }, style: function style(a, c, d, e) {
  1988. if (!a || a.nodeType === 3 || a.nodeType === 8 || !a.style) return;var f,
  1989. g,
  1990. h,
  1991. i = p.camelCase(c),
  1992. j = a.style;c = p.cssProps[i] || (p.cssProps[i] = bY(j, i)), h = p.cssHooks[c] || p.cssHooks[i];if (d === b) return h && "get" in h && (f = h.get(a, !1, e)) !== b ? f : j[c];g = typeof d === "undefined" ? "undefined" : _typeof(d), g === "string" && (f = bR.exec(d)) && (d = (f[1] + 1) * f[2] + parseFloat(p.css(a, c)), g = "number");if (d == null || g === "number" && isNaN(d)) return;g === "number" && !p.cssNumber[i] && (d += "px");if (!h || !("set" in h) || (d = h.set(a, d, e)) !== b) try {
  1993. j[c] = d;
  1994. } catch (k) {}
  1995. }, css: function css(a, c, d, e) {
  1996. var f,
  1997. g,
  1998. h,
  1999. i = p.camelCase(c);return c = p.cssProps[i] || (p.cssProps[i] = bY(a.style, i)), h = p.cssHooks[c] || p.cssHooks[i], h && "get" in h && (f = h.get(a, !0, e)), f === b && (f = bH(a, c)), f === "normal" && c in bU && (f = bU[c]), d || e !== b ? (g = parseFloat(f), d || p.isNumeric(g) ? g || 0 : f) : f;
  2000. }, swap: function swap(a, b, c) {
  2001. var d,
  2002. e,
  2003. f = {};for (e in b) {
  2004. f[e] = a.style[e], a.style[e] = b[e];
  2005. }d = c.call(a);for (e in b) {
  2006. a.style[e] = f[e];
  2007. }return d;
  2008. } }), a.getComputedStyle ? bH = function bH(b, c) {
  2009. var d,
  2010. e,
  2011. f,
  2012. g,
  2013. h = a.getComputedStyle(b, null),
  2014. i = b.style;return h && (d = h[c], d === "" && !p.contains(b.ownerDocument, b) && (d = p.style(b, c)), bQ.test(d) && bO.test(c) && (e = i.width, f = i.minWidth, g = i.maxWidth, i.minWidth = i.maxWidth = i.width = d, d = h.width, i.width = e, i.minWidth = f, i.maxWidth = g)), d;
  2015. } : e.documentElement.currentStyle && (bH = function bH(a, b) {
  2016. var c,
  2017. d,
  2018. e = a.currentStyle && a.currentStyle[b],
  2019. f = a.style;return e == null && f && f[b] && (e = f[b]), bQ.test(e) && !bM.test(b) && (c = f.left, d = a.runtimeStyle && a.runtimeStyle.left, d && (a.runtimeStyle.left = a.currentStyle.left), f.left = b === "fontSize" ? "1em" : e, e = f.pixelLeft + "px", f.left = c, d && (a.runtimeStyle.left = d)), e === "" ? "auto" : e;
  2020. }), p.each(["height", "width"], function (a, b) {
  2021. p.cssHooks[b] = { get: function get(a, c, d) {
  2022. if (c) return a.offsetWidth === 0 && bN.test(bH(a, "display")) ? p.swap(a, bT, function () {
  2023. return cb(a, b, d);
  2024. }) : cb(a, b, d);
  2025. }, set: function set(a, c, d) {
  2026. return b_(a, c, d ? ca(a, b, d, p.support.boxSizing && p.css(a, "boxSizing") === "border-box") : 0);
  2027. } };
  2028. }), p.support.opacity || (p.cssHooks.opacity = { get: function get(a, b) {
  2029. return bL.test((b && a.currentStyle ? a.currentStyle.filter : a.style.filter) || "") ? .01 * parseFloat(RegExp.$1) + "" : b ? "1" : "";
  2030. }, set: function set(a, b) {
  2031. var c = a.style,
  2032. d = a.currentStyle,
  2033. e = p.isNumeric(b) ? "alpha(opacity=" + b * 100 + ")" : "",
  2034. f = d && d.filter || c.filter || "";c.zoom = 1;if (b >= 1 && p.trim(f.replace(bK, "")) === "" && c.removeAttribute) {
  2035. c.removeAttribute("filter");if (d && !d.filter) return;
  2036. }c.filter = bK.test(f) ? f.replace(bK, e) : f + " " + e;
  2037. } }), p(function () {
  2038. p.support.reliableMarginRight || (p.cssHooks.marginRight = { get: function get(a, b) {
  2039. return p.swap(a, { display: "inline-block" }, function () {
  2040. if (b) return bH(a, "marginRight");
  2041. });
  2042. } }), !p.support.pixelPosition && p.fn.position && p.each(["top", "left"], function (a, b) {
  2043. p.cssHooks[b] = { get: function get(a, c) {
  2044. if (c) {
  2045. var d = bH(a, b);return bQ.test(d) ? p(a).position()[b] + "px" : d;
  2046. }
  2047. } };
  2048. });
  2049. }), p.expr && p.expr.filters && (p.expr.filters.hidden = function (a) {
  2050. return a.offsetWidth === 0 && a.offsetHeight === 0 || !p.support.reliableHiddenOffsets && (a.style && a.style.display || bH(a, "display")) === "none";
  2051. }, p.expr.filters.visible = function (a) {
  2052. return !p.expr.filters.hidden(a);
  2053. }), p.each({ margin: "", padding: "", border: "Width" }, function (a, b) {
  2054. p.cssHooks[a + b] = { expand: function expand(c) {
  2055. var d,
  2056. e = typeof c == "string" ? c.split(" ") : [c],
  2057. f = {};for (d = 0; d < 4; d++) {
  2058. f[a + bV[d] + b] = e[d] || e[d - 2] || e[0];
  2059. }return f;
  2060. } }, bO.test(a) || (p.cssHooks[a + b].set = b_);
  2061. });var cd = /%20/g,
  2062. ce = /\[\]$/,
  2063. cf = /\r?\n/g,
  2064. cg = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
  2065. ch = /^(?:select|textarea)/i;p.fn.extend({ serialize: function serialize() {
  2066. return p.param(this.serializeArray());
  2067. }, serializeArray: function serializeArray() {
  2068. return this.map(function () {
  2069. return this.elements ? p.makeArray(this.elements) : this;
  2070. }).filter(function () {
  2071. return this.name && !this.disabled && (this.checked || ch.test(this.nodeName) || cg.test(this.type));
  2072. }).map(function (a, b) {
  2073. var c = p(this).val();return c == null ? null : p.isArray(c) ? p.map(c, function (a, c) {
  2074. return { name: b.name, value: a.replace(cf, "\r\n") };
  2075. }) : { name: b.name, value: c.replace(cf, "\r\n") };
  2076. }).get();
  2077. } }), p.param = function (a, c) {
  2078. var d,
  2079. e = [],
  2080. f = function f(a, b) {
  2081. b = p.isFunction(b) ? b() : b == null ? "" : b, e[e.length] = encodeURIComponent(a) + "=" + encodeURIComponent(b);
  2082. };c === b && (c = p.ajaxSettings && p.ajaxSettings.traditional);if (p.isArray(a) || a.jquery && !p.isPlainObject(a)) p.each(a, function () {
  2083. f(this.name, this.value);
  2084. });else for (d in a) {
  2085. ci(d, a[d], c, f);
  2086. }return e.join("&").replace(cd, "+");
  2087. };var cj,
  2088. ck,
  2089. cl = /#.*$/,
  2090. cm = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg,
  2091. cn = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,
  2092. co = /^(?:GET|HEAD)$/,
  2093. cp = /^\/\//,
  2094. cq = /\?/,
  2095. cr = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
  2096. cs = /([?&])_=[^&]*/,
  2097. ct = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,
  2098. cu = p.fn.load,
  2099. cv = {},
  2100. cw = {},
  2101. cx = ["*/"] + ["*"];try {
  2102. ck = f.href;
  2103. } catch (cy) {
  2104. ck = e.createElement("a"), ck.href = "", ck = ck.href;
  2105. }cj = ct.exec(ck.toLowerCase()) || [], p.fn.load = function (a, c, d) {
  2106. if (typeof a != "string" && cu) return cu.apply(this, arguments);if (!this.length) return this;var e,
  2107. f,
  2108. g,
  2109. h = this,
  2110. i = a.indexOf(" ");return i >= 0 && (e = a.slice(i, a.length), a = a.slice(0, i)), p.isFunction(c) ? (d = c, c = b) : c && (typeof c === "undefined" ? "undefined" : _typeof(c)) == "object" && (f = "POST"), p.ajax({ url: a, type: f, dataType: "html", data: c, complete: function complete(a, b) {
  2111. d && h.each(d, g || [a.responseText, b, a]);
  2112. } }).done(function (a) {
  2113. g = arguments, h.html(e ? p("<div>").append(a.replace(cr, "")).find(e) : a);
  2114. }), this;
  2115. }, p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function (a, b) {
  2116. p.fn[b] = function (a) {
  2117. return this.on(b, a);
  2118. };
  2119. }), p.each(["get", "post"], function (a, c) {
  2120. p[c] = function (a, d, e, f) {
  2121. return p.isFunction(d) && (f = f || e, e = d, d = b), p.ajax({ type: c, url: a, data: d, success: e, dataType: f });
  2122. };
  2123. }), p.extend({ getScript: function getScript(a, c) {
  2124. return p.get(a, b, c, "script");
  2125. }, getJSON: function getJSON(a, b, c) {
  2126. return p.get(a, b, c, "json");
  2127. }, ajaxSetup: function ajaxSetup(a, b) {
  2128. return b ? cB(a, p.ajaxSettings) : (b = a, a = p.ajaxSettings), cB(a, b), a;
  2129. }, ajaxSettings: { url: ck, isLocal: cn.test(cj[1]), global: !0, type: "GET", contentType: "application/x-www-form-urlencoded; charset=UTF-8", processData: !0, async: !0, accepts: { xml: "application/xml, text/xml", html: "text/html", text: "text/plain", json: "application/json, text/javascript", "*": cx }, contents: { xml: /xml/, html: /html/, json: /json/ }, responseFields: { xml: "responseXML", text: "responseText" }, converters: { "* text": a.String, "text html": !0, "text json": p.parseJSON, "text xml": p.parseXML }, flatOptions: { context: !0, url: !0 } }, ajaxPrefilter: cz(cv), ajaxTransport: cz(cw), ajax: function ajax(a, c) {
  2130. function y(a, c, f, i) {
  2131. var k,
  2132. s,
  2133. t,
  2134. u,
  2135. w,
  2136. y = c;if (v === 2) return;v = 2, h && clearTimeout(h), g = b, e = i || "", x.readyState = a > 0 ? 4 : 0, f && (u = cC(l, x, f));if (a >= 200 && a < 300 || a === 304) l.ifModified && (w = x.getResponseHeader("Last-Modified"), w && (p.lastModified[d] = w), w = x.getResponseHeader("Etag"), w && (p.etag[d] = w)), a === 304 ? (y = "notmodified", k = !0) : (k = cD(l, u), y = k.state, s = k.data, t = k.error, k = !t);else {
  2137. t = y;if (!y || a) y = "error", a < 0 && (a = 0);
  2138. }x.status = a, x.statusText = (c || y) + "", k ? o.resolveWith(m, [s, y, x]) : o.rejectWith(m, [x, y, t]), x.statusCode(r), r = b, j && n.trigger("ajax" + (k ? "Success" : "Error"), [x, l, k ? s : t]), q.fireWith(m, [x, y]), j && (n.trigger("ajaxComplete", [x, l]), --p.active || p.event.trigger("ajaxStop"));
  2139. }(typeof a === "undefined" ? "undefined" : _typeof(a)) == "object" && (c = a, a = b), c = c || {};var d,
  2140. e,
  2141. f,
  2142. g,
  2143. h,
  2144. i,
  2145. j,
  2146. k,
  2147. l = p.ajaxSetup({}, c),
  2148. m = l.context || l,
  2149. n = m !== l && (m.nodeType || m instanceof p) ? p(m) : p.event,
  2150. o = p.Deferred(),
  2151. q = p.Callbacks("once memory"),
  2152. r = l.statusCode || {},
  2153. t = {},
  2154. u = {},
  2155. v = 0,
  2156. w = "canceled",
  2157. x = { readyState: 0, setRequestHeader: function setRequestHeader(a, b) {
  2158. if (!v) {
  2159. var c = a.toLowerCase();a = u[c] = u[c] || a, t[a] = b;
  2160. }return this;
  2161. }, getAllResponseHeaders: function getAllResponseHeaders() {
  2162. return v === 2 ? e : null;
  2163. }, getResponseHeader: function getResponseHeader(a) {
  2164. var c;if (v === 2) {
  2165. if (!f) {
  2166. f = {};while (c = cm.exec(e)) {
  2167. f[c[1].toLowerCase()] = c[2];
  2168. }
  2169. }c = f[a.toLowerCase()];
  2170. }return c === b ? null : c;
  2171. }, overrideMimeType: function overrideMimeType(a) {
  2172. return v || (l.mimeType = a), this;
  2173. }, abort: function abort(a) {
  2174. return a = a || w, g && g.abort(a), y(0, a), this;
  2175. } };o.promise(x), x.success = x.done, x.error = x.fail, x.complete = q.add, x.statusCode = function (a) {
  2176. if (a) {
  2177. var b;if (v < 2) for (b in a) {
  2178. r[b] = [r[b], a[b]];
  2179. } else b = a[x.status], x.always(b);
  2180. }return this;
  2181. }, l.url = ((a || l.url) + "").replace(cl, "").replace(cp, cj[1] + "//"), l.dataTypes = p.trim(l.dataType || "*").toLowerCase().split(s), l.crossDomain == null && (i = ct.exec(l.url.toLowerCase()) || !1, l.crossDomain = i && i.join(":") + (i[3] ? "" : i[1] === "http:" ? 80 : 443) !== cj.join(":") + (cj[3] ? "" : cj[1] === "http:" ? 80 : 443)), l.data && l.processData && typeof l.data != "string" && (l.data = p.param(l.data, l.traditional)), cA(cv, l, c, x);if (v === 2) return x;j = l.global, l.type = l.type.toUpperCase(), l.hasContent = !co.test(l.type), j && p.active++ === 0 && p.event.trigger("ajaxStart");if (!l.hasContent) {
  2182. l.data && (l.url += (cq.test(l.url) ? "&" : "?") + l.data, delete l.data), d = l.url;if (l.cache === !1) {
  2183. var z = p.now(),
  2184. A = l.url.replace(cs, "$1_=" + z);l.url = A + (A === l.url ? (cq.test(l.url) ? "&" : "?") + "_=" + z : "");
  2185. }
  2186. }(l.data && l.hasContent && l.contentType !== !1 || c.contentType) && x.setRequestHeader("Content-Type", l.contentType), l.ifModified && (d = d || l.url, p.lastModified[d] && x.setRequestHeader("If-Modified-Since", p.lastModified[d]), p.etag[d] && x.setRequestHeader("If-None-Match", p.etag[d])), x.setRequestHeader("Accept", l.dataTypes[0] && l.accepts[l.dataTypes[0]] ? l.accepts[l.dataTypes[0]] + (l.dataTypes[0] !== "*" ? ", " + cx + "; q=0.01" : "") : l.accepts["*"]);for (k in l.headers) {
  2187. x.setRequestHeader(k, l.headers[k]);
  2188. }if (!l.beforeSend || l.beforeSend.call(m, x, l) !== !1 && v !== 2) {
  2189. w = "abort";for (k in { success: 1, error: 1, complete: 1 }) {
  2190. x[k](l[k]);
  2191. }g = cA(cw, l, c, x);if (!g) y(-1, "No Transport");else {
  2192. x.readyState = 1, j && n.trigger("ajaxSend", [x, l]), l.async && l.timeout > 0 && (h = setTimeout(function () {
  2193. x.abort("timeout");
  2194. }, l.timeout));try {
  2195. v = 1, g.send(t, y);
  2196. } catch (B) {
  2197. if (v < 2) y(-1, B);else throw B;
  2198. }
  2199. }return x;
  2200. }return x.abort();
  2201. }, active: 0, lastModified: {}, etag: {} });var cE = [],
  2202. cF = /\?/,
  2203. cG = /(=)\?(?=&|$)|\?\?/,
  2204. cH = p.now();p.ajaxSetup({ jsonp: "callback", jsonpCallback: function jsonpCallback() {
  2205. var a = cE.pop() || p.expando + "_" + cH++;return this[a] = !0, a;
  2206. } }), p.ajaxPrefilter("json jsonp", function (c, d, e) {
  2207. var f,
  2208. g,
  2209. h,
  2210. i = c.data,
  2211. j = c.url,
  2212. k = c.jsonp !== !1,
  2213. l = k && cG.test(j),
  2214. m = k && !l && typeof i == "string" && !(c.contentType || "").indexOf("application/x-www-form-urlencoded") && cG.test(i);if (c.dataTypes[0] === "jsonp" || l || m) return f = c.jsonpCallback = p.isFunction(c.jsonpCallback) ? c.jsonpCallback() : c.jsonpCallback, g = a[f], l ? c.url = j.replace(cG, "$1" + f) : m ? c.data = i.replace(cG, "$1" + f) : k && (c.url += (cF.test(j) ? "&" : "?") + c.jsonp + "=" + f), c.converters["script json"] = function () {
  2215. return h || p.error(f + " was not called"), h[0];
  2216. }, c.dataTypes[0] = "json", a[f] = function () {
  2217. h = arguments;
  2218. }, e.always(function () {
  2219. a[f] = g, c[f] && (c.jsonpCallback = d.jsonpCallback, cE.push(f)), h && p.isFunction(g) && g(h[0]), h = g = b;
  2220. }), "script";
  2221. }), p.ajaxSetup({ accepts: { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" }, contents: { script: /javascript|ecmascript/ }, converters: { "text script": function textScript(a) {
  2222. return p.globalEval(a), a;
  2223. } } }), p.ajaxPrefilter("script", function (a) {
  2224. a.cache === b && (a.cache = !1), a.crossDomain && (a.type = "GET", a.global = !1);
  2225. }), p.ajaxTransport("script", function (a) {
  2226. if (a.crossDomain) {
  2227. var c,
  2228. d = e.head || e.getElementsByTagName("head")[0] || e.documentElement;return { send: function send(f, g) {
  2229. c = e.createElement("script"), c.async = "async", a.scriptCharset && (c.charset = a.scriptCharset), c.src = a.url, c.onload = c.onreadystatechange = function (a, e) {
  2230. if (e || !c.readyState || /loaded|complete/.test(c.readyState)) c.onload = c.onreadystatechange = null, d && c.parentNode && d.removeChild(c), c = b, e || g(200, "success");
  2231. }, d.insertBefore(c, d.firstChild);
  2232. }, abort: function abort() {
  2233. c && c.onload(0, 1);
  2234. } };
  2235. }
  2236. });var cI,
  2237. cJ = a.ActiveXObject ? function () {
  2238. for (var a in cI) {
  2239. cI[a](0, 1);
  2240. }
  2241. } : !1,
  2242. cK = 0;p.ajaxSettings.xhr = a.ActiveXObject ? function () {
  2243. return !this.isLocal && cL() || cM();
  2244. } : cL, function (a) {
  2245. p.extend(p.support, { ajax: !!a, cors: !!a && "withCredentials" in a });
  2246. }(p.ajaxSettings.xhr()), p.support.ajax && p.ajaxTransport(function (c) {
  2247. if (!c.crossDomain || p.support.cors) {
  2248. var _d;return { send: function send(e, f) {
  2249. var g,
  2250. h,
  2251. i = c.xhr();c.username ? i.open(c.type, c.url, c.async, c.username, c.password) : i.open(c.type, c.url, c.async);if (c.xhrFields) for (h in c.xhrFields) {
  2252. i[h] = c.xhrFields[h];
  2253. }c.mimeType && i.overrideMimeType && i.overrideMimeType(c.mimeType), !c.crossDomain && !e["X-Requested-With"] && (e["X-Requested-With"] = "XMLHttpRequest");try {
  2254. for (h in e) {
  2255. i.setRequestHeader(h, e[h]);
  2256. }
  2257. } catch (j) {}i.send(c.hasContent && c.data || null), _d = function d(a, e) {
  2258. var h, j, k, l, m;try {
  2259. if (_d && (e || i.readyState === 4)) {
  2260. _d = b, g && (i.onreadystatechange = p.noop, cJ && delete cI[g]);if (e) i.readyState !== 4 && i.abort();else {
  2261. h = i.status, k = i.getAllResponseHeaders(), l = {}, m = i.responseXML, m && m.documentElement && (l.xml = m);try {
  2262. l.text = i.responseText;
  2263. } catch (a) {}try {
  2264. j = i.statusText;
  2265. } catch (n) {
  2266. j = "";
  2267. }!h && c.isLocal && !c.crossDomain ? h = l.text ? 200 : 404 : h === 1223 && (h = 204);
  2268. }
  2269. }
  2270. } catch (o) {
  2271. e || f(-1, o);
  2272. }l && f(h, j, l, k);
  2273. }, c.async ? i.readyState === 4 ? setTimeout(_d, 0) : (g = ++cK, cJ && (cI || (cI = {}, p(a).unload(cJ)), cI[g] = _d), i.onreadystatechange = _d) : _d();
  2274. }, abort: function abort() {
  2275. _d && _d(0, 1);
  2276. } };
  2277. }
  2278. });var cN,
  2279. cO,
  2280. cP = /^(?:toggle|show|hide)$/,
  2281. cQ = new RegExp("^(?:([-+])=|)(" + q + ")([a-z%]*)$", "i"),
  2282. cR = /queueHooks$/,
  2283. cS = [cY],
  2284. cT = { "*": [function (a, b) {
  2285. var c,
  2286. d,
  2287. e = this.createTween(a, b),
  2288. f = cQ.exec(b),
  2289. g = e.cur(),
  2290. h = +g || 0,
  2291. i = 1,
  2292. j = 20;if (f) {
  2293. c = +f[2], d = f[3] || (p.cssNumber[a] ? "" : "px");if (d !== "px" && h) {
  2294. h = p.css(e.elem, a, !0) || c || 1;do {
  2295. i = i || ".5", h = h / i, p.style(e.elem, a, h + d);
  2296. } while (i !== (i = e.cur() / g) && i !== 1 && --j);
  2297. }e.unit = d, e.start = h, e.end = f[1] ? h + (f[1] + 1) * c : c;
  2298. }return e;
  2299. }] };p.Animation = p.extend(cW, { tweener: function tweener(a, b) {
  2300. p.isFunction(a) ? (b = a, a = ["*"]) : a = a.split(" ");var c,
  2301. d = 0,
  2302. e = a.length;for (; d < e; d++) {
  2303. c = a[d], cT[c] = cT[c] || [], cT[c].unshift(b);
  2304. }
  2305. }, prefilter: function prefilter(a, b) {
  2306. b ? cS.unshift(a) : cS.push(a);
  2307. } }), p.Tween = cZ, cZ.prototype = { constructor: cZ, init: function init(a, b, c, d, e, f) {
  2308. this.elem = a, this.prop = c, this.easing = e || "swing", this.options = b, this.start = this.now = this.cur(), this.end = d, this.unit = f || (p.cssNumber[c] ? "" : "px");
  2309. }, cur: function cur() {
  2310. var a = cZ.propHooks[this.prop];return a && a.get ? a.get(this) : cZ.propHooks._default.get(this);
  2311. }, run: function run(a) {
  2312. var b,
  2313. c = cZ.propHooks[this.prop];return this.options.duration ? this.pos = b = p.easing[this.easing](a, this.options.duration * a, 0, 1, this.options.duration) : this.pos = b = a, this.now = (this.end - this.start) * b + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), c && c.set ? c.set(this) : cZ.propHooks._default.set(this), this;
  2314. } }, cZ.prototype.init.prototype = cZ.prototype, cZ.propHooks = { _default: { get: function get(a) {
  2315. var b;return a.elem[a.prop] == null || !!a.elem.style && a.elem.style[a.prop] != null ? (b = p.css(a.elem, a.prop, !1, ""), !b || b === "auto" ? 0 : b) : a.elem[a.prop];
  2316. }, set: function set(a) {
  2317. p.fx.step[a.prop] ? p.fx.step[a.prop](a) : a.elem.style && (a.elem.style[p.cssProps[a.prop]] != null || p.cssHooks[a.prop]) ? p.style(a.elem, a.prop, a.now + a.unit) : a.elem[a.prop] = a.now;
  2318. } } }, cZ.propHooks.scrollTop = cZ.propHooks.scrollLeft = { set: function set(a) {
  2319. a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now);
  2320. } }, p.each(["toggle", "show", "hide"], function (a, b) {
  2321. var c = p.fn[b];p.fn[b] = function (d, e, f) {
  2322. return d == null || typeof d == "boolean" || !a && p.isFunction(d) && p.isFunction(e) ? c.apply(this, arguments) : this.animate(c$(b, !0), d, e, f);
  2323. };
  2324. }), p.fn.extend({ fadeTo: function fadeTo(a, b, c, d) {
  2325. return this.filter(bZ).css("opacity", 0).show().end().animate({ opacity: b }, a, c, d);
  2326. }, animate: function animate(a, b, c, d) {
  2327. var e = p.isEmptyObject(a),
  2328. f = p.speed(b, c, d),
  2329. g = function g() {
  2330. var b = cW(this, p.extend({}, a), f);e && b.stop(!0);
  2331. };return e || f.queue === !1 ? this.each(g) : this.queue(f.queue, g);
  2332. }, stop: function stop(a, c, d) {
  2333. var e = function e(a) {
  2334. var b = a.stop;delete a.stop, b(d);
  2335. };return typeof a != "string" && (d = c, c = a, a = b), c && a !== !1 && this.queue(a || "fx", []), this.each(function () {
  2336. var b = !0,
  2337. c = a != null && a + "queueHooks",
  2338. f = p.timers,
  2339. g = p._data(this);if (c) g[c] && g[c].stop && e(g[c]);else for (c in g) {
  2340. g[c] && g[c].stop && cR.test(c) && e(g[c]);
  2341. }for (c = f.length; c--;) {
  2342. f[c].elem === this && (a == null || f[c].queue === a) && (f[c].anim.stop(d), b = !1, f.splice(c, 1));
  2343. }(b || !d) && p.dequeue(this, a);
  2344. });
  2345. } }), p.each({ slideDown: c$("show"), slideUp: c$("hide"), slideToggle: c$("toggle"), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function (a, b) {
  2346. p.fn[a] = function (a, c, d) {
  2347. return this.animate(b, a, c, d);
  2348. };
  2349. }), p.speed = function (a, b, c) {
  2350. var d = a && (typeof a === "undefined" ? "undefined" : _typeof(a)) == "object" ? p.extend({}, a) : { complete: c || !c && b || p.isFunction(a) && a, duration: a, easing: c && b || b && !p.isFunction(b) && b };d.duration = p.fx.off ? 0 : typeof d.duration == "number" ? d.duration : d.duration in p.fx.speeds ? p.fx.speeds[d.duration] : p.fx.speeds._default;if (d.queue == null || d.queue === !0) d.queue = "fx";return d.old = d.complete, d.complete = function () {
  2351. p.isFunction(d.old) && d.old.call(this), d.queue && p.dequeue(this, d.queue);
  2352. }, d;
  2353. }, p.easing = { linear: function linear(a) {
  2354. return a;
  2355. }, swing: function swing(a) {
  2356. return .5 - Math.cos(a * Math.PI) / 2;
  2357. } }, p.timers = [], p.fx = cZ.prototype.init, p.fx.tick = function () {
  2358. var a,
  2359. b = p.timers,
  2360. c = 0;for (; c < b.length; c++) {
  2361. a = b[c], !a() && b[c] === a && b.splice(c--, 1);
  2362. }b.length || p.fx.stop();
  2363. }, p.fx.timer = function (a) {
  2364. a() && p.timers.push(a) && !cO && (cO = setInterval(p.fx.tick, p.fx.interval));
  2365. }, p.fx.interval = 13, p.fx.stop = function () {
  2366. clearInterval(cO), cO = null;
  2367. }, p.fx.speeds = { slow: 600, fast: 200, _default: 400 }, p.fx.step = {}, p.expr && p.expr.filters && (p.expr.filters.animated = function (a) {
  2368. return p.grep(p.timers, function (b) {
  2369. return a === b.elem;
  2370. }).length;
  2371. });var c_ = /^(?:body|html)$/i;p.fn.offset = function (a) {
  2372. if (arguments.length) return a === b ? this : this.each(function (b) {
  2373. p.offset.setOffset(this, a, b);
  2374. });var c,
  2375. d,
  2376. e,
  2377. f,
  2378. g,
  2379. h,
  2380. i,
  2381. j = { top: 0, left: 0 },
  2382. k = this[0],
  2383. l = k && k.ownerDocument;if (!l) return;return (d = l.body) === k ? p.offset.bodyOffset(k) : (c = l.documentElement, p.contains(c, k) ? (typeof k.getBoundingClientRect != "undefined" && (j = k.getBoundingClientRect()), e = da(l), f = c.clientTop || d.clientTop || 0, g = c.clientLeft || d.clientLeft || 0, h = e.pageYOffset || c.scrollTop, i = e.pageXOffset || c.scrollLeft, { top: j.top + h - f, left: j.left + i - g }) : j);
  2384. }, p.offset = { bodyOffset: function bodyOffset(a) {
  2385. var b = a.offsetTop,
  2386. c = a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset && (b += parseFloat(p.css(a, "marginTop")) || 0, c += parseFloat(p.css(a, "marginLeft")) || 0), { top: b, left: c };
  2387. }, setOffset: function setOffset(a, b, c) {
  2388. var d = p.css(a, "position");d === "static" && (a.style.position = "relative");var e = p(a),
  2389. f = e.offset(),
  2390. g = p.css(a, "top"),
  2391. h = p.css(a, "left"),
  2392. i = (d === "absolute" || d === "fixed") && p.inArray("auto", [g, h]) > -1,
  2393. j = {},
  2394. k = {},
  2395. l,
  2396. m;i ? (k = e.position(), l = k.top, m = k.left) : (l = parseFloat(g) || 0, m = parseFloat(h) || 0), p.isFunction(b) && (b = b.call(a, c, f)), b.top != null && (j.top = b.top - f.top + l), b.left != null && (j.left = b.left - f.left + m), "using" in b ? b.using.call(a, j) : e.css(j);
  2397. } }, p.fn.extend({ position: function position() {
  2398. if (!this[0]) return;var a = this[0],
  2399. b = this.offsetParent(),
  2400. c = this.offset(),
  2401. d = c_.test(b[0].nodeName) ? { top: 0, left: 0 } : b.offset();return c.top -= parseFloat(p.css(a, "marginTop")) || 0, c.left -= parseFloat(p.css(a, "marginLeft")) || 0, d.top += parseFloat(p.css(b[0], "borderTopWidth")) || 0, d.left += parseFloat(p.css(b[0], "borderLeftWidth")) || 0, { top: c.top - d.top, left: c.left - d.left };
  2402. }, offsetParent: function offsetParent() {
  2403. return this.map(function () {
  2404. var a = this.offsetParent || e.body;while (a && !c_.test(a.nodeName) && p.css(a, "position") === "static") {
  2405. a = a.offsetParent;
  2406. }return a || e.body;
  2407. });
  2408. } }), p.each({ scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function (a, c) {
  2409. var d = /Y/.test(c);p.fn[a] = function (e) {
  2410. return p.access(this, function (a, e, f) {
  2411. var g = da(a);if (f === b) return g ? c in g ? g[c] : g.document.documentElement[e] : a[e];g ? g.scrollTo(d ? p(g).scrollLeft() : f, d ? f : p(g).scrollTop()) : a[e] = f;
  2412. }, a, e, arguments.length, null);
  2413. };
  2414. }), p.each({ Height: "height", Width: "width" }, function (a, c) {
  2415. p.each({ padding: "inner" + a, content: c, "": "outer" + a }, function (d, e) {
  2416. p.fn[e] = function (e, f) {
  2417. var g = arguments.length && (d || typeof e != "boolean"),
  2418. h = d || (e === !0 || f === !0 ? "margin" : "border");return p.access(this, function (c, d, e) {
  2419. var f;return p.isWindow(c) ? c.document.documentElement["client" + a] : c.nodeType === 9 ? (f = c.documentElement, Math.max(c.body["scroll" + a], f["scroll" + a], c.body["offset" + a], f["offset" + a], f["client" + a])) : e === b ? p.css(c, d, e, h) : p.style(c, d, e, h);
  2420. }, c, g ? e : b, g, null);
  2421. };
  2422. });
  2423. }), a.jQuery = a.$ = p, typeof define == "function" && define.amd && define.amd.jQuery && define("jquery", [], function () {
  2424. return p;
  2425. });
  2426. })(window);