1 |
- {"ast":null,"code":"/*!\n * jQuery JavaScript Library v3.7.1\n * https://jquery.com/\n *\n * Copyright OpenJS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2023-08-28T13:37Z\n */\n(function (global, factory) {\n \"use strict\";\n\n if (typeof module === \"object\" && typeof module.exports === \"object\") {\n // For CommonJS and CommonJS-like environments where a proper `window`\n // is present, execute the factory and get jQuery.\n // For environments that do not have a `window` with a `document`\n // (such as Node.js), expose a factory as module.exports.\n // This accentuates the need for the creation of a real `window`.\n // e.g. var jQuery = require(\"jquery\")(window);\n // See ticket trac-14549 for more info.\n module.exports = global.document ? factory(global, true) : function (w) {\n if (!w.document) {\n throw new Error(\"jQuery requires a window with a document\");\n }\n return factory(w);\n };\n } else {\n factory(global);\n }\n\n // Pass this if window is not defined yet\n})(typeof window !== \"undefined\" ? window : this, function (window, noGlobal) {\n // Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n // throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n // arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n // enough that all such attempts are guarded in a try block.\n \"use strict\";\n\n var arr = [];\n var getProto = Object.getPrototypeOf;\n var slice = arr.slice;\n var flat = arr.flat ? function (array) {\n return arr.flat.call(array);\n } : function (array) {\n return arr.concat.apply([], array);\n };\n var push = arr.push;\n var indexOf = arr.indexOf;\n var class2type = {};\n var toString = class2type.toString;\n var hasOwn = class2type.hasOwnProperty;\n var fnToString = hasOwn.toString;\n var ObjectFunctionString = fnToString.call(Object);\n var support = {};\n var isFunction = function isFunction(obj) {\n // Support: Chrome <=57, Firefox <=52\n // In some browsers, typeof returns \"function\" for HTML <object> elements\n // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n // We don't want to classify *any* DOM node as a function.\n // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5\n // Plus for old WebKit, typeof returns \"function\" for HTML collections\n // (e.g., `typeof document.getElementsByTagName(\"div\") === \"function\"`). (gh-4756)\n return typeof obj === \"function\" && typeof obj.nodeType !== \"number\" && typeof obj.item !== \"function\";\n };\n var isWindow = function isWindow(obj) {\n return obj != null && obj === obj.window;\n };\n var document = window.document;\n var preservedScriptAttributes = {\n type: true,\n src: true,\n nonce: true,\n noModule: true\n };\n function DOMEval(code, node, doc) {\n doc = doc || document;\n var i,\n val,\n script = doc.createElement(\"script\");\n script.text = code;\n if (node) {\n for (i in preservedScriptAttributes) {\n // Support: Firefox 64+, Edge 18+\n // Some browsers don't support the \"nonce\" property on scripts.\n // On the other hand, just using `getAttribute` is not enough as\n // the `nonce` attribute is reset to an empty string whenever it\n // becomes browsing-context connected.\n // See https://github.com/whatwg/html/issues/2369\n // See https://html.spec.whatwg.org/#nonce-attributes\n // The `node.getAttribute` check was added for the sake of\n // `jQuery.globalEval` so that it can fake a nonce-containing node\n // via an object.\n val = node[i] || node.getAttribute && node.getAttribute(i);\n if (val) {\n script.setAttribute(i, val);\n }\n }\n }\n doc.head.appendChild(script).parentNode.removeChild(script);\n }\n function toType(obj) {\n if (obj == null) {\n return obj + \"\";\n }\n\n // Support: Android <=2.3 only (functionish RegExp)\n return typeof obj === \"object\" || typeof obj === \"function\" ? class2type[toString.call(obj)] || \"object\" : typeof obj;\n }\n /* global Symbol */\n // Defining this global in .eslintrc.json would create a danger of using the global\n // unguarded in another place, it seems safer to define global only for this module\n\n var version = \"3.7.1\",\n rhtmlSuffix = /HTML$/i,\n // Define a local copy of jQuery\n jQuery = function (selector, context) {\n // The jQuery object is actually just the init constructor 'enhanced'\n // Need init if jQuery is called (just allow error to be thrown if not included)\n return new jQuery.fn.init(selector, context);\n };\n jQuery.fn = jQuery.prototype = {\n // The current version of jQuery being used\n jquery: version,\n constructor: jQuery,\n // The default length of a jQuery object is 0\n length: 0,\n toArray: function () {\n return slice.call(this);\n },\n // Get the Nth element in the matched element set OR\n // Get the whole matched element set as a clean array\n get: function (num) {\n // Return all the elements in a clean array\n if (num == null) {\n return slice.call(this);\n }\n\n // Return just the one element from the set\n return num < 0 ? this[num + this.length] : this[num];\n },\n // Take an array of elements and push it onto the stack\n // (returning the new matched element set)\n pushStack: function (elems) {\n // Build a new jQuery matched element set\n var ret = jQuery.merge(this.constructor(), elems);\n\n // Add the old object onto the stack (as a reference)\n ret.prevObject = this;\n\n // Return the newly-formed element set\n return ret;\n },\n // Execute a callback for every element in the matched set.\n each: function (callback) {\n return jQuery.each(this, callback);\n },\n map: function (callback) {\n return this.pushStack(jQuery.map(this, function (elem, i) {\n return callback.call(elem, i, elem);\n }));\n },\n slice: function () {\n return this.pushStack(slice.apply(this, arguments));\n },\n first: function () {\n return this.eq(0);\n },\n last: function () {\n return this.eq(-1);\n },\n even: function () {\n return this.pushStack(jQuery.grep(this, function (_elem, i) {\n return (i + 1) % 2;\n }));\n },\n odd: function () {\n return this.pushStack(jQuery.grep(this, function (_elem, i) {\n return i % 2;\n }));\n },\n eq: function (i) {\n var len = this.length,\n j = +i + (i < 0 ? len : 0);\n return this.pushStack(j >= 0 && j < len ? [this[j]] : []);\n },\n end: function () {\n return this.prevObject || this.constructor();\n },\n // For internal use only.\n // Behaves like an Array's method, not like a jQuery method.\n push: push,\n sort: arr.sort,\n splice: arr.splice\n };\n jQuery.extend = jQuery.fn.extend = function () {\n var options,\n name,\n src,\n copy,\n copyIsArray,\n clone,\n target = arguments[0] || {},\n i = 1,\n length = arguments.length,\n deep = false;\n\n // Handle a deep copy situation\n if (typeof target === \"boolean\") {\n deep = target;\n\n // Skip the boolean and the target\n target = arguments[i] || {};\n i++;\n }\n\n // Handle case when target is a string or something (possible in deep copy)\n if (typeof target !== \"object\" && !isFunction(target)) {\n target = {};\n }\n\n // Extend jQuery itself if only one argument is passed\n if (i === length) {\n target = this;\n i--;\n }\n for (; i < length; i++) {\n // Only deal with non-null/undefined values\n if ((options = arguments[i]) != null) {\n // Extend the base object\n for (name in options) {\n copy = options[name];\n\n // Prevent Object.prototype pollution\n // Prevent never-ending loop\n if (name === \"__proto__\" || target === copy) {\n continue;\n }\n\n // Recurse if we're merging plain objects or arrays\n if (deep && copy && (jQuery.isPlainObject(copy) || (copyIsArray = Array.isArray(copy)))) {\n src = target[name];\n\n // Ensure proper type for the source value\n if (copyIsArray && !Array.isArray(src)) {\n clone = [];\n } else if (!copyIsArray && !jQuery.isPlainObject(src)) {\n clone = {};\n } else {\n clone = src;\n }\n copyIsArray = false;\n\n // Never move original objects, clone them\n target[name] = jQuery.extend(deep, clone, copy);\n\n // Don't bring in undefined values\n } else if (copy !== undefined) {\n target[name] = copy;\n }\n }\n }\n }\n\n // Return the modified object\n return target;\n };\n jQuery.extend({\n // Unique for each copy of jQuery on the page\n expando: \"jQuery\" + (version + Math.random()).replace(/\\D/g, \"\"),\n // Assume jQuery is ready without the ready module\n isReady: true,\n error: function (msg) {\n throw new Error(msg);\n },\n noop: function () {},\n isPlainObject: function (obj) {\n var proto, Ctor;\n\n // Detect obvious negatives\n // Use toString instead of jQuery.type to catch host objects\n if (!obj || toString.call(obj) !== \"[object Object]\") {\n return false;\n }\n proto = getProto(obj);\n\n // Objects with no prototype (e.g., `Object.create( null )`) are plain\n if (!proto) {\n return true;\n }\n\n // Objects with prototype are plain iff they were constructed by a global Object function\n Ctor = hasOwn.call(proto, \"constructor\") && proto.constructor;\n return typeof Ctor === \"function\" && fnToString.call(Ctor) === ObjectFunctionString;\n },\n isEmptyObject: function (obj) {\n var name;\n for (name in obj) {\n return false;\n }\n return true;\n },\n // Evaluates a script in a provided context; falls back to the global one\n // if not specified.\n globalEval: function (code, options, doc) {\n DOMEval(code, {\n nonce: options && options.nonce\n }, doc);\n },\n each: function (obj, callback) {\n var length,\n i = 0;\n if (isArrayLike(obj)) {\n length = obj.length;\n for (; i < length; i++) {\n if (callback.call(obj[i], i, obj[i]) === false) {\n break;\n }\n }\n } else {\n for (i in obj) {\n if (callback.call(obj[i], i, obj[i]) === false) {\n break;\n }\n }\n }\n return obj;\n },\n // Retrieve the text value of an array of DOM nodes\n text: function (elem) {\n var node,\n ret = \"\",\n i = 0,\n nodeType = elem.nodeType;\n if (!nodeType) {\n // If no nodeType, this is expected to be an array\n while (node = elem[i++]) {\n // Do not traverse comment nodes\n ret += jQuery.text(node);\n }\n }\n if (nodeType === 1 || nodeType === 11) {\n return elem.textContent;\n }\n if (nodeType === 9) {\n return elem.documentElement.textContent;\n }\n if (nodeType === 3 || nodeType === 4) {\n return elem.nodeValue;\n }\n\n // Do not include comment or processing instruction nodes\n\n return ret;\n },\n // results is for internal usage only\n makeArray: function (arr, results) {\n var ret = results || [];\n if (arr != null) {\n if (isArrayLike(Object(arr))) {\n jQuery.merge(ret, typeof arr === \"string\" ? [arr] : arr);\n } else {\n push.call(ret, arr);\n }\n }\n return ret;\n },\n inArray: function (elem, arr, i) {\n return arr == null ? -1 : indexOf.call(arr, elem, i);\n },\n isXMLDoc: function (elem) {\n var namespace = elem && elem.namespaceURI,\n docElem = elem && (elem.ownerDocument || elem).documentElement;\n\n // Assume HTML when documentElement doesn't yet exist, such as inside\n // document fragments.\n return !rhtmlSuffix.test(namespace || docElem && docElem.nodeName || \"HTML\");\n },\n // Support: Android <=4.0 only, PhantomJS 1 only\n // push.apply(_, arraylike) throws on ancient WebKit\n merge: function (first, second) {\n var len = +second.length,\n j = 0,\n i = first.length;\n for (; j < len; j++) {\n first[i++] = second[j];\n }\n first.length = i;\n return first;\n },\n grep: function (elems, callback, invert) {\n var callbackInverse,\n matches = [],\n i = 0,\n length = elems.length,\n callbackExpect = !invert;\n\n // Go through the array, only saving the items\n // that pass the validator function\n for (; i < length; i++) {\n callbackInverse = !callback(elems[i], i);\n if (callbackInverse !== callbackExpect) {\n matches.push(elems[i]);\n }\n }\n return matches;\n },\n // arg is for internal usage only\n map: function (elems, callback, arg) {\n var length,\n value,\n i = 0,\n ret = [];\n\n // Go through the array, translating each of the items to their new values\n if (isArrayLike(elems)) {\n length = elems.length;\n for (; i < length; i++) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret.push(value);\n }\n }\n\n // Go through every key on the object,\n } else {\n for (i in elems) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret.push(value);\n }\n }\n }\n\n // Flatten any nested arrays\n return flat(ret);\n },\n // A global GUID counter for objects\n guid: 1,\n // jQuery.support is not used in Core but other projects attach their\n // properties to it so it needs to exist.\n support: support\n });\n if (typeof Symbol === \"function\") {\n jQuery.fn[Symbol.iterator] = arr[Symbol.iterator];\n }\n\n // Populate the class2type map\n jQuery.each(\"Boolean Number String Function Array Date RegExp Object Error Symbol\".split(\" \"), function (_i, name) {\n class2type[\"[object \" + name + \"]\"] = name.toLowerCase();\n });\n function isArrayLike(obj) {\n // Support: real iOS 8.2 only (not reproducible in simulator)\n // `in` check used to prevent JIT error (gh-2145)\n // hasOwn isn't used here due to false negatives\n // regarding Nodelist length in IE\n var length = !!obj && \"length\" in obj && obj.length,\n type = toType(obj);\n if (isFunction(obj) || isWindow(obj)) {\n return false;\n }\n return type === \"array\" || length === 0 || typeof length === \"number\" && length > 0 && length - 1 in obj;\n }\n function nodeName(elem, name) {\n return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n }\n var pop = arr.pop;\n var sort = arr.sort;\n var splice = arr.splice;\n var whitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\";\n var rtrimCSS = new RegExp(\"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\");\n\n // Note: an element does not contain itself\n jQuery.contains = function (a, b) {\n var bup = b && b.parentNode;\n return a === bup || !!(bup && bup.nodeType === 1 && (\n // Support: IE 9 - 11+\n // IE doesn't have `contains` on SVG.\n a.contains ? a.contains(bup) : a.compareDocumentPosition && a.compareDocumentPosition(bup) & 16));\n };\n\n // CSS string/identifier serialization\n // https://drafts.csswg.org/cssom/#common-serializing-idioms\n var rcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\x80-\\uFFFF\\w-]/g;\n function fcssescape(ch, asCodePoint) {\n if (asCodePoint) {\n // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n if (ch === \"\\0\") {\n return \"\\uFFFD\";\n }\n\n // Control characters and (dependent upon position) numbers get escaped as code points\n return ch.slice(0, -1) + \"\\\\\" + ch.charCodeAt(ch.length - 1).toString(16) + \" \";\n }\n\n // Other potentially-special ASCII characters get backslash-escaped\n return \"\\\\\" + ch;\n }\n jQuery.escapeSelector = function (sel) {\n return (sel + \"\").replace(rcssescape, fcssescape);\n };\n var preferredDoc = document,\n pushNative = push;\n (function () {\n var i,\n Expr,\n outermostContext,\n sortInput,\n hasDuplicate,\n push = pushNative,\n // Local document vars\n document,\n documentElement,\n documentIsHTML,\n rbuggyQSA,\n matches,\n // Instance-specific data\n expando = jQuery.expando,\n dirruns = 0,\n done = 0,\n classCache = createCache(),\n tokenCache = createCache(),\n compilerCache = createCache(),\n nonnativeSelectorCache = createCache(),\n sortOrder = function (a, b) {\n if (a === b) {\n hasDuplicate = true;\n }\n return 0;\n },\n booleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|\" + \"loop|multiple|open|readonly|required|scoped\",\n // Regular expressions\n\n // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n identifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n // Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors\n attributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n // Operator (capture 2)\n \"*([*^$|!~]?=)\" + whitespace +\n // \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n \"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace + \"*\\\\]\",\n pseudos = \":(\" + identifier + \")(?:\\\\((\" +\n // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n // 1. quoted (capture 3; capture 4 or capture 5)\n \"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n // 2. simple (capture 6)\n \"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n // 3. anything else (capture 2)\n \".*\" + \")\\\\)|)\",\n // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n rwhitespace = new RegExp(whitespace + \"+\", \"g\"),\n rcomma = new RegExp(\"^\" + whitespace + \"*,\" + whitespace + \"*\"),\n rleadingCombinator = new RegExp(\"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\"),\n rdescend = new RegExp(whitespace + \"|>\"),\n rpseudo = new RegExp(pseudos),\n ridentifier = new RegExp(\"^\" + identifier + \"$\"),\n matchExpr = {\n ID: new RegExp(\"^#(\" + identifier + \")\"),\n CLASS: new RegExp(\"^\\\\.(\" + identifier + \")\"),\n TAG: new RegExp(\"^(\" + identifier + \"|[*])\"),\n ATTR: new RegExp(\"^\" + attributes),\n PSEUDO: new RegExp(\"^\" + pseudos),\n CHILD: new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\"),\n bool: new RegExp(\"^(?:\" + booleans + \")$\", \"i\"),\n // For use in libraries implementing .is()\n // We use this for POS matching in `select`\n needsContext: new RegExp(\"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\")\n },\n rinputs = /^(?:input|select|textarea|button)$/i,\n rheader = /^h\\d$/i,\n // Easily-parseable/retrievable ID or TAG or CLASS selectors\n rquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n rsibling = /[+~]/,\n // CSS escapes\n // https://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n runescape = new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\"),\n funescape = function (escape, nonHex) {\n var high = \"0x\" + escape.slice(1) - 0x10000;\n if (nonHex) {\n // Strip the backslash prefix from a non-hex escape sequence\n return nonHex;\n }\n\n // Replace a hexadecimal escape sequence with the encoded Unicode code point\n // Support: IE <=11+\n // For values outside the Basic Multilingual Plane (BMP), manually construct a\n // surrogate pair\n return high < 0 ? String.fromCharCode(high + 0x10000) : String.fromCharCode(high >> 10 | 0xD800, high & 0x3FF | 0xDC00);\n },\n // Used for iframes; see `setDocument`.\n // Support: IE 9 - 11+, Edge 12 - 18+\n // Removing the function wrapper causes a \"Permission Denied\"\n // error in IE/Edge.\n unloadHandler = function () {\n setDocument();\n },\n inDisabledFieldset = addCombinator(function (elem) {\n return elem.disabled === true && nodeName(elem, \"fieldset\");\n }, {\n dir: \"parentNode\",\n next: \"legend\"\n });\n\n // Support: IE <=9 only\n // Accessing document.activeElement can throw unexpectedly\n // https://bugs.jquery.com/ticket/13393\n function safeActiveElement() {\n try {\n return document.activeElement;\n } catch (err) {}\n }\n\n // Optimize for push.apply( _, NodeList )\n try {\n push.apply(arr = slice.call(preferredDoc.childNodes), preferredDoc.childNodes);\n\n // Support: Android <=4.0\n // Detect silently failing push.apply\n // eslint-disable-next-line no-unused-expressions\n arr[preferredDoc.childNodes.length].nodeType;\n } catch (e) {\n push = {\n apply: function (target, els) {\n pushNative.apply(target, slice.call(els));\n },\n call: function (target) {\n pushNative.apply(target, slice.call(arguments, 1));\n }\n };\n }\n function find(selector, context, results, seed) {\n var m,\n i,\n elem,\n nid,\n match,\n groups,\n newSelector,\n newContext = context && context.ownerDocument,\n // nodeType defaults to 9, since context defaults to document\n nodeType = context ? context.nodeType : 9;\n results = results || [];\n\n // Return early from calls with invalid selector or context\n if (typeof selector !== \"string\" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11) {\n return results;\n }\n\n // Try to shortcut find operations (as opposed to filters) in HTML documents\n if (!seed) {\n setDocument(context);\n context = context || document;\n if (documentIsHTML) {\n // If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n // (excepting DocumentFragment context, where the methods don't exist)\n if (nodeType !== 11 && (match = rquickExpr.exec(selector))) {\n // ID selector\n if (m = match[1]) {\n // Document context\n if (nodeType === 9) {\n if (elem = context.getElementById(m)) {\n // Support: IE 9 only\n // getElementById can match elements by name instead of ID\n if (elem.id === m) {\n push.call(results, elem);\n return results;\n }\n } else {\n return results;\n }\n\n // Element context\n } else {\n // Support: IE 9 only\n // getElementById can match elements by name instead of ID\n if (newContext && (elem = newContext.getElementById(m)) && find.contains(context, elem) && elem.id === m) {\n push.call(results, elem);\n return results;\n }\n }\n\n // Type selector\n } else if (match[2]) {\n push.apply(results, context.getElementsByTagName(selector));\n return results;\n\n // Class selector\n } else if ((m = match[3]) && context.getElementsByClassName) {\n push.apply(results, context.getElementsByClassName(m));\n return results;\n }\n }\n\n // Take advantage of querySelectorAll\n if (!nonnativeSelectorCache[selector + \" \"] && (!rbuggyQSA || !rbuggyQSA.test(selector))) {\n newSelector = selector;\n newContext = context;\n\n // qSA considers elements outside a scoping root when evaluating child or\n // descendant combinators, which is not what we want.\n // In such cases, we work around the behavior by prefixing every selector in the\n // list with an ID selector referencing the scope context.\n // The technique has to be used as well when a leading combinator is used\n // as such selectors are not recognized by querySelectorAll.\n // Thanks to Andrew Dupont for this technique.\n if (nodeType === 1 && (rdescend.test(selector) || rleadingCombinator.test(selector))) {\n // Expand context for sibling selectors\n newContext = rsibling.test(selector) && testContext(context.parentNode) || context;\n\n // We can use :scope instead of the ID hack if the browser\n // supports it & if we're not changing the context.\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when\n // strict-comparing two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if (newContext != context || !support.scope) {\n // Capture the context ID, setting it first if necessary\n if (nid = context.getAttribute(\"id\")) {\n nid = jQuery.escapeSelector(nid);\n } else {\n context.setAttribute(\"id\", nid = expando);\n }\n }\n\n // Prefix every selector in the list\n groups = tokenize(selector);\n i = groups.length;\n while (i--) {\n groups[i] = (nid ? \"#\" + nid : \":scope\") + \" \" + toSelector(groups[i]);\n }\n newSelector = groups.join(\",\");\n }\n try {\n push.apply(results, newContext.querySelectorAll(newSelector));\n return results;\n } catch (qsaError) {\n nonnativeSelectorCache(selector, true);\n } finally {\n if (nid === expando) {\n context.removeAttribute(\"id\");\n }\n }\n }\n }\n }\n\n // All others\n return select(selector.replace(rtrimCSS, \"$1\"), context, results, seed);\n }\n\n /**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\n function createCache() {\n var keys = [];\n function cache(key, value) {\n // Use (key + \" \") to avoid collision with native prototype properties\n // (see https://github.com/jquery/sizzle/issues/157)\n if (keys.push(key + \" \") > Expr.cacheLength) {\n // Only keep the most recent entries\n delete cache[keys.shift()];\n }\n return cache[key + \" \"] = value;\n }\n return cache;\n }\n\n /**\n * Mark a function for special use by jQuery selector module\n * @param {Function} fn The function to mark\n */\n function markFunction(fn) {\n fn[expando] = true;\n return fn;\n }\n\n /**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\n function assert(fn) {\n var el = document.createElement(\"fieldset\");\n try {\n return !!fn(el);\n } catch (e) {\n return false;\n } finally {\n // Remove from its parent by default\n if (el.parentNode) {\n el.parentNode.removeChild(el);\n }\n\n // release memory in IE\n el = null;\n }\n }\n\n /**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\n function createInputPseudo(type) {\n return function (elem) {\n return nodeName(elem, \"input\") && elem.type === type;\n };\n }\n\n /**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\n function createButtonPseudo(type) {\n return function (elem) {\n return (nodeName(elem, \"input\") || nodeName(elem, \"button\")) && elem.type === type;\n };\n }\n\n /**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\n function createDisabledPseudo(disabled) {\n // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n return function (elem) {\n // Only certain elements can match :enabled or :disabled\n // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n if (\"form\" in elem) {\n // Check for inherited disabledness on relevant non-disabled elements:\n // * listed form-associated elements in a disabled fieldset\n // https://html.spec.whatwg.org/multipage/forms.html#category-listed\n // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n // * option elements in a disabled optgroup\n // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n // All such elements have a \"form\" property.\n if (elem.parentNode && elem.disabled === false) {\n // Option elements defer to a parent optgroup if present\n if (\"label\" in elem) {\n if (\"label\" in elem.parentNode) {\n return elem.parentNode.disabled === disabled;\n } else {\n return elem.disabled === disabled;\n }\n }\n\n // Support: IE 6 - 11+\n // Use the isDisabled shortcut property to check for disabled fieldset ancestors\n return elem.isDisabled === disabled ||\n // Where there is no isDisabled, check manually\n elem.isDisabled !== !disabled && inDisabledFieldset(elem) === disabled;\n }\n return elem.disabled === disabled;\n\n // Try to winnow out elements that can't be disabled before trusting the disabled property.\n // Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n // even exist on them, let alone have a boolean value.\n } else if (\"label\" in elem) {\n return elem.disabled === disabled;\n }\n\n // Remaining elements are neither :enabled nor :disabled\n return false;\n };\n }\n\n /**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\n function createPositionalPseudo(fn) {\n return markFunction(function (argument) {\n argument = +argument;\n return markFunction(function (seed, matches) {\n var j,\n matchIndexes = fn([], seed.length, argument),\n i = matchIndexes.length;\n\n // Match elements found at the specified indexes\n while (i--) {\n if (seed[j = matchIndexes[i]]) {\n seed[j] = !(matches[j] = seed[j]);\n }\n }\n });\n });\n }\n\n /**\n * Checks a node for validity as a jQuery selector context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\n function testContext(context) {\n return context && typeof context.getElementsByTagName !== \"undefined\" && context;\n }\n\n /**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [node] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\n function setDocument(node) {\n var subWindow,\n doc = node ? node.ownerDocument || node : preferredDoc;\n\n // Return early if doc is invalid or already selected\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if (doc == document || doc.nodeType !== 9 || !doc.documentElement) {\n return document;\n }\n\n // Update global variables\n document = doc;\n documentElement = document.documentElement;\n documentIsHTML = !jQuery.isXMLDoc(document);\n\n // Support: iOS 7 only, IE 9 - 11+\n // Older browsers didn't support unprefixed `matches`.\n matches = documentElement.matches || documentElement.webkitMatchesSelector || documentElement.msMatchesSelector;\n\n // Support: IE 9 - 11+, Edge 12 - 18+\n // Accessing iframe documents after unload throws \"permission denied\" errors\n // (see trac-13936).\n // Limit the fix to IE & Edge Legacy; despite Edge 15+ implementing `matches`,\n // all IE 9+ and Edge Legacy versions implement `msMatchesSelector` as well.\n if (documentElement.msMatchesSelector &&\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n preferredDoc != document && (subWindow = document.defaultView) && subWindow.top !== subWindow) {\n // Support: IE 9 - 11+, Edge 12 - 18+\n subWindow.addEventListener(\"unload\", unloadHandler);\n }\n\n // Support: IE <10\n // Check if getElementById returns elements by name\n // The broken getElementById methods don't pick up programmatically-set names,\n // so use a roundabout getElementsByName test\n support.getById = assert(function (el) {\n documentElement.appendChild(el).id = jQuery.expando;\n return !document.getElementsByName || !document.getElementsByName(jQuery.expando).length;\n });\n\n // Support: IE 9 only\n // Check to see if it's possible to do matchesSelector\n // on a disconnected node.\n support.disconnectedMatch = assert(function (el) {\n return matches.call(el, \"*\");\n });\n\n // Support: IE 9 - 11+, Edge 12 - 18+\n // IE/Edge don't support the :scope pseudo-class.\n support.scope = assert(function () {\n return document.querySelectorAll(\":scope\");\n });\n\n // Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only\n // Make sure the `:has()` argument is parsed unforgivingly.\n // We include `*` in the test to detect buggy implementations that are\n // _selectively_ forgiving (specifically when the list includes at least\n // one valid selector).\n // Note that we treat complete lack of support for `:has()` as if it were\n // spec-compliant support, which is fine because use of `:has()` in such\n // environments will fail in the qSA path and fall back to jQuery traversal\n // anyway.\n support.cssHas = assert(function () {\n try {\n document.querySelector(\":has(*,:jqfake)\");\n return false;\n } catch (e) {\n return true;\n }\n });\n\n // ID filter and find\n if (support.getById) {\n Expr.filter.ID = function (id) {\n var attrId = id.replace(runescape, funescape);\n return function (elem) {\n return elem.getAttribute(\"id\") === attrId;\n };\n };\n Expr.find.ID = function (id, context) {\n if (typeof context.getElementById !== \"undefined\" && documentIsHTML) {\n var elem = context.getElementById(id);\n return elem ? [elem] : [];\n }\n };\n } else {\n Expr.filter.ID = function (id) {\n var attrId = id.replace(runescape, funescape);\n return function (elem) {\n var node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n return node && node.value === attrId;\n };\n };\n\n // Support: IE 6 - 7 only\n // getElementById is not reliable as a find shortcut\n Expr.find.ID = function (id, context) {\n if (typeof context.getElementById !== \"undefined\" && documentIsHTML) {\n var node,\n i,\n elems,\n elem = context.getElementById(id);\n if (elem) {\n // Verify the id attribute\n node = elem.getAttributeNode(\"id\");\n if (node && node.value === id) {\n return [elem];\n }\n\n // Fall back on getElementsByName\n elems = context.getElementsByName(id);\n i = 0;\n while (elem = elems[i++]) {\n node = elem.getAttributeNode(\"id\");\n if (node && node.value === id) {\n return [elem];\n }\n }\n }\n return [];\n }\n };\n }\n\n // Tag\n Expr.find.TAG = function (tag, context) {\n if (typeof context.getElementsByTagName !== \"undefined\") {\n return context.getElementsByTagName(tag);\n\n // DocumentFragment nodes don't have gEBTN\n } else {\n return context.querySelectorAll(tag);\n }\n };\n\n // Class\n Expr.find.CLASS = function (className, context) {\n if (typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML) {\n return context.getElementsByClassName(className);\n }\n };\n\n /* QSA/matchesSelector\n ---------------------------------------------------------------------- */\n\n // QSA and matchesSelector support\n\n rbuggyQSA = [];\n\n // Build QSA regex\n // Regex strategy adopted from Diego Perini\n assert(function (el) {\n var input;\n documentElement.appendChild(el).innerHTML = \"<a id='\" + expando + \"' href='' disabled='disabled'></a>\" + \"<select id='\" + expando + \"-\\r\\\\' disabled='disabled'>\" + \"<option selected=''></option></select>\";\n\n // Support: iOS <=7 - 8 only\n // Boolean attributes and \"value\" are not treated correctly in some XML documents\n if (!el.querySelectorAll(\"[selected]\").length) {\n rbuggyQSA.push(\"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\");\n }\n\n // Support: iOS <=7 - 8 only\n if (!el.querySelectorAll(\"[id~=\" + expando + \"-]\").length) {\n rbuggyQSA.push(\"~=\");\n }\n\n // Support: iOS 8 only\n // https://bugs.webkit.org/show_bug.cgi?id=136851\n // In-page `selector#id sibling-combinator selector` fails\n if (!el.querySelectorAll(\"a#\" + expando + \"+*\").length) {\n rbuggyQSA.push(\".#.+[+~]\");\n }\n\n // Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n // In some of the document kinds, these selectors wouldn't work natively.\n // This is probably OK but for backwards compatibility we want to maintain\n // handling them through jQuery traversal in jQuery 3.x.\n if (!el.querySelectorAll(\":checked\").length) {\n rbuggyQSA.push(\":checked\");\n }\n\n // Support: Windows 8 Native Apps\n // The type and name attributes are restricted during .innerHTML assignment\n input = document.createElement(\"input\");\n input.setAttribute(\"type\", \"hidden\");\n el.appendChild(input).setAttribute(\"name\", \"D\");\n\n // Support: IE 9 - 11+\n // IE's :disabled selector does not pick up the children of disabled fieldsets\n // Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n // In some of the document kinds, these selectors wouldn't work natively.\n // This is probably OK but for backwards compatibility we want to maintain\n // handling them through jQuery traversal in jQuery 3.x.\n documentElement.appendChild(el).disabled = true;\n if (el.querySelectorAll(\":disabled\").length !== 2) {\n rbuggyQSA.push(\":enabled\", \":disabled\");\n }\n\n // Support: IE 11+, Edge 15 - 18+\n // IE 11/Edge don't find elements on a `[name='']` query in some cases.\n // Adding a temporary attribute to the document before the selection works\n // around the issue.\n // Interestingly, IE 10 & older don't seem to have the issue.\n input = document.createElement(\"input\");\n input.setAttribute(\"name\", \"\");\n el.appendChild(input);\n if (!el.querySelectorAll(\"[name='']\").length) {\n rbuggyQSA.push(\"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" + whitespace + \"*(?:''|\\\"\\\")\");\n }\n });\n if (!support.cssHas) {\n // Support: Chrome 105 - 110+, Safari 15.4 - 16.3+\n // Our regular `try-catch` mechanism fails to detect natively-unsupported\n // pseudo-classes inside `:has()` (such as `:has(:contains(\"Foo\"))`)\n // in browsers that parse the `:has()` argument as a forgiving selector list.\n // https://drafts.csswg.org/selectors/#relational now requires the argument\n // to be parsed unforgivingly, but browsers have not yet fully adjusted.\n rbuggyQSA.push(\":has\");\n }\n rbuggyQSA = rbuggyQSA.length && new RegExp(rbuggyQSA.join(\"|\"));\n\n /* Sorting\n ---------------------------------------------------------------------- */\n\n // Document order sorting\n sortOrder = function (a, b) {\n // Flag for duplicate removal\n if (a === b) {\n hasDuplicate = true;\n return 0;\n }\n\n // Sort on method existence if only one input has compareDocumentPosition\n var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n if (compare) {\n return compare;\n }\n\n // Calculate position if both inputs belong to the same document\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n compare = (a.ownerDocument || a) == (b.ownerDocument || b) ? a.compareDocumentPosition(b) :\n // Otherwise we know they are disconnected\n 1;\n\n // Disconnected nodes\n if (compare & 1 || !support.sortDetached && b.compareDocumentPosition(a) === compare) {\n // Choose the first element that is related to our preferred document\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if (a === document || a.ownerDocument == preferredDoc && find.contains(preferredDoc, a)) {\n return -1;\n }\n\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if (b === document || b.ownerDocument == preferredDoc && find.contains(preferredDoc, b)) {\n return 1;\n }\n\n // Maintain original order\n return sortInput ? indexOf.call(sortInput, a) - indexOf.call(sortInput, b) : 0;\n }\n return compare & 4 ? -1 : 1;\n };\n return document;\n }\n find.matches = function (expr, elements) {\n return find(expr, null, null, elements);\n };\n find.matchesSelector = function (elem, expr) {\n setDocument(elem);\n if (documentIsHTML && !nonnativeSelectorCache[expr + \" \"] && (!rbuggyQSA || !rbuggyQSA.test(expr))) {\n try {\n var ret = matches.call(elem, expr);\n\n // IE 9's matchesSelector returns false on disconnected nodes\n if (ret || support.disconnectedMatch ||\n // As well, disconnected nodes are said to be in a document\n // fragment in IE 9\n elem.document && elem.document.nodeType !== 11) {\n return ret;\n }\n } catch (e) {\n nonnativeSelectorCache(expr, true);\n }\n }\n return find(expr, document, null, [elem]).length > 0;\n };\n find.contains = function (context, elem) {\n // Set document vars if needed\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if ((context.ownerDocument || context) != document) {\n setDocument(context);\n }\n return jQuery.contains(context, elem);\n };\n find.attr = function (elem, name) {\n // Set document vars if needed\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if ((elem.ownerDocument || elem) != document) {\n setDocument(elem);\n }\n var fn = Expr.attrHandle[name.toLowerCase()],\n // Don't get fooled by Object.prototype properties (see trac-13807)\n val = fn && hasOwn.call(Expr.attrHandle, name.toLowerCase()) ? fn(elem, name, !documentIsHTML) : undefined;\n if (val !== undefined) {\n return val;\n }\n return elem.getAttribute(name);\n };\n find.error = function (msg) {\n throw new Error(\"Syntax error, unrecognized expression: \" + msg);\n };\n\n /**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\n jQuery.uniqueSort = function (results) {\n var elem,\n duplicates = [],\n j = 0,\n i = 0;\n\n // Unless we *know* we can detect duplicates, assume their presence\n //\n // Support: Android <=4.0+\n // Testing for detecting duplicates is unpredictable so instead assume we can't\n // depend on duplicate detection in all browsers without a stable sort.\n hasDuplicate = !support.sortStable;\n sortInput = !support.sortStable && slice.call(results, 0);\n sort.call(results, sortOrder);\n if (hasDuplicate) {\n while (elem = results[i++]) {\n if (elem === results[i]) {\n j = duplicates.push(i);\n }\n }\n while (j--) {\n splice.call(results, duplicates[j], 1);\n }\n }\n\n // Clear input after sorting to release objects\n // See https://github.com/jquery/sizzle/pull/225\n sortInput = null;\n return results;\n };\n jQuery.fn.uniqueSort = function () {\n return this.pushStack(jQuery.uniqueSort(slice.apply(this)));\n };\n Expr = jQuery.expr = {\n // Can be adjusted by the user\n cacheLength: 50,\n createPseudo: markFunction,\n match: matchExpr,\n attrHandle: {},\n find: {},\n relative: {\n \">\": {\n dir: \"parentNode\",\n first: true\n },\n \" \": {\n dir: \"parentNode\"\n },\n \"+\": {\n dir: \"previousSibling\",\n first: true\n },\n \"~\": {\n dir: \"previousSibling\"\n }\n },\n preFilter: {\n ATTR: function (match) {\n match[1] = match[1].replace(runescape, funescape);\n\n // Move the given value to match[3] whether quoted or unquoted\n match[3] = (match[3] || match[4] || match[5] || \"\").replace(runescape, funescape);\n if (match[2] === \"~=\") {\n match[3] = \" \" + match[3] + \" \";\n }\n return match.slice(0, 4);\n },\n CHILD: function (match) {\n /* matches from matchExpr[\"CHILD\"]\n \t1 type (only|nth|...)\n \t2 what (child|of-type)\n \t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n \t4 xn-component of xn+y argument ([+-]?\\d*n|)\n \t5 sign of xn-component\n \t6 x of xn-component\n \t7 sign of y-component\n \t8 y of y-component\n */\n match[1] = match[1].toLowerCase();\n if (match[1].slice(0, 3) === \"nth\") {\n // nth-* requires argument\n if (!match[3]) {\n find.error(match[0]);\n }\n\n // numeric x and y parameters for Expr.filter.CHILD\n // remember that false/true cast respectively to 0/1\n match[4] = +(match[4] ? match[5] + (match[6] || 1) : 2 * (match[3] === \"even\" || match[3] === \"odd\"));\n match[5] = +(match[7] + match[8] || match[3] === \"odd\");\n\n // other types prohibit arguments\n } else if (match[3]) {\n find.error(match[0]);\n }\n return match;\n },\n PSEUDO: function (match) {\n var excess,\n unquoted = !match[6] && match[2];\n if (matchExpr.CHILD.test(match[0])) {\n return null;\n }\n\n // Accept quoted arguments as-is\n if (match[3]) {\n match[2] = match[4] || match[5] || \"\";\n\n // Strip excess characters from unquoted arguments\n } else if (unquoted && rpseudo.test(unquoted) && (\n // Get excess from tokenize (recursively)\n excess = tokenize(unquoted, true)) && (\n // advance to the next closing parenthesis\n excess = unquoted.indexOf(\")\", unquoted.length - excess) - unquoted.length)) {\n // excess is a negative index\n match[0] = match[0].slice(0, excess);\n match[2] = unquoted.slice(0, excess);\n }\n\n // Return only captures needed by the pseudo filter method (type and argument)\n return match.slice(0, 3);\n }\n },\n filter: {\n TAG: function (nodeNameSelector) {\n var expectedNodeName = nodeNameSelector.replace(runescape, funescape).toLowerCase();\n return nodeNameSelector === \"*\" ? function () {\n return true;\n } : function (elem) {\n return nodeName(elem, expectedNodeName);\n };\n },\n CLASS: function (className) {\n var pattern = classCache[className + \" \"];\n return pattern || (pattern = new RegExp(\"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\")) && classCache(className, function (elem) {\n return pattern.test(typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\");\n });\n },\n ATTR: function (name, operator, check) {\n return function (elem) {\n var result = find.attr(elem, name);\n if (result == null) {\n return operator === \"!=\";\n }\n if (!operator) {\n return true;\n }\n result += \"\";\n if (operator === \"=\") {\n return result === check;\n }\n if (operator === \"!=\") {\n return result !== check;\n }\n if (operator === \"^=\") {\n return check && result.indexOf(check) === 0;\n }\n if (operator === \"*=\") {\n return check && result.indexOf(check) > -1;\n }\n if (operator === \"$=\") {\n return check && result.slice(-check.length) === check;\n }\n if (operator === \"~=\") {\n return (\" \" + result.replace(rwhitespace, \" \") + \" \").indexOf(check) > -1;\n }\n if (operator === \"|=\") {\n return result === check || result.slice(0, check.length + 1) === check + \"-\";\n }\n return false;\n };\n },\n CHILD: function (type, what, _argument, first, last) {\n var simple = type.slice(0, 3) !== \"nth\",\n forward = type.slice(-4) !== \"last\",\n ofType = what === \"of-type\";\n return first === 1 && last === 0 ?\n // Shortcut for :nth-*(n)\n function (elem) {\n return !!elem.parentNode;\n } : function (elem, _context, xml) {\n var cache,\n outerCache,\n node,\n nodeIndex,\n start,\n dir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n parent = elem.parentNode,\n name = ofType && elem.nodeName.toLowerCase(),\n useCache = !xml && !ofType,\n diff = false;\n if (parent) {\n // :(first|last|only)-(child|of-type)\n if (simple) {\n while (dir) {\n node = elem;\n while (node = node[dir]) {\n if (ofType ? nodeName(node, name) : node.nodeType === 1) {\n return false;\n }\n }\n\n // Reverse direction for :only-* (if we haven't yet done so)\n start = dir = type === \"only\" && !start && \"nextSibling\";\n }\n return true;\n }\n start = [forward ? parent.firstChild : parent.lastChild];\n\n // non-xml :nth-child(...) stores cache data on `parent`\n if (forward && useCache) {\n // Seek `elem` from a previously-cached index\n outerCache = parent[expando] || (parent[expando] = {});\n cache = outerCache[type] || [];\n nodeIndex = cache[0] === dirruns && cache[1];\n diff = nodeIndex && cache[2];\n node = nodeIndex && parent.childNodes[nodeIndex];\n while (node = ++nodeIndex && node && node[dir] || (\n // Fallback to seeking `elem` from the start\n diff = nodeIndex = 0) || start.pop()) {\n // When found, cache indexes on `parent` and break\n if (node.nodeType === 1 && ++diff && node === elem) {\n outerCache[type] = [dirruns, nodeIndex, diff];\n break;\n }\n }\n } else {\n // Use previously-cached element index if available\n if (useCache) {\n outerCache = elem[expando] || (elem[expando] = {});\n cache = outerCache[type] || [];\n nodeIndex = cache[0] === dirruns && cache[1];\n diff = nodeIndex;\n }\n\n // xml :nth-child(...)\n // or :nth-last-child(...) or :nth(-last)?-of-type(...)\n if (diff === false) {\n // Use the same loop as above to seek `elem` from the start\n while (node = ++nodeIndex && node && node[dir] || (diff = nodeIndex = 0) || start.pop()) {\n if ((ofType ? nodeName(node, name) : node.nodeType === 1) && ++diff) {\n // Cache the index of each encountered element\n if (useCache) {\n outerCache = node[expando] || (node[expando] = {});\n outerCache[type] = [dirruns, diff];\n }\n if (node === elem) {\n break;\n }\n }\n }\n }\n }\n\n // Incorporate the offset, then check against cycle size\n diff -= last;\n return diff === first || diff % first === 0 && diff / first >= 0;\n }\n };\n },\n PSEUDO: function (pseudo, argument) {\n // pseudo-class names are case-insensitive\n // https://www.w3.org/TR/selectors/#pseudo-classes\n // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n // Remember that setFilters inherits from pseudos\n var args,\n fn = Expr.pseudos[pseudo] || Expr.setFilters[pseudo.toLowerCase()] || find.error(\"unsupported pseudo: \" + pseudo);\n\n // The user may use createPseudo to indicate that\n // arguments are needed to create the filter function\n // just as jQuery does\n if (fn[expando]) {\n return fn(argument);\n }\n\n // But maintain support for old signatures\n if (fn.length > 1) {\n args = [pseudo, pseudo, \"\", argument];\n return Expr.setFilters.hasOwnProperty(pseudo.toLowerCase()) ? markFunction(function (seed, matches) {\n var idx,\n matched = fn(seed, argument),\n i = matched.length;\n while (i--) {\n idx = indexOf.call(seed, matched[i]);\n seed[idx] = !(matches[idx] = matched[i]);\n }\n }) : function (elem) {\n return fn(elem, 0, args);\n };\n }\n return fn;\n }\n },\n pseudos: {\n // Potentially complex pseudos\n not: markFunction(function (selector) {\n // Trim the selector passed to compile\n // to avoid treating leading and trailing\n // spaces as combinators\n var input = [],\n results = [],\n matcher = compile(selector.replace(rtrimCSS, \"$1\"));\n return matcher[expando] ? markFunction(function (seed, matches, _context, xml) {\n var elem,\n unmatched = matcher(seed, null, xml, []),\n i = seed.length;\n\n // Match elements unmatched by `matcher`\n while (i--) {\n if (elem = unmatched[i]) {\n seed[i] = !(matches[i] = elem);\n }\n }\n }) : function (elem, _context, xml) {\n input[0] = elem;\n matcher(input, null, xml, results);\n\n // Don't keep the element\n // (see https://github.com/jquery/sizzle/issues/299)\n input[0] = null;\n return !results.pop();\n };\n }),\n has: markFunction(function (selector) {\n return function (elem) {\n return find(selector, elem).length > 0;\n };\n }),\n contains: markFunction(function (text) {\n text = text.replace(runescape, funescape);\n return function (elem) {\n return (elem.textContent || jQuery.text(elem)).indexOf(text) > -1;\n };\n }),\n // \"Whether an element is represented by a :lang() selector\n // is based solely on the element's language value\n // being equal to the identifier C,\n // or beginning with the identifier C immediately followed by \"-\".\n // The matching of C against the element's language value is performed case-insensitively.\n // The identifier C does not have to be a valid language name.\"\n // https://www.w3.org/TR/selectors/#lang-pseudo\n lang: markFunction(function (lang) {\n // lang value must be a valid identifier\n if (!ridentifier.test(lang || \"\")) {\n find.error(\"unsupported lang: \" + lang);\n }\n lang = lang.replace(runescape, funescape).toLowerCase();\n return function (elem) {\n var elemLang;\n do {\n if (elemLang = documentIsHTML ? elem.lang : elem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) {\n elemLang = elemLang.toLowerCase();\n return elemLang === lang || elemLang.indexOf(lang + \"-\") === 0;\n }\n } while ((elem = elem.parentNode) && elem.nodeType === 1);\n return false;\n };\n }),\n // Miscellaneous\n target: function (elem) {\n var hash = window.location && window.location.hash;\n return hash && hash.slice(1) === elem.id;\n },\n root: function (elem) {\n return elem === documentElement;\n },\n focus: function (elem) {\n return elem === safeActiveElement() && document.hasFocus() && !!(elem.type || elem.href || ~elem.tabIndex);\n },\n // Boolean properties\n enabled: createDisabledPseudo(false),\n disabled: createDisabledPseudo(true),\n checked: function (elem) {\n // In CSS3, :checked should return both checked and selected elements\n // https://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n return nodeName(elem, \"input\") && !!elem.checked || nodeName(elem, \"option\") && !!elem.selected;\n },\n selected: function (elem) {\n // Support: IE <=11+\n // Accessing the selectedIndex property\n // forces the browser to treat the default option as\n // selected when in an optgroup.\n if (elem.parentNode) {\n // eslint-disable-next-line no-unused-expressions\n elem.parentNode.selectedIndex;\n }\n return elem.selected === true;\n },\n // Contents\n empty: function (elem) {\n // https://www.w3.org/TR/selectors/#empty-pseudo\n // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n // but not by others (comment: 8; processing instruction: 7; etc.)\n // nodeType < 6 works because attributes (2) do not appear as children\n for (elem = elem.firstChild; elem; elem = elem.nextSibling) {\n if (elem.nodeType < 6) {\n return false;\n }\n }\n return true;\n },\n parent: function (elem) {\n return !Expr.pseudos.empty(elem);\n },\n // Element/input types\n header: function (elem) {\n return rheader.test(elem.nodeName);\n },\n input: function (elem) {\n return rinputs.test(elem.nodeName);\n },\n button: function (elem) {\n return nodeName(elem, \"input\") && elem.type === \"button\" || nodeName(elem, \"button\");\n },\n text: function (elem) {\n var attr;\n return nodeName(elem, \"input\") && elem.type === \"text\" && (\n // Support: IE <10 only\n // New HTML5 attribute values (e.g., \"search\") appear\n // with elem.type === \"text\"\n (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\");\n },\n // Position-in-collection\n first: createPositionalPseudo(function () {\n return [0];\n }),\n last: createPositionalPseudo(function (_matchIndexes, length) {\n return [length - 1];\n }),\n eq: createPositionalPseudo(function (_matchIndexes, length, argument) {\n return [argument < 0 ? argument + length : argument];\n }),\n even: createPositionalPseudo(function (matchIndexes, length) {\n var i = 0;\n for (; i < length; i += 2) {\n matchIndexes.push(i);\n }\n return matchIndexes;\n }),\n odd: createPositionalPseudo(function (matchIndexes, length) {\n var i = 1;\n for (; i < length; i += 2) {\n matchIndexes.push(i);\n }\n return matchIndexes;\n }),\n lt: createPositionalPseudo(function (matchIndexes, length, argument) {\n var i;\n if (argument < 0) {\n i = argument + length;\n } else if (argument > length) {\n i = length;\n } else {\n i = argument;\n }\n for (; --i >= 0;) {\n matchIndexes.push(i);\n }\n return matchIndexes;\n }),\n gt: createPositionalPseudo(function (matchIndexes, length, argument) {\n var i = argument < 0 ? argument + length : argument;\n for (; ++i < length;) {\n matchIndexes.push(i);\n }\n return matchIndexes;\n })\n }\n };\n Expr.pseudos.nth = Expr.pseudos.eq;\n\n // Add button/input type pseudos\n for (i in {\n radio: true,\n checkbox: true,\n file: true,\n password: true,\n image: true\n }) {\n Expr.pseudos[i] = createInputPseudo(i);\n }\n for (i in {\n submit: true,\n reset: true\n }) {\n Expr.pseudos[i] = createButtonPseudo(i);\n }\n\n // Easy API for creating new setFilters\n function setFilters() {}\n setFilters.prototype = Expr.filters = Expr.pseudos;\n Expr.setFilters = new setFilters();\n function tokenize(selector, parseOnly) {\n var matched,\n match,\n tokens,\n type,\n soFar,\n groups,\n preFilters,\n cached = tokenCache[selector + \" \"];\n if (cached) {\n return parseOnly ? 0 : cached.slice(0);\n }\n soFar = selector;\n groups = [];\n preFilters = Expr.preFilter;\n while (soFar) {\n // Comma and first run\n if (!matched || (match = rcomma.exec(soFar))) {\n if (match) {\n // Don't consume trailing commas as valid\n soFar = soFar.slice(match[0].length) || soFar;\n }\n groups.push(tokens = []);\n }\n matched = false;\n\n // Combinators\n if (match = rleadingCombinator.exec(soFar)) {\n matched = match.shift();\n tokens.push({\n value: matched,\n // Cast descendant combinators to space\n type: match[0].replace(rtrimCSS, \" \")\n });\n soFar = soFar.slice(matched.length);\n }\n\n // Filters\n for (type in Expr.filter) {\n if ((match = matchExpr[type].exec(soFar)) && (!preFilters[type] || (match = preFilters[type](match)))) {\n matched = match.shift();\n tokens.push({\n value: matched,\n type: type,\n matches: match\n });\n soFar = soFar.slice(matched.length);\n }\n }\n if (!matched) {\n break;\n }\n }\n\n // Return the length of the invalid excess\n // if we're just parsing\n // Otherwise, throw an error or return tokens\n if (parseOnly) {\n return soFar.length;\n }\n return soFar ? find.error(selector) :\n // Cache the tokens\n tokenCache(selector, groups).slice(0);\n }\n function toSelector(tokens) {\n var i = 0,\n len = tokens.length,\n selector = \"\";\n for (; i < len; i++) {\n selector += tokens[i].value;\n }\n return selector;\n }\n function addCombinator(matcher, combinator, base) {\n var dir = combinator.dir,\n skip = combinator.next,\n key = skip || dir,\n checkNonElements = base && key === \"parentNode\",\n doneName = done++;\n return combinator.first ?\n // Check against closest ancestor/preceding element\n function (elem, context, xml) {\n while (elem = elem[dir]) {\n if (elem.nodeType === 1 || checkNonElements) {\n return matcher(elem, context, xml);\n }\n }\n return false;\n } :\n // Check against all ancestor/preceding elements\n function (elem, context, xml) {\n var oldCache,\n outerCache,\n newCache = [dirruns, doneName];\n\n // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n if (xml) {\n while (elem = elem[dir]) {\n if (elem.nodeType === 1 || checkNonElements) {\n if (matcher(elem, context, xml)) {\n return true;\n }\n }\n }\n } else {\n while (elem = elem[dir]) {\n if (elem.nodeType === 1 || checkNonElements) {\n outerCache = elem[expando] || (elem[expando] = {});\n if (skip && nodeName(elem, skip)) {\n elem = elem[dir] || elem;\n } else if ((oldCache = outerCache[key]) && oldCache[0] === dirruns && oldCache[1] === doneName) {\n // Assign to newCache so results back-propagate to previous elements\n return newCache[2] = oldCache[2];\n } else {\n // Reuse newcache so results back-propagate to previous elements\n outerCache[key] = newCache;\n\n // A match means we're done; a fail means we have to keep checking\n if (newCache[2] = matcher(elem, context, xml)) {\n return true;\n }\n }\n }\n }\n }\n return false;\n };\n }\n function elementMatcher(matchers) {\n return matchers.length > 1 ? function (elem, context, xml) {\n var i = matchers.length;\n while (i--) {\n if (!matchers[i](elem, context, xml)) {\n return false;\n }\n }\n return true;\n } : matchers[0];\n }\n function multipleContexts(selector, contexts, results) {\n var i = 0,\n len = contexts.length;\n for (; i < len; i++) {\n find(selector, contexts[i], results);\n }\n return results;\n }\n function condense(unmatched, map, filter, context, xml) {\n var elem,\n newUnmatched = [],\n i = 0,\n len = unmatched.length,\n mapped = map != null;\n for (; i < len; i++) {\n if (elem = unmatched[i]) {\n if (!filter || filter(elem, context, xml)) {\n newUnmatched.push(elem);\n if (mapped) {\n map.push(i);\n }\n }\n }\n }\n return newUnmatched;\n }\n function setMatcher(preFilter, selector, matcher, postFilter, postFinder, postSelector) {\n if (postFilter && !postFilter[expando]) {\n postFilter = setMatcher(postFilter);\n }\n if (postFinder && !postFinder[expando]) {\n postFinder = setMatcher(postFinder, postSelector);\n }\n return markFunction(function (seed, results, context, xml) {\n var temp,\n i,\n elem,\n matcherOut,\n preMap = [],\n postMap = [],\n preexisting = results.length,\n // Get initial elements from seed or context\n elems = seed || multipleContexts(selector || \"*\", context.nodeType ? [context] : context, []),\n // Prefilter to get matcher input, preserving a map for seed-results synchronization\n matcherIn = preFilter && (seed || !selector) ? condense(elems, preMap, preFilter, context, xml) : elems;\n if (matcher) {\n // If we have a postFinder, or filtered seed, or non-seed postFilter\n // or preexisting results,\n matcherOut = postFinder || (seed ? preFilter : preexisting || postFilter) ?\n // ...intermediate processing is necessary\n [] :\n // ...otherwise use results directly\n results;\n\n // Find primary matches\n matcher(matcherIn, matcherOut, context, xml);\n } else {\n matcherOut = matcherIn;\n }\n\n // Apply postFilter\n if (postFilter) {\n temp = condense(matcherOut, postMap);\n postFilter(temp, [], context, xml);\n\n // Un-match failing elements by moving them back to matcherIn\n i = temp.length;\n while (i--) {\n if (elem = temp[i]) {\n matcherOut[postMap[i]] = !(matcherIn[postMap[i]] = elem);\n }\n }\n }\n if (seed) {\n if (postFinder || preFilter) {\n if (postFinder) {\n // Get the final matcherOut by condensing this intermediate into postFinder contexts\n temp = [];\n i = matcherOut.length;\n while (i--) {\n if (elem = matcherOut[i]) {\n // Restore matcherIn since elem is not yet a final match\n temp.push(matcherIn[i] = elem);\n }\n }\n postFinder(null, matcherOut = [], temp, xml);\n }\n\n // Move matched elements from seed to results to keep them synchronized\n i = matcherOut.length;\n while (i--) {\n if ((elem = matcherOut[i]) && (temp = postFinder ? indexOf.call(seed, elem) : preMap[i]) > -1) {\n seed[temp] = !(results[temp] = elem);\n }\n }\n }\n\n // Add elements to results, through postFinder if defined\n } else {\n matcherOut = condense(matcherOut === results ? matcherOut.splice(preexisting, matcherOut.length) : matcherOut);\n if (postFinder) {\n postFinder(null, results, matcherOut, xml);\n } else {\n push.apply(results, matcherOut);\n }\n }\n });\n }\n function matcherFromTokens(tokens) {\n var checkContext,\n matcher,\n j,\n len = tokens.length,\n leadingRelative = Expr.relative[tokens[0].type],\n implicitRelative = leadingRelative || Expr.relative[\" \"],\n i = leadingRelative ? 1 : 0,\n // The foundational matcher ensures that elements are reachable from top-level context(s)\n matchContext = addCombinator(function (elem) {\n return elem === checkContext;\n }, implicitRelative, true),\n matchAnyContext = addCombinator(function (elem) {\n return indexOf.call(checkContext, elem) > -1;\n }, implicitRelative, true),\n matchers = [function (elem, context, xml) {\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n var ret = !leadingRelative && (xml || context != outermostContext) || ((checkContext = context).nodeType ? matchContext(elem, context, xml) : matchAnyContext(elem, context, xml));\n\n // Avoid hanging onto element\n // (see https://github.com/jquery/sizzle/issues/299)\n checkContext = null;\n return ret;\n }];\n for (; i < len; i++) {\n if (matcher = Expr.relative[tokens[i].type]) {\n matchers = [addCombinator(elementMatcher(matchers), matcher)];\n } else {\n matcher = Expr.filter[tokens[i].type].apply(null, tokens[i].matches);\n\n // Return special upon seeing a positional matcher\n if (matcher[expando]) {\n // Find the next relative operator (if any) for proper handling\n j = ++i;\n for (; j < len; j++) {\n if (Expr.relative[tokens[j].type]) {\n break;\n }\n }\n return setMatcher(i > 1 && elementMatcher(matchers), i > 1 && toSelector(\n // If the preceding token was a descendant combinator, insert an implicit any-element `*`\n tokens.slice(0, i - 1).concat({\n value: tokens[i - 2].type === \" \" ? \"*\" : \"\"\n })).replace(rtrimCSS, \"$1\"), matcher, i < j && matcherFromTokens(tokens.slice(i, j)), j < len && matcherFromTokens(tokens = tokens.slice(j)), j < len && toSelector(tokens));\n }\n matchers.push(matcher);\n }\n }\n return elementMatcher(matchers);\n }\n function matcherFromGroupMatchers(elementMatchers, setMatchers) {\n var bySet = setMatchers.length > 0,\n byElement = elementMatchers.length > 0,\n superMatcher = function (seed, context, xml, results, outermost) {\n var elem,\n j,\n matcher,\n matchedCount = 0,\n i = \"0\",\n unmatched = seed && [],\n setMatched = [],\n contextBackup = outermostContext,\n // We must always have either seed elements or outermost context\n elems = seed || byElement && Expr.find.TAG(\"*\", outermost),\n // Use integer dirruns iff this is the outermost matcher\n dirrunsUnique = dirruns += contextBackup == null ? 1 : Math.random() || 0.1,\n len = elems.length;\n if (outermost) {\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n outermostContext = context == document || context || outermost;\n }\n\n // Add elements passing elementMatchers directly to results\n // Support: iOS <=7 - 9 only\n // Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching\n // elements by id. (see trac-14142)\n for (; i !== len && (elem = elems[i]) != null; i++) {\n if (byElement && elem) {\n j = 0;\n\n // Support: IE 11+, Edge 17 - 18+\n // IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n // two documents; shallow comparisons work.\n // eslint-disable-next-line eqeqeq\n if (!context && elem.ownerDocument != document) {\n setDocument(elem);\n xml = !documentIsHTML;\n }\n while (matcher = elementMatchers[j++]) {\n if (matcher(elem, context || document, xml)) {\n push.call(results, elem);\n break;\n }\n }\n if (outermost) {\n dirruns = dirrunsUnique;\n }\n }\n\n // Track unmatched elements for set filters\n if (bySet) {\n // They will have gone through all possible matchers\n if (elem = !matcher && elem) {\n matchedCount--;\n }\n\n // Lengthen the array for every element, matched or not\n if (seed) {\n unmatched.push(elem);\n }\n }\n }\n\n // `i` is now the count of elements visited above, and adding it to `matchedCount`\n // makes the latter nonnegative.\n matchedCount += i;\n\n // Apply set filters to unmatched elements\n // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n // equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n // no element matchers and no seed.\n // Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n // case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n // numerically zero.\n if (bySet && i !== matchedCount) {\n j = 0;\n while (matcher = setMatchers[j++]) {\n matcher(unmatched, setMatched, context, xml);\n }\n if (seed) {\n // Reintegrate element matches to eliminate the need for sorting\n if (matchedCount > 0) {\n while (i--) {\n if (!(unmatched[i] || setMatched[i])) {\n setMatched[i] = pop.call(results);\n }\n }\n }\n\n // Discard index placeholder values to get only actual matches\n setMatched = condense(setMatched);\n }\n\n // Add matches to results\n push.apply(results, setMatched);\n\n // Seedless set matches succeeding multiple successful matchers stipulate sorting\n if (outermost && !seed && setMatched.length > 0 && matchedCount + setMatchers.length > 1) {\n jQuery.uniqueSort(results);\n }\n }\n\n // Override manipulation of globals by nested matchers\n if (outermost) {\n dirruns = dirrunsUnique;\n outermostContext = contextBackup;\n }\n return unmatched;\n };\n return bySet ? markFunction(superMatcher) : superMatcher;\n }\n function compile(selector, match /* Internal Use Only */) {\n var i,\n setMatchers = [],\n elementMatchers = [],\n cached = compilerCache[selector + \" \"];\n if (!cached) {\n // Generate a function of recursive functions that can be used to check each element\n if (!match) {\n match = tokenize(selector);\n }\n i = match.length;\n while (i--) {\n cached = matcherFromTokens(match[i]);\n if (cached[expando]) {\n setMatchers.push(cached);\n } else {\n elementMatchers.push(cached);\n }\n }\n\n // Cache the compiled function\n cached = compilerCache(selector, matcherFromGroupMatchers(elementMatchers, setMatchers));\n\n // Save selector and tokenization\n cached.selector = selector;\n }\n return cached;\n }\n\n /**\n * A low-level selection function that works with jQuery's compiled\n * selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n * selector function built with jQuery selector compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\n function select(selector, context, results, seed) {\n var i,\n tokens,\n token,\n type,\n find,\n compiled = typeof selector === \"function\" && selector,\n match = !seed && tokenize(selector = compiled.selector || selector);\n results = results || [];\n\n // Try to minimize operations if there is only one selector in the list and no seed\n // (the latter of which guarantees us context)\n if (match.length === 1) {\n // Reduce context if the leading compound selector is an ID\n tokens = match[0] = match[0].slice(0);\n if (tokens.length > 2 && (token = tokens[0]).type === \"ID\" && context.nodeType === 9 && documentIsHTML && Expr.relative[tokens[1].type]) {\n context = (Expr.find.ID(token.matches[0].replace(runescape, funescape), context) || [])[0];\n if (!context) {\n return results;\n\n // Precompiled matchers will still verify ancestry, so step up a level\n } else if (compiled) {\n context = context.parentNode;\n }\n selector = selector.slice(tokens.shift().value.length);\n }\n\n // Fetch a seed set for right-to-left matching\n i = matchExpr.needsContext.test(selector) ? 0 : tokens.length;\n while (i--) {\n token = tokens[i];\n\n // Abort if we hit a combinator\n if (Expr.relative[type = token.type]) {\n break;\n }\n if (find = Expr.find[type]) {\n // Search, expanding context for leading sibling combinators\n if (seed = find(token.matches[0].replace(runescape, funescape), rsibling.test(tokens[0].type) && testContext(context.parentNode) || context)) {\n // If seed is empty or no tokens remain, we can return early\n tokens.splice(i, 1);\n selector = seed.length && toSelector(tokens);\n if (!selector) {\n push.apply(results, seed);\n return results;\n }\n break;\n }\n }\n }\n }\n\n // Compile and execute a filtering function if one is not provided\n // Provide `match` to avoid retokenization if we modified the selector above\n (compiled || compile(selector, match))(seed, context, !documentIsHTML, results, !context || rsibling.test(selector) && testContext(context.parentNode) || context);\n return results;\n }\n\n // One-time assignments\n\n // Support: Android <=4.0 - 4.1+\n // Sort stability\n support.sortStable = expando.split(\"\").sort(sortOrder).join(\"\") === expando;\n\n // Initialize against the default document\n setDocument();\n\n // Support: Android <=4.0 - 4.1+\n // Detached nodes confoundingly follow *each other*\n support.sortDetached = assert(function (el) {\n // Should return 1, but returns 4 (following)\n return el.compareDocumentPosition(document.createElement(\"fieldset\")) & 1;\n });\n jQuery.find = find;\n\n // Deprecated\n jQuery.expr[\":\"] = jQuery.expr.pseudos;\n jQuery.unique = jQuery.uniqueSort;\n\n // These have always been private, but they used to be documented as part of\n // Sizzle so let's maintain them for now for backwards compatibility purposes.\n find.compile = compile;\n find.select = select;\n find.setDocument = setDocument;\n find.tokenize = tokenize;\n find.escape = jQuery.escapeSelector;\n find.getText = jQuery.text;\n find.isXML = jQuery.isXMLDoc;\n find.selectors = jQuery.expr;\n find.support = jQuery.support;\n find.uniqueSort = jQuery.uniqueSort;\n\n /* eslint-enable */\n })();\n var dir = function (elem, dir, until) {\n var matched = [],\n truncate = until !== undefined;\n while ((elem = elem[dir]) && elem.nodeType !== 9) {\n if (elem.nodeType === 1) {\n if (truncate && jQuery(elem).is(until)) {\n break;\n }\n matched.push(elem);\n }\n }\n return matched;\n };\n var siblings = function (n, elem) {\n var matched = [];\n for (; n; n = n.nextSibling) {\n if (n.nodeType === 1 && n !== elem) {\n matched.push(n);\n }\n }\n return matched;\n };\n var rneedsContext = jQuery.expr.match.needsContext;\n var rsingleTag = /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;\n\n // Implement the identical functionality for filter and not\n function winnow(elements, qualifier, not) {\n if (isFunction(qualifier)) {\n return jQuery.grep(elements, function (elem, i) {\n return !!qualifier.call(elem, i, elem) !== not;\n });\n }\n\n // Single element\n if (qualifier.nodeType) {\n return jQuery.grep(elements, function (elem) {\n return elem === qualifier !== not;\n });\n }\n\n // Arraylike of elements (jQuery, arguments, Array)\n if (typeof qualifier !== \"string\") {\n return jQuery.grep(elements, function (elem) {\n return indexOf.call(qualifier, elem) > -1 !== not;\n });\n }\n\n // Filtered directly for both simple and complex selectors\n return jQuery.filter(qualifier, elements, not);\n }\n jQuery.filter = function (expr, elems, not) {\n var elem = elems[0];\n if (not) {\n expr = \":not(\" + expr + \")\";\n }\n if (elems.length === 1 && elem.nodeType === 1) {\n return jQuery.find.matchesSelector(elem, expr) ? [elem] : [];\n }\n return jQuery.find.matches(expr, jQuery.grep(elems, function (elem) {\n return elem.nodeType === 1;\n }));\n };\n jQuery.fn.extend({\n find: function (selector) {\n var i,\n ret,\n len = this.length,\n self = this;\n if (typeof selector !== \"string\") {\n return this.pushStack(jQuery(selector).filter(function () {\n for (i = 0; i < len; i++) {\n if (jQuery.contains(self[i], this)) {\n return true;\n }\n }\n }));\n }\n ret = this.pushStack([]);\n for (i = 0; i < len; i++) {\n jQuery.find(selector, self[i], ret);\n }\n return len > 1 ? jQuery.uniqueSort(ret) : ret;\n },\n filter: function (selector) {\n return this.pushStack(winnow(this, selector || [], false));\n },\n not: function (selector) {\n return this.pushStack(winnow(this, selector || [], true));\n },\n is: function (selector) {\n return !!winnow(this,\n // If this is a positional/relative selector, check membership in the returned set\n // so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n typeof selector === \"string\" && rneedsContext.test(selector) ? jQuery(selector) : selector || [], false).length;\n }\n });\n\n // Initialize a jQuery object\n\n // A central reference to the root jQuery(document)\n var rootjQuery,\n // A simple way to check for HTML strings\n // Prioritize #id over <tag> to avoid XSS via location.hash (trac-9521)\n // Strict HTML recognition (trac-11290: must start with <)\n // Shortcut simple #id case for speed\n rquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n init = jQuery.fn.init = function (selector, context, root) {\n var match, elem;\n\n // HANDLE: $(\"\"), $(null), $(undefined), $(false)\n if (!selector) {\n return this;\n }\n\n // Method init() accepts an alternate rootjQuery\n // so migrate can support jQuery.sub (gh-2101)\n root = root || rootjQuery;\n\n // Handle HTML strings\n if (typeof selector === \"string\") {\n if (selector[0] === \"<\" && selector[selector.length - 1] === \">\" && selector.length >= 3) {\n // Assume that strings that start and end with <> are HTML and skip the regex check\n match = [null, selector, null];\n } else {\n match = rquickExpr.exec(selector);\n }\n\n // Match html or make sure no context is specified for #id\n if (match && (match[1] || !context)) {\n // HANDLE: $(html) -> $(array)\n if (match[1]) {\n context = context instanceof jQuery ? context[0] : context;\n\n // Option to run scripts is true for back-compat\n // Intentionally let the error be thrown if parseHTML is not present\n jQuery.merge(this, jQuery.parseHTML(match[1], context && context.nodeType ? context.ownerDocument || context : document, true));\n\n // HANDLE: $(html, props)\n if (rsingleTag.test(match[1]) && jQuery.isPlainObject(context)) {\n for (match in context) {\n // Properties of context are called as methods if possible\n if (isFunction(this[match])) {\n this[match](context[match]);\n\n // ...and otherwise set as attributes\n } else {\n this.attr(match, context[match]);\n }\n }\n }\n return this;\n\n // HANDLE: $(#id)\n } else {\n elem = document.getElementById(match[2]);\n if (elem) {\n // Inject the element directly into the jQuery object\n this[0] = elem;\n this.length = 1;\n }\n return this;\n }\n\n // HANDLE: $(expr, $(...))\n } else if (!context || context.jquery) {\n return (context || root).find(selector);\n\n // HANDLE: $(expr, context)\n // (which is just equivalent to: $(context).find(expr)\n } else {\n return this.constructor(context).find(selector);\n }\n\n // HANDLE: $(DOMElement)\n } else if (selector.nodeType) {\n this[0] = selector;\n this.length = 1;\n return this;\n\n // HANDLE: $(function)\n // Shortcut for document ready\n } else if (isFunction(selector)) {\n return root.ready !== undefined ? root.ready(selector) :\n // Execute immediately if ready is not present\n selector(jQuery);\n }\n return jQuery.makeArray(selector, this);\n };\n\n // Give the init function the jQuery prototype for later instantiation\n init.prototype = jQuery.fn;\n\n // Initialize central reference\n rootjQuery = jQuery(document);\n var rparentsprev = /^(?:parents|prev(?:Until|All))/,\n // Methods guaranteed to produce a unique set when starting from a unique set\n guaranteedUnique = {\n children: true,\n contents: true,\n next: true,\n prev: true\n };\n jQuery.fn.extend({\n has: function (target) {\n var targets = jQuery(target, this),\n l = targets.length;\n return this.filter(function () {\n var i = 0;\n for (; i < l; i++) {\n if (jQuery.contains(this, targets[i])) {\n return true;\n }\n }\n });\n },\n closest: function (selectors, context) {\n var cur,\n i = 0,\n l = this.length,\n matched = [],\n targets = typeof selectors !== \"string\" && jQuery(selectors);\n\n // Positional selectors never match, since there's no _selection_ context\n if (!rneedsContext.test(selectors)) {\n for (; i < l; i++) {\n for (cur = this[i]; cur && cur !== context; cur = cur.parentNode) {\n // Always skip document fragments\n if (cur.nodeType < 11 && (targets ? targets.index(cur) > -1 :\n // Don't pass non-elements to jQuery#find\n cur.nodeType === 1 && jQuery.find.matchesSelector(cur, selectors))) {\n matched.push(cur);\n break;\n }\n }\n }\n }\n return this.pushStack(matched.length > 1 ? jQuery.uniqueSort(matched) : matched);\n },\n // Determine the position of an element within the set\n index: function (elem) {\n // No argument, return index in parent\n if (!elem) {\n return this[0] && this[0].parentNode ? this.first().prevAll().length : -1;\n }\n\n // Index in selector\n if (typeof elem === \"string\") {\n return indexOf.call(jQuery(elem), this[0]);\n }\n\n // Locate the position of the desired element\n return indexOf.call(this,\n // If it receives a jQuery object, the first element is used\n elem.jquery ? elem[0] : elem);\n },\n add: function (selector, context) {\n return this.pushStack(jQuery.uniqueSort(jQuery.merge(this.get(), jQuery(selector, context))));\n },\n addBack: function (selector) {\n return this.add(selector == null ? this.prevObject : this.prevObject.filter(selector));\n }\n });\n function sibling(cur, dir) {\n while ((cur = cur[dir]) && cur.nodeType !== 1) {}\n return cur;\n }\n jQuery.each({\n parent: function (elem) {\n var parent = elem.parentNode;\n return parent && parent.nodeType !== 11 ? parent : null;\n },\n parents: function (elem) {\n return dir(elem, \"parentNode\");\n },\n parentsUntil: function (elem, _i, until) {\n return dir(elem, \"parentNode\", until);\n },\n next: function (elem) {\n return sibling(elem, \"nextSibling\");\n },\n prev: function (elem) {\n return sibling(elem, \"previousSibling\");\n },\n nextAll: function (elem) {\n return dir(elem, \"nextSibling\");\n },\n prevAll: function (elem) {\n return dir(elem, \"previousSibling\");\n },\n nextUntil: function (elem, _i, until) {\n return dir(elem, \"nextSibling\", until);\n },\n prevUntil: function (elem, _i, until) {\n return dir(elem, \"previousSibling\", until);\n },\n siblings: function (elem) {\n return siblings((elem.parentNode || {}).firstChild, elem);\n },\n children: function (elem) {\n return siblings(elem.firstChild);\n },\n contents: function (elem) {\n if (elem.contentDocument != null &&\n // Support: IE 11+\n // <object> elements with no `data` attribute has an object\n // `contentDocument` with a `null` prototype.\n getProto(elem.contentDocument)) {\n return elem.contentDocument;\n }\n\n // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n // Treat the template element as a regular one in browsers that\n // don't support it.\n if (nodeName(elem, \"template\")) {\n elem = elem.content || elem;\n }\n return jQuery.merge([], elem.childNodes);\n }\n }, function (name, fn) {\n jQuery.fn[name] = function (until, selector) {\n var matched = jQuery.map(this, fn, until);\n if (name.slice(-5) !== \"Until\") {\n selector = until;\n }\n if (selector && typeof selector === \"string\") {\n matched = jQuery.filter(selector, matched);\n }\n if (this.length > 1) {\n // Remove duplicates\n if (!guaranteedUnique[name]) {\n jQuery.uniqueSort(matched);\n }\n\n // Reverse order for parents* and prev-derivatives\n if (rparentsprev.test(name)) {\n matched.reverse();\n }\n }\n return this.pushStack(matched);\n };\n });\n var rnothtmlwhite = /[^\\x20\\t\\r\\n\\f]+/g;\n\n // Convert String-formatted options into Object-formatted ones\n function createOptions(options) {\n var object = {};\n jQuery.each(options.match(rnothtmlwhite) || [], function (_, flag) {\n object[flag] = true;\n });\n return object;\n }\n\n /*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\n jQuery.Callbacks = function (options) {\n // Convert options from String-formatted to Object-formatted if needed\n // (we check in cache first)\n options = typeof options === \"string\" ? createOptions(options) : jQuery.extend({}, options);\n var\n // Flag to know if list is currently firing\n firing,\n // Last fire value for non-forgettable lists\n memory,\n // Flag to know if list was already fired\n fired,\n // Flag to prevent firing\n locked,\n // Actual callback list\n list = [],\n // Queue of execution data for repeatable lists\n queue = [],\n // Index of currently firing callback (modified by add/remove as needed)\n firingIndex = -1,\n // Fire callbacks\n fire = function () {\n // Enforce single-firing\n locked = locked || options.once;\n\n // Execute callbacks for all pending executions,\n // respecting firingIndex overrides and runtime changes\n fired = firing = true;\n for (; queue.length; firingIndex = -1) {\n memory = queue.shift();\n while (++firingIndex < list.length) {\n // Run callback and check for early termination\n if (list[firingIndex].apply(memory[0], memory[1]) === false && options.stopOnFalse) {\n // Jump to end and forget the data so .add doesn't re-fire\n firingIndex = list.length;\n memory = false;\n }\n }\n }\n\n // Forget the data if we're done with it\n if (!options.memory) {\n memory = false;\n }\n firing = false;\n\n // Clean up if we're done firing for good\n if (locked) {\n // Keep an empty list if we have data for future add calls\n if (memory) {\n list = [];\n\n // Otherwise, this object is spent\n } else {\n list = \"\";\n }\n }\n },\n // Actual Callbacks object\n self = {\n // Add a callback or a collection of callbacks to the list\n add: function () {\n if (list) {\n // If we have memory from a past run, we should fire after adding\n if (memory && !firing) {\n firingIndex = list.length - 1;\n queue.push(memory);\n }\n (function add(args) {\n jQuery.each(args, function (_, arg) {\n if (isFunction(arg)) {\n if (!options.unique || !self.has(arg)) {\n list.push(arg);\n }\n } else if (arg && arg.length && toType(arg) !== \"string\") {\n // Inspect recursively\n add(arg);\n }\n });\n })(arguments);\n if (memory && !firing) {\n fire();\n }\n }\n return this;\n },\n // Remove a callback from the list\n remove: function () {\n jQuery.each(arguments, function (_, arg) {\n var index;\n while ((index = jQuery.inArray(arg, list, index)) > -1) {\n list.splice(index, 1);\n\n // Handle firing indexes\n if (index <= firingIndex) {\n firingIndex--;\n }\n }\n });\n return this;\n },\n // Check if a given callback is in the list.\n // If no argument is given, return whether or not list has callbacks attached.\n has: function (fn) {\n return fn ? jQuery.inArray(fn, list) > -1 : list.length > 0;\n },\n // Remove all callbacks from the list\n empty: function () {\n if (list) {\n list = [];\n }\n return this;\n },\n // Disable .fire and .add\n // Abort any current/pending executions\n // Clear all callbacks and values\n disable: function () {\n locked = queue = [];\n list = memory = \"\";\n return this;\n },\n disabled: function () {\n return !list;\n },\n // Disable .fire\n // Also disable .add unless we have memory (since it would have no effect)\n // Abort any pending executions\n lock: function () {\n locked = queue = [];\n if (!memory && !firing) {\n list = memory = \"\";\n }\n return this;\n },\n locked: function () {\n return !!locked;\n },\n // Call all callbacks with the given context and arguments\n fireWith: function (context, args) {\n if (!locked) {\n args = args || [];\n args = [context, args.slice ? args.slice() : args];\n queue.push(args);\n if (!firing) {\n fire();\n }\n }\n return this;\n },\n // Call all the callbacks with the given arguments\n fire: function () {\n self.fireWith(this, arguments);\n return this;\n },\n // To know if the callbacks have already been called at least once\n fired: function () {\n return !!fired;\n }\n };\n return self;\n };\n function Identity(v) {\n return v;\n }\n function Thrower(ex) {\n throw ex;\n }\n function adoptValue(value, resolve, reject, noValue) {\n var method;\n try {\n // Check for promise aspect first to privilege synchronous behavior\n if (value && isFunction(method = value.promise)) {\n method.call(value).done(resolve).fail(reject);\n\n // Other thenables\n } else if (value && isFunction(method = value.then)) {\n method.call(value, resolve, reject);\n\n // Other non-thenables\n } else {\n // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n // * false: [ value ].slice( 0 ) => resolve( value )\n // * true: [ value ].slice( 1 ) => resolve()\n resolve.apply(undefined, [value].slice(noValue));\n }\n\n // For Promises/A+, convert exceptions into rejections\n // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n // Deferred#then to conditionally suppress rejection.\n } catch (value) {\n // Support: Android 4.0 only\n // Strict mode functions invoked without .call/.apply get global-object context\n reject.apply(undefined, [value]);\n }\n }\n jQuery.extend({\n Deferred: function (func) {\n var tuples = [\n // action, add listener, callbacks,\n // ... .then handlers, argument index, [final state]\n [\"notify\", \"progress\", jQuery.Callbacks(\"memory\"), jQuery.Callbacks(\"memory\"), 2], [\"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), jQuery.Callbacks(\"once memory\"), 0, \"resolved\"], [\"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), jQuery.Callbacks(\"once memory\"), 1, \"rejected\"]],\n state = \"pending\",\n promise = {\n state: function () {\n return state;\n },\n always: function () {\n deferred.done(arguments).fail(arguments);\n return this;\n },\n \"catch\": function (fn) {\n return promise.then(null, fn);\n },\n // Keep pipe for back-compat\n pipe: function /* fnDone, fnFail, fnProgress */\n () {\n var fns = arguments;\n return jQuery.Deferred(function (newDefer) {\n jQuery.each(tuples, function (_i, tuple) {\n // Map tuples (progress, done, fail) to arguments (done, fail, progress)\n var fn = isFunction(fns[tuple[4]]) && fns[tuple[4]];\n\n // deferred.progress(function() { bind to newDefer or newDefer.notify })\n // deferred.done(function() { bind to newDefer or newDefer.resolve })\n // deferred.fail(function() { bind to newDefer or newDefer.reject })\n deferred[tuple[1]](function () {\n var returned = fn && fn.apply(this, arguments);\n if (returned && isFunction(returned.promise)) {\n returned.promise().progress(newDefer.notify).done(newDefer.resolve).fail(newDefer.reject);\n } else {\n newDefer[tuple[0] + \"With\"](this, fn ? [returned] : arguments);\n }\n });\n });\n fns = null;\n }).promise();\n },\n then: function (onFulfilled, onRejected, onProgress) {\n var maxDepth = 0;\n function resolve(depth, deferred, handler, special) {\n return function () {\n var that = this,\n args = arguments,\n mightThrow = function () {\n var returned, then;\n\n // Support: Promises/A+ section 2.3.3.3.3\n // https://promisesaplus.com/#point-59\n // Ignore double-resolution attempts\n if (depth < maxDepth) {\n return;\n }\n returned = handler.apply(that, args);\n\n // Support: Promises/A+ section 2.3.1\n // https://promisesaplus.com/#point-48\n if (returned === deferred.promise()) {\n throw new TypeError(\"Thenable self-resolution\");\n }\n\n // Support: Promises/A+ sections 2.3.3.1, 3.5\n // https://promisesaplus.com/#point-54\n // https://promisesaplus.com/#point-75\n // Retrieve `then` only once\n then = returned && (\n // Support: Promises/A+ section 2.3.4\n // https://promisesaplus.com/#point-64\n // Only check objects and functions for thenability\n typeof returned === \"object\" || typeof returned === \"function\") && returned.then;\n\n // Handle a returned thenable\n if (isFunction(then)) {\n // Special processors (notify) just wait for resolution\n if (special) {\n then.call(returned, resolve(maxDepth, deferred, Identity, special), resolve(maxDepth, deferred, Thrower, special));\n\n // Normal processors (resolve) also hook into progress\n } else {\n // ...and disregard older resolution values\n maxDepth++;\n then.call(returned, resolve(maxDepth, deferred, Identity, special), resolve(maxDepth, deferred, Thrower, special), resolve(maxDepth, deferred, Identity, deferred.notifyWith));\n }\n\n // Handle all other returned values\n } else {\n // Only substitute handlers pass on context\n // and multiple values (non-spec behavior)\n if (handler !== Identity) {\n that = undefined;\n args = [returned];\n }\n\n // Process the value(s)\n // Default process is resolve\n (special || deferred.resolveWith)(that, args);\n }\n },\n // Only normal processors (resolve) catch and reject exceptions\n process = special ? mightThrow : function () {\n try {\n mightThrow();\n } catch (e) {\n if (jQuery.Deferred.exceptionHook) {\n jQuery.Deferred.exceptionHook(e, process.error);\n }\n\n // Support: Promises/A+ section 2.3.3.3.4.1\n // https://promisesaplus.com/#point-61\n // Ignore post-resolution exceptions\n if (depth + 1 >= maxDepth) {\n // Only substitute handlers pass on context\n // and multiple values (non-spec behavior)\n if (handler !== Thrower) {\n that = undefined;\n args = [e];\n }\n deferred.rejectWith(that, args);\n }\n }\n };\n\n // Support: Promises/A+ section 2.3.3.3.1\n // https://promisesaplus.com/#point-57\n // Re-resolve promises immediately to dodge false rejection from\n // subsequent errors\n if (depth) {\n process();\n } else {\n // Call an optional hook to record the error, in case of exception\n // since it's otherwise lost when execution goes async\n if (jQuery.Deferred.getErrorHook) {\n process.error = jQuery.Deferred.getErrorHook();\n\n // The deprecated alias of the above. While the name suggests\n // returning the stack, not an error instance, jQuery just passes\n // it directly to `console.warn` so both will work; an instance\n // just better cooperates with source maps.\n } else if (jQuery.Deferred.getStackHook) {\n process.error = jQuery.Deferred.getStackHook();\n }\n window.setTimeout(process);\n }\n };\n }\n return jQuery.Deferred(function (newDefer) {\n // progress_handlers.add( ... )\n tuples[0][3].add(resolve(0, newDefer, isFunction(onProgress) ? onProgress : Identity, newDefer.notifyWith));\n\n // fulfilled_handlers.add( ... )\n tuples[1][3].add(resolve(0, newDefer, isFunction(onFulfilled) ? onFulfilled : Identity));\n\n // rejected_handlers.add( ... )\n tuples[2][3].add(resolve(0, newDefer, isFunction(onRejected) ? onRejected : Thrower));\n }).promise();\n },\n // Get a promise for this deferred\n // If obj is provided, the promise aspect is added to the object\n promise: function (obj) {\n return obj != null ? jQuery.extend(obj, promise) : promise;\n }\n },\n deferred = {};\n\n // Add list-specific methods\n jQuery.each(tuples, function (i, tuple) {\n var list = tuple[2],\n stateString = tuple[5];\n\n // promise.progress = list.add\n // promise.done = list.add\n // promise.fail = list.add\n promise[tuple[1]] = list.add;\n\n // Handle state\n if (stateString) {\n list.add(function () {\n // state = \"resolved\" (i.e., fulfilled)\n // state = \"rejected\"\n state = stateString;\n },\n // rejected_callbacks.disable\n // fulfilled_callbacks.disable\n tuples[3 - i][2].disable,\n // rejected_handlers.disable\n // fulfilled_handlers.disable\n tuples[3 - i][3].disable,\n // progress_callbacks.lock\n tuples[0][2].lock,\n // progress_handlers.lock\n tuples[0][3].lock);\n }\n\n // progress_handlers.fire\n // fulfilled_handlers.fire\n // rejected_handlers.fire\n list.add(tuple[3].fire);\n\n // deferred.notify = function() { deferred.notifyWith(...) }\n // deferred.resolve = function() { deferred.resolveWith(...) }\n // deferred.reject = function() { deferred.rejectWith(...) }\n deferred[tuple[0]] = function () {\n deferred[tuple[0] + \"With\"](this === deferred ? undefined : this, arguments);\n return this;\n };\n\n // deferred.notifyWith = list.fireWith\n // deferred.resolveWith = list.fireWith\n // deferred.rejectWith = list.fireWith\n deferred[tuple[0] + \"With\"] = list.fireWith;\n });\n\n // Make the deferred a promise\n promise.promise(deferred);\n\n // Call given func if any\n if (func) {\n func.call(deferred, deferred);\n }\n\n // All done!\n return deferred;\n },\n // Deferred helper\n when: function (singleValue) {\n var\n // count of uncompleted subordinates\n remaining = arguments.length,\n // count of unprocessed arguments\n i = remaining,\n // subordinate fulfillment data\n resolveContexts = Array(i),\n resolveValues = slice.call(arguments),\n // the primary Deferred\n primary = jQuery.Deferred(),\n // subordinate callback factory\n updateFunc = function (i) {\n return function (value) {\n resolveContexts[i] = this;\n resolveValues[i] = arguments.length > 1 ? slice.call(arguments) : value;\n if (! --remaining) {\n primary.resolveWith(resolveContexts, resolveValues);\n }\n };\n };\n\n // Single- and empty arguments are adopted like Promise.resolve\n if (remaining <= 1) {\n adoptValue(singleValue, primary.done(updateFunc(i)).resolve, primary.reject, !remaining);\n\n // Use .then() to unwrap secondary thenables (cf. gh-3000)\n if (primary.state() === \"pending\" || isFunction(resolveValues[i] && resolveValues[i].then)) {\n return primary.then();\n }\n }\n\n // Multiple arguments are aggregated like Promise.all array elements\n while (i--) {\n adoptValue(resolveValues[i], updateFunc(i), primary.reject);\n }\n return primary.promise();\n }\n });\n\n // These usually indicate a programmer mistake during development,\n // warn about them ASAP rather than swallowing them by default.\n var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\n // If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error\n // captured before the async barrier to get the original error cause\n // which may otherwise be hidden.\n jQuery.Deferred.exceptionHook = function (error, asyncError) {\n // Support: IE 8 - 9 only\n // Console exists when dev tools are open, which can happen at any time\n if (window.console && window.console.warn && error && rerrorNames.test(error.name)) {\n window.console.warn(\"jQuery.Deferred exception: \" + error.message, error.stack, asyncError);\n }\n };\n jQuery.readyException = function (error) {\n window.setTimeout(function () {\n throw error;\n });\n };\n\n // The deferred used on DOM ready\n var readyList = jQuery.Deferred();\n jQuery.fn.ready = function (fn) {\n readyList.then(fn)\n\n // Wrap jQuery.readyException in a function so that the lookup\n // happens at the time of error handling instead of callback\n // registration.\n .catch(function (error) {\n jQuery.readyException(error);\n });\n return this;\n };\n jQuery.extend({\n // Is the DOM ready to be used? Set to true once it occurs.\n isReady: false,\n // A counter to track how many items to wait for before\n // the ready event fires. See trac-6781\n readyWait: 1,\n // Handle when the DOM is ready\n ready: function (wait) {\n // Abort if there are pending holds or we're already ready\n if (wait === true ? --jQuery.readyWait : jQuery.isReady) {\n return;\n }\n\n // Remember that the DOM is ready\n jQuery.isReady = true;\n\n // If a normal DOM Ready event fired, decrement, and wait if need be\n if (wait !== true && --jQuery.readyWait > 0) {\n return;\n }\n\n // If there are functions bound, to execute\n readyList.resolveWith(document, [jQuery]);\n }\n });\n jQuery.ready.then = readyList.then;\n\n // The ready event handler and self cleanup method\n function completed() {\n document.removeEventListener(\"DOMContentLoaded\", completed);\n window.removeEventListener(\"load\", completed);\n jQuery.ready();\n }\n\n // Catch cases where $(document).ready() is called\n // after the browser event has already occurred.\n // Support: IE <=9 - 10 only\n // Older IE sometimes signals \"interactive\" too soon\n if (document.readyState === \"complete\" || document.readyState !== \"loading\" && !document.documentElement.doScroll) {\n // Handle it asynchronously to allow scripts the opportunity to delay ready\n window.setTimeout(jQuery.ready);\n } else {\n // Use the handy event callback\n document.addEventListener(\"DOMContentLoaded\", completed);\n\n // A fallback to window.onload, that will always work\n window.addEventListener(\"load\", completed);\n }\n\n // Multifunctional method to get and set values of a collection\n // The value/s can optionally be executed if it's a function\n var access = function (elems, fn, key, value, chainable, emptyGet, raw) {\n var i = 0,\n len = elems.length,\n bulk = key == null;\n\n // Sets many values\n if (toType(key) === \"object\") {\n chainable = true;\n for (i in key) {\n access(elems, fn, i, key[i], true, emptyGet, raw);\n }\n\n // Sets one value\n } else if (value !== undefined) {\n chainable = true;\n if (!isFunction(value)) {\n raw = true;\n }\n if (bulk) {\n // Bulk operations run against the entire set\n if (raw) {\n fn.call(elems, value);\n fn = null;\n\n // ...except when executing function values\n } else {\n bulk = fn;\n fn = function (elem, _key, value) {\n return bulk.call(jQuery(elem), value);\n };\n }\n }\n if (fn) {\n for (; i < len; i++) {\n fn(elems[i], key, raw ? value : value.call(elems[i], i, fn(elems[i], key)));\n }\n }\n }\n if (chainable) {\n return elems;\n }\n\n // Gets\n if (bulk) {\n return fn.call(elems);\n }\n return len ? fn(elems[0], key) : emptyGet;\n };\n\n // Matches dashed string for camelizing\n var rmsPrefix = /^-ms-/,\n rdashAlpha = /-([a-z])/g;\n\n // Used by camelCase as callback to replace()\n function fcamelCase(_all, letter) {\n return letter.toUpperCase();\n }\n\n // Convert dashed to camelCase; used by the css and data modules\n // Support: IE <=9 - 11, Edge 12 - 15\n // Microsoft forgot to hump their vendor prefix (trac-9572)\n function camelCase(string) {\n return string.replace(rmsPrefix, \"ms-\").replace(rdashAlpha, fcamelCase);\n }\n var acceptData = function (owner) {\n // Accepts only:\n // - Node\n // - Node.ELEMENT_NODE\n // - Node.DOCUMENT_NODE\n // - Object\n // - Any\n return owner.nodeType === 1 || owner.nodeType === 9 || !+owner.nodeType;\n };\n function Data() {\n this.expando = jQuery.expando + Data.uid++;\n }\n Data.uid = 1;\n Data.prototype = {\n cache: function (owner) {\n // Check if the owner object already has a cache\n var value = owner[this.expando];\n\n // If not, create one\n if (!value) {\n value = {};\n\n // We can accept data for non-element nodes in modern browsers,\n // but we should not, see trac-8335.\n // Always return an empty object.\n if (acceptData(owner)) {\n // If it is a node unlikely to be stringify-ed or looped over\n // use plain assignment\n if (owner.nodeType) {\n owner[this.expando] = value;\n\n // Otherwise secure it in a non-enumerable property\n // configurable must be true to allow the property to be\n // deleted when data is removed\n } else {\n Object.defineProperty(owner, this.expando, {\n value: value,\n configurable: true\n });\n }\n }\n }\n return value;\n },\n set: function (owner, data, value) {\n var prop,\n cache = this.cache(owner);\n\n // Handle: [ owner, key, value ] args\n // Always use camelCase key (gh-2257)\n if (typeof data === \"string\") {\n cache[camelCase(data)] = value;\n\n // Handle: [ owner, { properties } ] args\n } else {\n // Copy the properties one-by-one to the cache object\n for (prop in data) {\n cache[camelCase(prop)] = data[prop];\n }\n }\n return cache;\n },\n get: function (owner, key) {\n return key === undefined ? this.cache(owner) :\n // Always use camelCase key (gh-2257)\n owner[this.expando] && owner[this.expando][camelCase(key)];\n },\n access: function (owner, key, value) {\n // In cases where either:\n //\n // 1. No key was specified\n // 2. A string key was specified, but no value provided\n //\n // Take the \"read\" path and allow the get method to determine\n // which value to return, respectively either:\n //\n // 1. The entire cache object\n // 2. The data stored at the key\n //\n if (key === undefined || key && typeof key === \"string\" && value === undefined) {\n return this.get(owner, key);\n }\n\n // When the key is not a string, or both a key and value\n // are specified, set or extend (existing objects) with either:\n //\n // 1. An object of properties\n // 2. A key and value\n //\n this.set(owner, key, value);\n\n // Since the \"set\" path can have two possible entry points\n // return the expected data based on which path was taken[*]\n return value !== undefined ? value : key;\n },\n remove: function (owner, key) {\n var i,\n cache = owner[this.expando];\n if (cache === undefined) {\n return;\n }\n if (key !== undefined) {\n // Support array or space separated string of keys\n if (Array.isArray(key)) {\n // If key is an array of keys...\n // We always set camelCase keys, so remove that.\n key = key.map(camelCase);\n } else {\n key = camelCase(key);\n\n // If a key with the spaces exists, use it.\n // Otherwise, create an array by matching non-whitespace\n key = key in cache ? [key] : key.match(rnothtmlwhite) || [];\n }\n i = key.length;\n while (i--) {\n delete cache[key[i]];\n }\n }\n\n // Remove the expando if there's no more data\n if (key === undefined || jQuery.isEmptyObject(cache)) {\n // Support: Chrome <=35 - 45\n // Webkit & Blink performance suffers when deleting properties\n // from DOM nodes, so set to undefined instead\n // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n if (owner.nodeType) {\n owner[this.expando] = undefined;\n } else {\n delete owner[this.expando];\n }\n }\n },\n hasData: function (owner) {\n var cache = owner[this.expando];\n return cache !== undefined && !jQuery.isEmptyObject(cache);\n }\n };\n var dataPriv = new Data();\n var dataUser = new Data();\n\n //\tImplementation Summary\n //\n //\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n //\t2. Improve the module's maintainability by reducing the storage\n //\t\tpaths to a single mechanism.\n //\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n //\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n //\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n //\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\n var rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n rmultiDash = /[A-Z]/g;\n function getData(data) {\n if (data === \"true\") {\n return true;\n }\n if (data === \"false\") {\n return false;\n }\n if (data === \"null\") {\n return null;\n }\n\n // Only convert to a number if it doesn't change the string\n if (data === +data + \"\") {\n return +data;\n }\n if (rbrace.test(data)) {\n return JSON.parse(data);\n }\n return data;\n }\n function dataAttr(elem, key, data) {\n var name;\n\n // If nothing was found internally, try to fetch any\n // data from the HTML5 data-* attribute\n if (data === undefined && elem.nodeType === 1) {\n name = \"data-\" + key.replace(rmultiDash, \"-$&\").toLowerCase();\n data = elem.getAttribute(name);\n if (typeof data === \"string\") {\n try {\n data = getData(data);\n } catch (e) {}\n\n // Make sure we set the data so it isn't changed later\n dataUser.set(elem, key, data);\n } else {\n data = undefined;\n }\n }\n return data;\n }\n jQuery.extend({\n hasData: function (elem) {\n return dataUser.hasData(elem) || dataPriv.hasData(elem);\n },\n data: function (elem, name, data) {\n return dataUser.access(elem, name, data);\n },\n removeData: function (elem, name) {\n dataUser.remove(elem, name);\n },\n // TODO: Now that all calls to _data and _removeData have been replaced\n // with direct calls to dataPriv methods, these can be deprecated.\n _data: function (elem, name, data) {\n return dataPriv.access(elem, name, data);\n },\n _removeData: function (elem, name) {\n dataPriv.remove(elem, name);\n }\n });\n jQuery.fn.extend({\n data: function (key, value) {\n var i,\n name,\n data,\n elem = this[0],\n attrs = elem && elem.attributes;\n\n // Gets all values\n if (key === undefined) {\n if (this.length) {\n data = dataUser.get(elem);\n if (elem.nodeType === 1 && !dataPriv.get(elem, \"hasDataAttrs\")) {\n i = attrs.length;\n while (i--) {\n // Support: IE 11 only\n // The attrs elements can be null (trac-14894)\n if (attrs[i]) {\n name = attrs[i].name;\n if (name.indexOf(\"data-\") === 0) {\n name = camelCase(name.slice(5));\n dataAttr(elem, name, data[name]);\n }\n }\n }\n dataPriv.set(elem, \"hasDataAttrs\", true);\n }\n }\n return data;\n }\n\n // Sets multiple values\n if (typeof key === \"object\") {\n return this.each(function () {\n dataUser.set(this, key);\n });\n }\n return access(this, function (value) {\n var data;\n\n // The calling jQuery object (element matches) is not empty\n // (and therefore has an element appears at this[ 0 ]) and the\n // `value` parameter was not undefined. An empty jQuery object\n // will result in `undefined` for elem = this[ 0 ] which will\n // throw an exception if an attempt to read a data cache is made.\n if (elem && value === undefined) {\n // Attempt to get data from the cache\n // The key will always be camelCased in Data\n data = dataUser.get(elem, key);\n if (data !== undefined) {\n return data;\n }\n\n // Attempt to \"discover\" the data in\n // HTML5 custom data-* attrs\n data = dataAttr(elem, key);\n if (data !== undefined) {\n return data;\n }\n\n // We tried really hard, but the data doesn't exist.\n return;\n }\n\n // Set the data...\n this.each(function () {\n // We always store the camelCased key\n dataUser.set(this, key, value);\n });\n }, null, value, arguments.length > 1, null, true);\n },\n removeData: function (key) {\n return this.each(function () {\n dataUser.remove(this, key);\n });\n }\n });\n jQuery.extend({\n queue: function (elem, type, data) {\n var queue;\n if (elem) {\n type = (type || \"fx\") + \"queue\";\n queue = dataPriv.get(elem, type);\n\n // Speed up dequeue by getting out quickly if this is just a lookup\n if (data) {\n if (!queue || Array.isArray(data)) {\n queue = dataPriv.access(elem, type, jQuery.makeArray(data));\n } else {\n queue.push(data);\n }\n }\n return queue || [];\n }\n },\n dequeue: function (elem, type) {\n type = type || \"fx\";\n var queue = jQuery.queue(elem, type),\n startLength = queue.length,\n fn = queue.shift(),\n hooks = jQuery._queueHooks(elem, type),\n next = function () {\n jQuery.dequeue(elem, type);\n };\n\n // If the fx queue is dequeued, always remove the progress sentinel\n if (fn === \"inprogress\") {\n fn = queue.shift();\n startLength--;\n }\n if (fn) {\n // Add a progress sentinel to prevent the fx queue from being\n // automatically dequeued\n if (type === \"fx\") {\n queue.unshift(\"inprogress\");\n }\n\n // Clear up the last queue stop function\n delete hooks.stop;\n fn.call(elem, next, hooks);\n }\n if (!startLength && hooks) {\n hooks.empty.fire();\n }\n },\n // Not public - generate a queueHooks object, or return the current one\n _queueHooks: function (elem, type) {\n var key = type + \"queueHooks\";\n return dataPriv.get(elem, key) || dataPriv.access(elem, key, {\n empty: jQuery.Callbacks(\"once memory\").add(function () {\n dataPriv.remove(elem, [type + \"queue\", key]);\n })\n });\n }\n });\n jQuery.fn.extend({\n queue: function (type, data) {\n var setter = 2;\n if (typeof type !== \"string\") {\n data = type;\n type = \"fx\";\n setter--;\n }\n if (arguments.length < setter) {\n return jQuery.queue(this[0], type);\n }\n return data === undefined ? this : this.each(function () {\n var queue = jQuery.queue(this, type, data);\n\n // Ensure a hooks for this queue\n jQuery._queueHooks(this, type);\n if (type === \"fx\" && queue[0] !== \"inprogress\") {\n jQuery.dequeue(this, type);\n }\n });\n },\n dequeue: function (type) {\n return this.each(function () {\n jQuery.dequeue(this, type);\n });\n },\n clearQueue: function (type) {\n return this.queue(type || \"fx\", []);\n },\n // Get a promise resolved when queues of a certain type\n // are emptied (fx is the type by default)\n promise: function (type, obj) {\n var tmp,\n count = 1,\n defer = jQuery.Deferred(),\n elements = this,\n i = this.length,\n resolve = function () {\n if (! --count) {\n defer.resolveWith(elements, [elements]);\n }\n };\n if (typeof type !== \"string\") {\n obj = type;\n type = undefined;\n }\n type = type || \"fx\";\n while (i--) {\n tmp = dataPriv.get(elements[i], type + \"queueHooks\");\n if (tmp && tmp.empty) {\n count++;\n tmp.empty.add(resolve);\n }\n }\n resolve();\n return defer.promise(obj);\n }\n });\n var pnum = /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source;\n var rcssNum = new RegExp(\"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\");\n var cssExpand = [\"Top\", \"Right\", \"Bottom\", \"Left\"];\n var documentElement = document.documentElement;\n var isAttached = function (elem) {\n return jQuery.contains(elem.ownerDocument, elem);\n },\n composed = {\n composed: true\n };\n\n // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n // Check attachment across shadow DOM boundaries when possible (gh-3504)\n // Support: iOS 10.0-10.2 only\n // Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n // leading to errors. We need to check for `getRootNode`.\n if (documentElement.getRootNode) {\n isAttached = function (elem) {\n return jQuery.contains(elem.ownerDocument, elem) || elem.getRootNode(composed) === elem.ownerDocument;\n };\n }\n var isHiddenWithinTree = function (elem, el) {\n // isHiddenWithinTree might be called from jQuery#filter function;\n // in that case, element will be second argument\n elem = el || elem;\n\n // Inline style trumps all\n return elem.style.display === \"none\" || elem.style.display === \"\" &&\n // Otherwise, check computed style\n // Support: Firefox <=43 - 45\n // Disconnected elements can have computed display: none, so first confirm that elem is\n // in the document.\n isAttached(elem) && jQuery.css(elem, \"display\") === \"none\";\n };\n function adjustCSS(elem, prop, valueParts, tween) {\n var adjusted,\n scale,\n maxIterations = 20,\n currentValue = tween ? function () {\n return tween.cur();\n } : function () {\n return jQuery.css(elem, prop, \"\");\n },\n initial = currentValue(),\n unit = valueParts && valueParts[3] || (jQuery.cssNumber[prop] ? \"\" : \"px\"),\n // Starting value computation is required for potential unit mismatches\n initialInUnit = elem.nodeType && (jQuery.cssNumber[prop] || unit !== \"px\" && +initial) && rcssNum.exec(jQuery.css(elem, prop));\n if (initialInUnit && initialInUnit[3] !== unit) {\n // Support: Firefox <=54\n // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n initial = initial / 2;\n\n // Trust units reported by jQuery.css\n unit = unit || initialInUnit[3];\n\n // Iteratively approximate from a nonzero starting point\n initialInUnit = +initial || 1;\n while (maxIterations--) {\n // Evaluate and update our best guess (doubling guesses that zero out).\n // Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n jQuery.style(elem, prop, initialInUnit + unit);\n if ((1 - scale) * (1 - (scale = currentValue() / initial || 0.5)) <= 0) {\n maxIterations = 0;\n }\n initialInUnit = initialInUnit / scale;\n }\n initialInUnit = initialInUnit * 2;\n jQuery.style(elem, prop, initialInUnit + unit);\n\n // Make sure we update the tween properties later on\n valueParts = valueParts || [];\n }\n if (valueParts) {\n initialInUnit = +initialInUnit || +initial || 0;\n\n // Apply relative offset (+=/-=) if specified\n adjusted = valueParts[1] ? initialInUnit + (valueParts[1] + 1) * valueParts[2] : +valueParts[2];\n if (tween) {\n tween.unit = unit;\n tween.start = initialInUnit;\n tween.end = adjusted;\n }\n }\n return adjusted;\n }\n var defaultDisplayMap = {};\n function getDefaultDisplay(elem) {\n var temp,\n doc = elem.ownerDocument,\n nodeName = elem.nodeName,\n display = defaultDisplayMap[nodeName];\n if (display) {\n return display;\n }\n temp = doc.body.appendChild(doc.createElement(nodeName));\n display = jQuery.css(temp, \"display\");\n temp.parentNode.removeChild(temp);\n if (display === \"none\") {\n display = \"block\";\n }\n defaultDisplayMap[nodeName] = display;\n return display;\n }\n function showHide(elements, show) {\n var display,\n elem,\n values = [],\n index = 0,\n length = elements.length;\n\n // Determine new display value for elements that need to change\n for (; index < length; index++) {\n elem = elements[index];\n if (!elem.style) {\n continue;\n }\n display = elem.style.display;\n if (show) {\n // Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n // check is required in this first loop unless we have a nonempty display value (either\n // inline or about-to-be-restored)\n if (display === \"none\") {\n values[index] = dataPriv.get(elem, \"display\") || null;\n if (!values[index]) {\n elem.style.display = \"\";\n }\n }\n if (elem.style.display === \"\" && isHiddenWithinTree(elem)) {\n values[index] = getDefaultDisplay(elem);\n }\n } else {\n if (display !== \"none\") {\n values[index] = \"none\";\n\n // Remember what we're overwriting\n dataPriv.set(elem, \"display\", display);\n }\n }\n }\n\n // Set the display of the elements in a second loop to avoid constant reflow\n for (index = 0; index < length; index++) {\n if (values[index] != null) {\n elements[index].style.display = values[index];\n }\n }\n return elements;\n }\n jQuery.fn.extend({\n show: function () {\n return showHide(this, true);\n },\n hide: function () {\n return showHide(this);\n },\n toggle: function (state) {\n if (typeof state === \"boolean\") {\n return state ? this.show() : this.hide();\n }\n return this.each(function () {\n if (isHiddenWithinTree(this)) {\n jQuery(this).show();\n } else {\n jQuery(this).hide();\n }\n });\n }\n });\n var rcheckableType = /^(?:checkbox|radio)$/i;\n var rtagName = /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i;\n var rscriptType = /^$|^module$|\\/(?:java|ecma)script/i;\n (function () {\n var fragment = document.createDocumentFragment(),\n div = fragment.appendChild(document.createElement(\"div\")),\n input = document.createElement(\"input\");\n\n // Support: Android 4.0 - 4.3 only\n // Check state lost if the name is set (trac-11217)\n // Support: Windows Web Apps (WWA)\n // `name` and `type` must use .setAttribute for WWA (trac-14901)\n input.setAttribute(\"type\", \"radio\");\n input.setAttribute(\"checked\", \"checked\");\n input.setAttribute(\"name\", \"t\");\n div.appendChild(input);\n\n // Support: Android <=4.1 only\n // Older WebKit doesn't clone checked state correctly in fragments\n support.checkClone = div.cloneNode(true).cloneNode(true).lastChild.checked;\n\n // Support: IE <=11 only\n // Make sure textarea (and checkbox) defaultValue is properly cloned\n div.innerHTML = \"<textarea>x</textarea>\";\n support.noCloneChecked = !!div.cloneNode(true).lastChild.defaultValue;\n\n // Support: IE <=9 only\n // IE <=9 replaces <option> tags with their contents when inserted outside of\n // the select element.\n div.innerHTML = \"<option></option>\";\n support.option = !!div.lastChild;\n })();\n\n // We have to close these tags to support XHTML (trac-13200)\n var wrapMap = {\n // XHTML parsers do not magically insert elements in the\n // same way that tag soup parsers do. So we cannot shorten\n // this by omitting <tbody> or other required elements.\n thead: [1, \"<table>\", \"</table>\"],\n col: [2, \"<table><colgroup>\", \"</colgroup></table>\"],\n tr: [2, \"<table><tbody>\", \"</tbody></table>\"],\n td: [3, \"<table><tbody><tr>\", \"</tr></tbody></table>\"],\n _default: [0, \"\", \"\"]\n };\n wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\n wrapMap.th = wrapMap.td;\n\n // Support: IE <=9 only\n if (!support.option) {\n wrapMap.optgroup = wrapMap.option = [1, \"<select multiple='multiple'>\", \"</select>\"];\n }\n function getAll(context, tag) {\n // Support: IE <=9 - 11 only\n // Use typeof to avoid zero-argument method invocation on host objects (trac-15151)\n var ret;\n if (typeof context.getElementsByTagName !== \"undefined\") {\n ret = context.getElementsByTagName(tag || \"*\");\n } else if (typeof context.querySelectorAll !== \"undefined\") {\n ret = context.querySelectorAll(tag || \"*\");\n } else {\n ret = [];\n }\n if (tag === undefined || tag && nodeName(context, tag)) {\n return jQuery.merge([context], ret);\n }\n return ret;\n }\n\n // Mark scripts as having already been evaluated\n function setGlobalEval(elems, refElements) {\n var i = 0,\n l = elems.length;\n for (; i < l; i++) {\n dataPriv.set(elems[i], \"globalEval\", !refElements || dataPriv.get(refElements[i], \"globalEval\"));\n }\n }\n var rhtml = /<|&#?\\w+;/;\n function buildFragment(elems, context, scripts, selection, ignored) {\n var elem,\n tmp,\n tag,\n wrap,\n attached,\n j,\n fragment = context.createDocumentFragment(),\n nodes = [],\n i = 0,\n l = elems.length;\n for (; i < l; i++) {\n elem = elems[i];\n if (elem || elem === 0) {\n // Add nodes directly\n if (toType(elem) === \"object\") {\n // Support: Android <=4.0 only, PhantomJS 1 only\n // push.apply(_, arraylike) throws on ancient WebKit\n jQuery.merge(nodes, elem.nodeType ? [elem] : elem);\n\n // Convert non-html into a text node\n } else if (!rhtml.test(elem)) {\n nodes.push(context.createTextNode(elem));\n\n // Convert html into DOM nodes\n } else {\n tmp = tmp || fragment.appendChild(context.createElement(\"div\"));\n\n // Deserialize a standard representation\n tag = (rtagName.exec(elem) || [\"\", \"\"])[1].toLowerCase();\n wrap = wrapMap[tag] || wrapMap._default;\n tmp.innerHTML = wrap[1] + jQuery.htmlPrefilter(elem) + wrap[2];\n\n // Descend through wrappers to the right content\n j = wrap[0];\n while (j--) {\n tmp = tmp.lastChild;\n }\n\n // Support: Android <=4.0 only, PhantomJS 1 only\n // push.apply(_, arraylike) throws on ancient WebKit\n jQuery.merge(nodes, tmp.childNodes);\n\n // Remember the top-level container\n tmp = fragment.firstChild;\n\n // Ensure the created nodes are orphaned (trac-12392)\n tmp.textContent = \"\";\n }\n }\n }\n\n // Remove wrapper from fragment\n fragment.textContent = \"\";\n i = 0;\n while (elem = nodes[i++]) {\n // Skip elements already in the context collection (trac-4087)\n if (selection && jQuery.inArray(elem, selection) > -1) {\n if (ignored) {\n ignored.push(elem);\n }\n continue;\n }\n attached = isAttached(elem);\n\n // Append to fragment\n tmp = getAll(fragment.appendChild(elem), \"script\");\n\n // Preserve script evaluation history\n if (attached) {\n setGlobalEval(tmp);\n }\n\n // Capture executables\n if (scripts) {\n j = 0;\n while (elem = tmp[j++]) {\n if (rscriptType.test(elem.type || \"\")) {\n scripts.push(elem);\n }\n }\n }\n }\n return fragment;\n }\n var rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n function returnTrue() {\n return true;\n }\n function returnFalse() {\n return false;\n }\n function on(elem, types, selector, data, fn, one) {\n var origFn, type;\n\n // Types can be a map of types/handlers\n if (typeof types === \"object\") {\n // ( types-Object, selector, data )\n if (typeof selector !== \"string\") {\n // ( types-Object, data )\n data = data || selector;\n selector = undefined;\n }\n for (type in types) {\n on(elem, type, selector, data, types[type], one);\n }\n return elem;\n }\n if (data == null && fn == null) {\n // ( types, fn )\n fn = selector;\n data = selector = undefined;\n } else if (fn == null) {\n if (typeof selector === \"string\") {\n // ( types, selector, fn )\n fn = data;\n data = undefined;\n } else {\n // ( types, data, fn )\n fn = data;\n data = selector;\n selector = undefined;\n }\n }\n if (fn === false) {\n fn = returnFalse;\n } else if (!fn) {\n return elem;\n }\n if (one === 1) {\n origFn = fn;\n fn = function (event) {\n // Can use an empty set, since event contains the info\n jQuery().off(event);\n return origFn.apply(this, arguments);\n };\n\n // Use same guid so caller can remove using origFn\n fn.guid = origFn.guid || (origFn.guid = jQuery.guid++);\n }\n return elem.each(function () {\n jQuery.event.add(this, types, fn, data, selector);\n });\n }\n\n /*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\n jQuery.event = {\n global: {},\n add: function (elem, types, handler, data, selector) {\n var handleObjIn,\n eventHandle,\n tmp,\n events,\n t,\n handleObj,\n special,\n handlers,\n type,\n namespaces,\n origType,\n elemData = dataPriv.get(elem);\n\n // Only attach events to objects that accept data\n if (!acceptData(elem)) {\n return;\n }\n\n // Caller can pass in an object of custom data in lieu of the handler\n if (handler.handler) {\n handleObjIn = handler;\n handler = handleObjIn.handler;\n selector = handleObjIn.selector;\n }\n\n // Ensure that invalid selectors throw exceptions at attach time\n // Evaluate against documentElement in case elem is a non-element node (e.g., document)\n if (selector) {\n jQuery.find.matchesSelector(documentElement, selector);\n }\n\n // Make sure that the handler has a unique ID, used to find/remove it later\n if (!handler.guid) {\n handler.guid = jQuery.guid++;\n }\n\n // Init the element's event structure and main handler, if this is the first\n if (!(events = elemData.events)) {\n events = elemData.events = Object.create(null);\n }\n if (!(eventHandle = elemData.handle)) {\n eventHandle = elemData.handle = function (e) {\n // Discard the second event of a jQuery.event.trigger() and\n // when an event is called after a page has unloaded\n return typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply(elem, arguments) : undefined;\n };\n }\n\n // Handle multiple events separated by a space\n types = (types || \"\").match(rnothtmlwhite) || [\"\"];\n t = types.length;\n while (t--) {\n tmp = rtypenamespace.exec(types[t]) || [];\n type = origType = tmp[1];\n namespaces = (tmp[2] || \"\").split(\".\").sort();\n\n // There *must* be a type, no attaching namespace-only handlers\n if (!type) {\n continue;\n }\n\n // If event changes its type, use the special event handlers for the changed type\n special = jQuery.event.special[type] || {};\n\n // If selector defined, determine special event api type, otherwise given type\n type = (selector ? special.delegateType : special.bindType) || type;\n\n // Update special based on newly reset type\n special = jQuery.event.special[type] || {};\n\n // handleObj is passed to all event handlers\n handleObj = jQuery.extend({\n type: type,\n origType: origType,\n data: data,\n handler: handler,\n guid: handler.guid,\n selector: selector,\n needsContext: selector && jQuery.expr.match.needsContext.test(selector),\n namespace: namespaces.join(\".\")\n }, handleObjIn);\n\n // Init the event handler queue if we're the first\n if (!(handlers = events[type])) {\n handlers = events[type] = [];\n handlers.delegateCount = 0;\n\n // Only use addEventListener if the special events handler returns false\n if (!special.setup || special.setup.call(elem, data, namespaces, eventHandle) === false) {\n if (elem.addEventListener) {\n elem.addEventListener(type, eventHandle);\n }\n }\n }\n if (special.add) {\n special.add.call(elem, handleObj);\n if (!handleObj.handler.guid) {\n handleObj.handler.guid = handler.guid;\n }\n }\n\n // Add to the element's handler list, delegates in front\n if (selector) {\n handlers.splice(handlers.delegateCount++, 0, handleObj);\n } else {\n handlers.push(handleObj);\n }\n\n // Keep track of which events have ever been used, for event optimization\n jQuery.event.global[type] = true;\n }\n },\n // Detach an event or set of events from an element\n remove: function (elem, types, handler, selector, mappedTypes) {\n var j,\n origCount,\n tmp,\n events,\n t,\n handleObj,\n special,\n handlers,\n type,\n namespaces,\n origType,\n elemData = dataPriv.hasData(elem) && dataPriv.get(elem);\n if (!elemData || !(events = elemData.events)) {\n return;\n }\n\n // Once for each type.namespace in types; type may be omitted\n types = (types || \"\").match(rnothtmlwhite) || [\"\"];\n t = types.length;\n while (t--) {\n tmp = rtypenamespace.exec(types[t]) || [];\n type = origType = tmp[1];\n namespaces = (tmp[2] || \"\").split(\".\").sort();\n\n // Unbind all events (on this namespace, if provided) for the element\n if (!type) {\n for (type in events) {\n jQuery.event.remove(elem, type + types[t], handler, selector, true);\n }\n continue;\n }\n special = jQuery.event.special[type] || {};\n type = (selector ? special.delegateType : special.bindType) || type;\n handlers = events[type] || [];\n tmp = tmp[2] && new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\");\n\n // Remove matching events\n origCount = j = handlers.length;\n while (j--) {\n handleObj = handlers[j];\n if ((mappedTypes || origType === handleObj.origType) && (!handler || handler.guid === handleObj.guid) && (!tmp || tmp.test(handleObj.namespace)) && (!selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector)) {\n handlers.splice(j, 1);\n if (handleObj.selector) {\n handlers.delegateCount--;\n }\n if (special.remove) {\n special.remove.call(elem, handleObj);\n }\n }\n }\n\n // Remove generic event handler if we removed something and no more handlers exist\n // (avoids potential for endless recursion during removal of special event handlers)\n if (origCount && !handlers.length) {\n if (!special.teardown || special.teardown.call(elem, namespaces, elemData.handle) === false) {\n jQuery.removeEvent(elem, type, elemData.handle);\n }\n delete events[type];\n }\n }\n\n // Remove data and the expando if it's no longer used\n if (jQuery.isEmptyObject(events)) {\n dataPriv.remove(elem, \"handle events\");\n }\n },\n dispatch: function (nativeEvent) {\n var i,\n j,\n ret,\n matched,\n handleObj,\n handlerQueue,\n args = new Array(arguments.length),\n // Make a writable jQuery.Event from the native event object\n event = jQuery.event.fix(nativeEvent),\n handlers = (dataPriv.get(this, \"events\") || Object.create(null))[event.type] || [],\n special = jQuery.event.special[event.type] || {};\n\n // Use the fix-ed jQuery.Event rather than the (read-only) native event\n args[0] = event;\n for (i = 1; i < arguments.length; i++) {\n args[i] = arguments[i];\n }\n event.delegateTarget = this;\n\n // Call the preDispatch hook for the mapped type, and let it bail if desired\n if (special.preDispatch && special.preDispatch.call(this, event) === false) {\n return;\n }\n\n // Determine handlers\n handlerQueue = jQuery.event.handlers.call(this, event, handlers);\n\n // Run delegates first; they may want to stop propagation beneath us\n i = 0;\n while ((matched = handlerQueue[i++]) && !event.isPropagationStopped()) {\n event.currentTarget = matched.elem;\n j = 0;\n while ((handleObj = matched.handlers[j++]) && !event.isImmediatePropagationStopped()) {\n // If the event is namespaced, then each handler is only invoked if it is\n // specially universal or its namespaces are a superset of the event's.\n if (!event.rnamespace || handleObj.namespace === false || event.rnamespace.test(handleObj.namespace)) {\n event.handleObj = handleObj;\n event.data = handleObj.data;\n ret = ((jQuery.event.special[handleObj.origType] || {}).handle || handleObj.handler).apply(matched.elem, args);\n if (ret !== undefined) {\n if ((event.result = ret) === false) {\n event.preventDefault();\n event.stopPropagation();\n }\n }\n }\n }\n }\n\n // Call the postDispatch hook for the mapped type\n if (special.postDispatch) {\n special.postDispatch.call(this, event);\n }\n return event.result;\n },\n handlers: function (event, handlers) {\n var i,\n handleObj,\n sel,\n matchedHandlers,\n matchedSelectors,\n handlerQueue = [],\n delegateCount = handlers.delegateCount,\n cur = event.target;\n\n // Find delegate handlers\n if (delegateCount &&\n // Support: IE <=9\n // Black-hole SVG <use> instance trees (trac-13180)\n cur.nodeType &&\n // Support: Firefox <=42\n // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n // Support: IE 11 only\n // ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n !(event.type === \"click\" && event.button >= 1)) {\n for (; cur !== this; cur = cur.parentNode || this) {\n // Don't check non-elements (trac-13208)\n // Don't process clicks on disabled elements (trac-6911, trac-8165, trac-11382, trac-11764)\n if (cur.nodeType === 1 && !(event.type === \"click\" && cur.disabled === true)) {\n matchedHandlers = [];\n matchedSelectors = {};\n for (i = 0; i < delegateCount; i++) {\n handleObj = handlers[i];\n\n // Don't conflict with Object.prototype properties (trac-13203)\n sel = handleObj.selector + \" \";\n if (matchedSelectors[sel] === undefined) {\n matchedSelectors[sel] = handleObj.needsContext ? jQuery(sel, this).index(cur) > -1 : jQuery.find(sel, this, null, [cur]).length;\n }\n if (matchedSelectors[sel]) {\n matchedHandlers.push(handleObj);\n }\n }\n if (matchedHandlers.length) {\n handlerQueue.push({\n elem: cur,\n handlers: matchedHandlers\n });\n }\n }\n }\n }\n\n // Add the remaining (directly-bound) handlers\n cur = this;\n if (delegateCount < handlers.length) {\n handlerQueue.push({\n elem: cur,\n handlers: handlers.slice(delegateCount)\n });\n }\n return handlerQueue;\n },\n addProp: function (name, hook) {\n Object.defineProperty(jQuery.Event.prototype, name, {\n enumerable: true,\n configurable: true,\n get: isFunction(hook) ? function () {\n if (this.originalEvent) {\n return hook(this.originalEvent);\n }\n } : function () {\n if (this.originalEvent) {\n return this.originalEvent[name];\n }\n },\n set: function (value) {\n Object.defineProperty(this, name, {\n enumerable: true,\n configurable: true,\n writable: true,\n value: value\n });\n }\n });\n },\n fix: function (originalEvent) {\n return originalEvent[jQuery.expando] ? originalEvent : new jQuery.Event(originalEvent);\n },\n special: {\n load: {\n // Prevent triggered image.load events from bubbling to window.load\n noBubble: true\n },\n click: {\n // Utilize native event to ensure correct state for checkable inputs\n setup: function (data) {\n // For mutual compressibility with _default, replace `this` access with a local var.\n // `|| data` is dead code meant only to preserve the variable through minification.\n var el = this || data;\n\n // Claim the first handler\n if (rcheckableType.test(el.type) && el.click && nodeName(el, \"input\")) {\n // dataPriv.set( el, \"click\", ... )\n leverageNative(el, \"click\", true);\n }\n\n // Return false to allow normal processing in the caller\n return false;\n },\n trigger: function (data) {\n // For mutual compressibility with _default, replace `this` access with a local var.\n // `|| data` is dead code meant only to preserve the variable through minification.\n var el = this || data;\n\n // Force setup before triggering a click\n if (rcheckableType.test(el.type) && el.click && nodeName(el, \"input\")) {\n leverageNative(el, \"click\");\n }\n\n // Return non-false to allow normal event-path propagation\n return true;\n },\n // For cross-browser consistency, suppress native .click() on links\n // Also prevent it if we're currently inside a leveraged native-event stack\n _default: function (event) {\n var target = event.target;\n return rcheckableType.test(target.type) && target.click && nodeName(target, \"input\") && dataPriv.get(target, \"click\") || nodeName(target, \"a\");\n }\n },\n beforeunload: {\n postDispatch: function (event) {\n // Support: Firefox 20+\n // Firefox doesn't alert if the returnValue field is not set.\n if (event.result !== undefined && event.originalEvent) {\n event.originalEvent.returnValue = event.result;\n }\n }\n }\n }\n };\n\n // Ensure the presence of an event listener that handles manually-triggered\n // synthetic events by interrupting progress until reinvoked in response to\n // *native* events that it fires directly, ensuring that state changes have\n // already occurred before other listeners are invoked.\n function leverageNative(el, type, isSetup) {\n // Missing `isSetup` indicates a trigger call, which must force setup through jQuery.event.add\n if (!isSetup) {\n if (dataPriv.get(el, type) === undefined) {\n jQuery.event.add(el, type, returnTrue);\n }\n return;\n }\n\n // Register the controller as a special universal handler for all event namespaces\n dataPriv.set(el, type, false);\n jQuery.event.add(el, type, {\n namespace: false,\n handler: function (event) {\n var result,\n saved = dataPriv.get(this, type);\n if (event.isTrigger & 1 && this[type]) {\n // Interrupt processing of the outer synthetic .trigger()ed event\n if (!saved) {\n // Store arguments for use when handling the inner native event\n // There will always be at least one argument (an event object), so this array\n // will not be confused with a leftover capture object.\n saved = slice.call(arguments);\n dataPriv.set(this, type, saved);\n\n // Trigger the native event and capture its result\n this[type]();\n result = dataPriv.get(this, type);\n dataPriv.set(this, type, false);\n if (saved !== result) {\n // Cancel the outer synthetic event\n event.stopImmediatePropagation();\n event.preventDefault();\n return result;\n }\n\n // If this is an inner synthetic event for an event with a bubbling surrogate\n // (focus or blur), assume that the surrogate already propagated from triggering\n // the native event and prevent that from happening again here.\n // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n // bubbling surrogate propagates *after* the non-bubbling base), but that seems\n // less bad than duplication.\n } else if ((jQuery.event.special[type] || {}).delegateType) {\n event.stopPropagation();\n }\n\n // If this is a native event triggered above, everything is now in order\n // Fire an inner synthetic event with the original arguments\n } else if (saved) {\n // ...and capture the result\n dataPriv.set(this, type, jQuery.event.trigger(saved[0], saved.slice(1), this));\n\n // Abort handling of the native event by all jQuery handlers while allowing\n // native handlers on the same element to run. On target, this is achieved\n // by stopping immediate propagation just on the jQuery event. However,\n // the native event is re-wrapped by a jQuery one on each level of the\n // propagation so the only way to stop it for jQuery is to stop it for\n // everyone via native `stopPropagation()`. This is not a problem for\n // focus/blur which don't bubble, but it does also stop click on checkboxes\n // and radios. We accept this limitation.\n event.stopPropagation();\n event.isImmediatePropagationStopped = returnTrue;\n }\n }\n });\n }\n jQuery.removeEvent = function (elem, type, handle) {\n // This \"if\" is needed for plain objects\n if (elem.removeEventListener) {\n elem.removeEventListener(type, handle);\n }\n };\n jQuery.Event = function (src, props) {\n // Allow instantiation without the 'new' keyword\n if (!(this instanceof jQuery.Event)) {\n return new jQuery.Event(src, props);\n }\n\n // Event object\n if (src && src.type) {\n this.originalEvent = src;\n this.type = src.type;\n\n // Events bubbling up the document may have been marked as prevented\n // by a handler lower down the tree; reflect the correct value.\n this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined &&\n // Support: Android <=2.3 only\n src.returnValue === false ? returnTrue : returnFalse;\n\n // Create target properties\n // Support: Safari <=6 - 7 only\n // Target should not be a text node (trac-504, trac-13143)\n this.target = src.target && src.target.nodeType === 3 ? src.target.parentNode : src.target;\n this.currentTarget = src.currentTarget;\n this.relatedTarget = src.relatedTarget;\n\n // Event type\n } else {\n this.type = src;\n }\n\n // Put explicitly provided properties onto the event object\n if (props) {\n jQuery.extend(this, props);\n }\n\n // Create a timestamp if incoming event doesn't have one\n this.timeStamp = src && src.timeStamp || Date.now();\n\n // Mark it as fixed\n this[jQuery.expando] = true;\n };\n\n // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n // https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\n jQuery.Event.prototype = {\n constructor: jQuery.Event,\n isDefaultPrevented: returnFalse,\n isPropagationStopped: returnFalse,\n isImmediatePropagationStopped: returnFalse,\n isSimulated: false,\n preventDefault: function () {\n var e = this.originalEvent;\n this.isDefaultPrevented = returnTrue;\n if (e && !this.isSimulated) {\n e.preventDefault();\n }\n },\n stopPropagation: function () {\n var e = this.originalEvent;\n this.isPropagationStopped = returnTrue;\n if (e && !this.isSimulated) {\n e.stopPropagation();\n }\n },\n stopImmediatePropagation: function () {\n var e = this.originalEvent;\n this.isImmediatePropagationStopped = returnTrue;\n if (e && !this.isSimulated) {\n e.stopImmediatePropagation();\n }\n this.stopPropagation();\n }\n };\n\n // Includes all common event props including KeyEvent and MouseEvent specific props\n jQuery.each({\n altKey: true,\n bubbles: true,\n cancelable: true,\n changedTouches: true,\n ctrlKey: true,\n detail: true,\n eventPhase: true,\n metaKey: true,\n pageX: true,\n pageY: true,\n shiftKey: true,\n view: true,\n \"char\": true,\n code: true,\n charCode: true,\n key: true,\n keyCode: true,\n button: true,\n buttons: true,\n clientX: true,\n clientY: true,\n offsetX: true,\n offsetY: true,\n pointerId: true,\n pointerType: true,\n screenX: true,\n screenY: true,\n targetTouches: true,\n toElement: true,\n touches: true,\n which: true\n }, jQuery.event.addProp);\n jQuery.each({\n focus: \"focusin\",\n blur: \"focusout\"\n }, function (type, delegateType) {\n function focusMappedHandler(nativeEvent) {\n if (document.documentMode) {\n // Support: IE 11+\n // Attach a single focusin/focusout handler on the document while someone wants\n // focus/blur. This is because the former are synchronous in IE while the latter\n // are async. In other browsers, all those handlers are invoked synchronously.\n\n // `handle` from private data would already wrap the event, but we need\n // to change the `type` here.\n var handle = dataPriv.get(this, \"handle\"),\n event = jQuery.event.fix(nativeEvent);\n event.type = nativeEvent.type === \"focusin\" ? \"focus\" : \"blur\";\n event.isSimulated = true;\n\n // First, handle focusin/focusout\n handle(nativeEvent);\n\n // ...then, handle focus/blur\n //\n // focus/blur don't bubble while focusin/focusout do; simulate the former by only\n // invoking the handler at the lower level.\n if (event.target === event.currentTarget) {\n // The setup part calls `leverageNative`, which, in turn, calls\n // `jQuery.event.add`, so event handle will already have been set\n // by this point.\n handle(event);\n }\n } else {\n // For non-IE browsers, attach a single capturing handler on the document\n // while someone wants focusin/focusout.\n jQuery.event.simulate(delegateType, nativeEvent.target, jQuery.event.fix(nativeEvent));\n }\n }\n jQuery.event.special[type] = {\n // Utilize native event if possible so blur/focus sequence is correct\n setup: function () {\n var attaches;\n\n // Claim the first handler\n // dataPriv.set( this, \"focus\", ... )\n // dataPriv.set( this, \"blur\", ... )\n leverageNative(this, type, true);\n if (document.documentMode) {\n // Support: IE 9 - 11+\n // We use the same native handler for focusin & focus (and focusout & blur)\n // so we need to coordinate setup & teardown parts between those events.\n // Use `delegateType` as the key as `type` is already used by `leverageNative`.\n attaches = dataPriv.get(this, delegateType);\n if (!attaches) {\n this.addEventListener(delegateType, focusMappedHandler);\n }\n dataPriv.set(this, delegateType, (attaches || 0) + 1);\n } else {\n // Return false to allow normal processing in the caller\n return false;\n }\n },\n trigger: function () {\n // Force setup before trigger\n leverageNative(this, type);\n\n // Return non-false to allow normal event-path propagation\n return true;\n },\n teardown: function () {\n var attaches;\n if (document.documentMode) {\n attaches = dataPriv.get(this, delegateType) - 1;\n if (!attaches) {\n this.removeEventListener(delegateType, focusMappedHandler);\n dataPriv.remove(this, delegateType);\n } else {\n dataPriv.set(this, delegateType, attaches);\n }\n } else {\n // Return false to indicate standard teardown should be applied\n return false;\n }\n },\n // Suppress native focus or blur if we're currently inside\n // a leveraged native-event stack\n _default: function (event) {\n return dataPriv.get(event.target, type);\n },\n delegateType: delegateType\n };\n\n // Support: Firefox <=44\n // Firefox doesn't have focus(in | out) events\n // Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n //\n // Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n // focus(in | out) events fire after focus & blur events,\n // which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n // Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\n //\n // Support: IE 9 - 11+\n // To preserve relative focusin/focus & focusout/blur event order guaranteed on the 3.x branch,\n // attach a single handler for both events in IE.\n jQuery.event.special[delegateType] = {\n setup: function () {\n // Handle: regular nodes (via `this.ownerDocument`), window\n // (via `this.document`) & document (via `this`).\n var doc = this.ownerDocument || this.document || this,\n dataHolder = document.documentMode ? this : doc,\n attaches = dataPriv.get(dataHolder, delegateType);\n\n // Support: IE 9 - 11+\n // We use the same native handler for focusin & focus (and focusout & blur)\n // so we need to coordinate setup & teardown parts between those events.\n // Use `delegateType` as the key as `type` is already used by `leverageNative`.\n if (!attaches) {\n if (document.documentMode) {\n this.addEventListener(delegateType, focusMappedHandler);\n } else {\n doc.addEventListener(type, focusMappedHandler, true);\n }\n }\n dataPriv.set(dataHolder, delegateType, (attaches || 0) + 1);\n },\n teardown: function () {\n var doc = this.ownerDocument || this.document || this,\n dataHolder = document.documentMode ? this : doc,\n attaches = dataPriv.get(dataHolder, delegateType) - 1;\n if (!attaches) {\n if (document.documentMode) {\n this.removeEventListener(delegateType, focusMappedHandler);\n } else {\n doc.removeEventListener(type, focusMappedHandler, true);\n }\n dataPriv.remove(dataHolder, delegateType);\n } else {\n dataPriv.set(dataHolder, delegateType, attaches);\n }\n }\n };\n });\n\n // Create mouseenter/leave events using mouseover/out and event-time checks\n // so that event delegation works in jQuery.\n // Do the same for pointerenter/pointerleave and pointerover/pointerout\n //\n // Support: Safari 7 only\n // Safari sends mouseenter too often; see:\n // https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n // for the description of the bug (it existed in older Chrome versions as well).\n jQuery.each({\n mouseenter: \"mouseover\",\n mouseleave: \"mouseout\",\n pointerenter: \"pointerover\",\n pointerleave: \"pointerout\"\n }, function (orig, fix) {\n jQuery.event.special[orig] = {\n delegateType: fix,\n bindType: fix,\n handle: function (event) {\n var ret,\n target = this,\n related = event.relatedTarget,\n handleObj = event.handleObj;\n\n // For mouseenter/leave call the handler if related is outside the target.\n // NB: No relatedTarget if the mouse left/entered the browser window\n if (!related || related !== target && !jQuery.contains(target, related)) {\n event.type = handleObj.origType;\n ret = handleObj.handler.apply(this, arguments);\n event.type = fix;\n }\n return ret;\n }\n };\n });\n jQuery.fn.extend({\n on: function (types, selector, data, fn) {\n return on(this, types, selector, data, fn);\n },\n one: function (types, selector, data, fn) {\n return on(this, types, selector, data, fn, 1);\n },\n off: function (types, selector, fn) {\n var handleObj, type;\n if (types && types.preventDefault && types.handleObj) {\n // ( event ) dispatched jQuery.Event\n handleObj = types.handleObj;\n jQuery(types.delegateTarget).off(handleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler);\n return this;\n }\n if (typeof types === \"object\") {\n // ( types-object [, selector] )\n for (type in types) {\n this.off(type, selector, types[type]);\n }\n return this;\n }\n if (selector === false || typeof selector === \"function\") {\n // ( types [, fn] )\n fn = selector;\n selector = undefined;\n }\n if (fn === false) {\n fn = returnFalse;\n }\n return this.each(function () {\n jQuery.event.remove(this, types, fn, selector);\n });\n }\n });\n var\n // Support: IE <=10 - 11, Edge 12 - 13 only\n // In IE/Edge using regex groups here causes severe slowdowns.\n // See https://connect.microsoft.com/IE/feedback/details/1736512/\n rnoInnerhtml = /<script|<style|<link/i,\n // checked=\"checked\" or checked\n rchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n rcleanScript = /^\\s*<!\\[CDATA\\[|\\]\\]>\\s*$/g;\n\n // Prefer a tbody over its parent table for containing new rows\n function manipulationTarget(elem, content) {\n if (nodeName(elem, \"table\") && nodeName(content.nodeType !== 11 ? content : content.firstChild, \"tr\")) {\n return jQuery(elem).children(\"tbody\")[0] || elem;\n }\n return elem;\n }\n\n // Replace/restore the type attribute of script elements for safe DOM manipulation\n function disableScript(elem) {\n elem.type = (elem.getAttribute(\"type\") !== null) + \"/\" + elem.type;\n return elem;\n }\n function restoreScript(elem) {\n if ((elem.type || \"\").slice(0, 5) === \"true/\") {\n elem.type = elem.type.slice(5);\n } else {\n elem.removeAttribute(\"type\");\n }\n return elem;\n }\n function cloneCopyEvent(src, dest) {\n var i, l, type, pdataOld, udataOld, udataCur, events;\n if (dest.nodeType !== 1) {\n return;\n }\n\n // 1. Copy private data: events, handlers, etc.\n if (dataPriv.hasData(src)) {\n pdataOld = dataPriv.get(src);\n events = pdataOld.events;\n if (events) {\n dataPriv.remove(dest, \"handle events\");\n for (type in events) {\n for (i = 0, l = events[type].length; i < l; i++) {\n jQuery.event.add(dest, type, events[type][i]);\n }\n }\n }\n }\n\n // 2. Copy user data\n if (dataUser.hasData(src)) {\n udataOld = dataUser.access(src);\n udataCur = jQuery.extend({}, udataOld);\n dataUser.set(dest, udataCur);\n }\n }\n\n // Fix IE bugs, see support tests\n function fixInput(src, dest) {\n var nodeName = dest.nodeName.toLowerCase();\n\n // Fails to persist the checked state of a cloned checkbox or radio button.\n if (nodeName === \"input\" && rcheckableType.test(src.type)) {\n dest.checked = src.checked;\n\n // Fails to return the selected option to the default selected state when cloning options\n } else if (nodeName === \"input\" || nodeName === \"textarea\") {\n dest.defaultValue = src.defaultValue;\n }\n }\n function domManip(collection, args, callback, ignored) {\n // Flatten any nested arrays\n args = flat(args);\n var fragment,\n first,\n scripts,\n hasScripts,\n node,\n doc,\n i = 0,\n l = collection.length,\n iNoClone = l - 1,\n value = args[0],\n valueIsFunction = isFunction(value);\n\n // We can't cloneNode fragments that contain checked, in WebKit\n if (valueIsFunction || l > 1 && typeof value === \"string\" && !support.checkClone && rchecked.test(value)) {\n return collection.each(function (index) {\n var self = collection.eq(index);\n if (valueIsFunction) {\n args[0] = value.call(this, index, self.html());\n }\n domManip(self, args, callback, ignored);\n });\n }\n if (l) {\n fragment = buildFragment(args, collection[0].ownerDocument, false, collection, ignored);\n first = fragment.firstChild;\n if (fragment.childNodes.length === 1) {\n fragment = first;\n }\n\n // Require either new content or an interest in ignored elements to invoke the callback\n if (first || ignored) {\n scripts = jQuery.map(getAll(fragment, \"script\"), disableScript);\n hasScripts = scripts.length;\n\n // Use the original fragment for the last item\n // instead of the first because it can end up\n // being emptied incorrectly in certain situations (trac-8070).\n for (; i < l; i++) {\n node = fragment;\n if (i !== iNoClone) {\n node = jQuery.clone(node, true, true);\n\n // Keep references to cloned scripts for later restoration\n if (hasScripts) {\n // Support: Android <=4.0 only, PhantomJS 1 only\n // push.apply(_, arraylike) throws on ancient WebKit\n jQuery.merge(scripts, getAll(node, \"script\"));\n }\n }\n callback.call(collection[i], node, i);\n }\n if (hasScripts) {\n doc = scripts[scripts.length - 1].ownerDocument;\n\n // Re-enable scripts\n jQuery.map(scripts, restoreScript);\n\n // Evaluate executable scripts on first document insertion\n for (i = 0; i < hasScripts; i++) {\n node = scripts[i];\n if (rscriptType.test(node.type || \"\") && !dataPriv.access(node, \"globalEval\") && jQuery.contains(doc, node)) {\n if (node.src && (node.type || \"\").toLowerCase() !== \"module\") {\n // Optional AJAX dependency, but won't run scripts if not present\n if (jQuery._evalUrl && !node.noModule) {\n jQuery._evalUrl(node.src, {\n nonce: node.nonce || node.getAttribute(\"nonce\")\n }, doc);\n }\n } else {\n // Unwrap a CDATA section containing script contents. This shouldn't be\n // needed as in XML documents they're already not visible when\n // inspecting element contents and in HTML documents they have no\n // meaning but we're preserving that logic for backwards compatibility.\n // This will be removed completely in 4.0. See gh-4904.\n DOMEval(node.textContent.replace(rcleanScript, \"\"), node, doc);\n }\n }\n }\n }\n }\n }\n return collection;\n }\n function remove(elem, selector, keepData) {\n var node,\n nodes = selector ? jQuery.filter(selector, elem) : elem,\n i = 0;\n for (; (node = nodes[i]) != null; i++) {\n if (!keepData && node.nodeType === 1) {\n jQuery.cleanData(getAll(node));\n }\n if (node.parentNode) {\n if (keepData && isAttached(node)) {\n setGlobalEval(getAll(node, \"script\"));\n }\n node.parentNode.removeChild(node);\n }\n }\n return elem;\n }\n jQuery.extend({\n htmlPrefilter: function (html) {\n return html;\n },\n clone: function (elem, dataAndEvents, deepDataAndEvents) {\n var i,\n l,\n srcElements,\n destElements,\n clone = elem.cloneNode(true),\n inPage = isAttached(elem);\n\n // Fix IE cloning issues\n if (!support.noCloneChecked && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem)) {\n // We eschew jQuery#find here for performance reasons:\n // https://jsperf.com/getall-vs-sizzle/2\n destElements = getAll(clone);\n srcElements = getAll(elem);\n for (i = 0, l = srcElements.length; i < l; i++) {\n fixInput(srcElements[i], destElements[i]);\n }\n }\n\n // Copy the events from the original to the clone\n if (dataAndEvents) {\n if (deepDataAndEvents) {\n srcElements = srcElements || getAll(elem);\n destElements = destElements || getAll(clone);\n for (i = 0, l = srcElements.length; i < l; i++) {\n cloneCopyEvent(srcElements[i], destElements[i]);\n }\n } else {\n cloneCopyEvent(elem, clone);\n }\n }\n\n // Preserve script evaluation history\n destElements = getAll(clone, \"script\");\n if (destElements.length > 0) {\n setGlobalEval(destElements, !inPage && getAll(elem, \"script\"));\n }\n\n // Return the cloned set\n return clone;\n },\n cleanData: function (elems) {\n var data,\n elem,\n type,\n special = jQuery.event.special,\n i = 0;\n for (; (elem = elems[i]) !== undefined; i++) {\n if (acceptData(elem)) {\n if (data = elem[dataPriv.expando]) {\n if (data.events) {\n for (type in data.events) {\n if (special[type]) {\n jQuery.event.remove(elem, type);\n\n // This is a shortcut to avoid jQuery.event.remove's overhead\n } else {\n jQuery.removeEvent(elem, type, data.handle);\n }\n }\n }\n\n // Support: Chrome <=35 - 45+\n // Assign undefined instead of using delete, see Data#remove\n elem[dataPriv.expando] = undefined;\n }\n if (elem[dataUser.expando]) {\n // Support: Chrome <=35 - 45+\n // Assign undefined instead of using delete, see Data#remove\n elem[dataUser.expando] = undefined;\n }\n }\n }\n }\n });\n jQuery.fn.extend({\n detach: function (selector) {\n return remove(this, selector, true);\n },\n remove: function (selector) {\n return remove(this, selector);\n },\n text: function (value) {\n return access(this, function (value) {\n return value === undefined ? jQuery.text(this) : this.empty().each(function () {\n if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n this.textContent = value;\n }\n });\n }, null, value, arguments.length);\n },\n append: function () {\n return domManip(this, arguments, function (elem) {\n if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n var target = manipulationTarget(this, elem);\n target.appendChild(elem);\n }\n });\n },\n prepend: function () {\n return domManip(this, arguments, function (elem) {\n if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n var target = manipulationTarget(this, elem);\n target.insertBefore(elem, target.firstChild);\n }\n });\n },\n before: function () {\n return domManip(this, arguments, function (elem) {\n if (this.parentNode) {\n this.parentNode.insertBefore(elem, this);\n }\n });\n },\n after: function () {\n return domManip(this, arguments, function (elem) {\n if (this.parentNode) {\n this.parentNode.insertBefore(elem, this.nextSibling);\n }\n });\n },\n empty: function () {\n var elem,\n i = 0;\n for (; (elem = this[i]) != null; i++) {\n if (elem.nodeType === 1) {\n // Prevent memory leaks\n jQuery.cleanData(getAll(elem, false));\n\n // Remove any remaining nodes\n elem.textContent = \"\";\n }\n }\n return this;\n },\n clone: function (dataAndEvents, deepDataAndEvents) {\n dataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n return this.map(function () {\n return jQuery.clone(this, dataAndEvents, deepDataAndEvents);\n });\n },\n html: function (value) {\n return access(this, function (value) {\n var elem = this[0] || {},\n i = 0,\n l = this.length;\n if (value === undefined && elem.nodeType === 1) {\n return elem.innerHTML;\n }\n\n // See if we can take a shortcut and just use innerHTML\n if (typeof value === \"string\" && !rnoInnerhtml.test(value) && !wrapMap[(rtagName.exec(value) || [\"\", \"\"])[1].toLowerCase()]) {\n value = jQuery.htmlPrefilter(value);\n try {\n for (; i < l; i++) {\n elem = this[i] || {};\n\n // Remove element nodes and prevent memory leaks\n if (elem.nodeType === 1) {\n jQuery.cleanData(getAll(elem, false));\n elem.innerHTML = value;\n }\n }\n elem = 0;\n\n // If using innerHTML throws an exception, use the fallback method\n } catch (e) {}\n }\n if (elem) {\n this.empty().append(value);\n }\n }, null, value, arguments.length);\n },\n replaceWith: function () {\n var ignored = [];\n\n // Make the changes, replacing each non-ignored context element with the new content\n return domManip(this, arguments, function (elem) {\n var parent = this.parentNode;\n if (jQuery.inArray(this, ignored) < 0) {\n jQuery.cleanData(getAll(this));\n if (parent) {\n parent.replaceChild(elem, this);\n }\n }\n\n // Force callback invocation\n }, ignored);\n }\n });\n jQuery.each({\n appendTo: \"append\",\n prependTo: \"prepend\",\n insertBefore: \"before\",\n insertAfter: \"after\",\n replaceAll: \"replaceWith\"\n }, function (name, original) {\n jQuery.fn[name] = function (selector) {\n var elems,\n ret = [],\n insert = jQuery(selector),\n last = insert.length - 1,\n i = 0;\n for (; i <= last; i++) {\n elems = i === last ? this : this.clone(true);\n jQuery(insert[i])[original](elems);\n\n // Support: Android <=4.0 only, PhantomJS 1 only\n // .get() because push.apply(_, arraylike) throws on ancient WebKit\n push.apply(ret, elems.get());\n }\n return this.pushStack(ret);\n };\n });\n var rnumnonpx = new RegExp(\"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\");\n var rcustomProp = /^--/;\n var getStyles = function (elem) {\n // Support: IE <=11 only, Firefox <=30 (trac-15098, trac-14150)\n // IE throws on elements created in popups\n // FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n var view = elem.ownerDocument.defaultView;\n if (!view || !view.opener) {\n view = window;\n }\n return view.getComputedStyle(elem);\n };\n var swap = function (elem, options, callback) {\n var ret,\n name,\n old = {};\n\n // Remember the old values, and insert the new ones\n for (name in options) {\n old[name] = elem.style[name];\n elem.style[name] = options[name];\n }\n ret = callback.call(elem);\n\n // Revert the old values\n for (name in options) {\n elem.style[name] = old[name];\n }\n return ret;\n };\n var rboxStyle = new RegExp(cssExpand.join(\"|\"), \"i\");\n (function () {\n // Executing both pixelPosition & boxSizingReliable tests require only one layout\n // so they're executed at the same time to save the second computation.\n function computeStyleTests() {\n // This is a singleton, we need to execute it only once\n if (!div) {\n return;\n }\n container.style.cssText = \"position:absolute;left:-11111px;width:60px;\" + \"margin-top:1px;padding:0;border:0\";\n div.style.cssText = \"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" + \"margin:auto;border:1px;padding:1px;\" + \"width:60%;top:1%\";\n documentElement.appendChild(container).appendChild(div);\n var divStyle = window.getComputedStyle(div);\n pixelPositionVal = divStyle.top !== \"1%\";\n\n // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n reliableMarginLeftVal = roundPixelMeasures(divStyle.marginLeft) === 12;\n\n // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n // Some styles come back with percentage values, even though they shouldn't\n div.style.right = \"60%\";\n pixelBoxStylesVal = roundPixelMeasures(divStyle.right) === 36;\n\n // Support: IE 9 - 11 only\n // Detect misreporting of content dimensions for box-sizing:border-box elements\n boxSizingReliableVal = roundPixelMeasures(divStyle.width) === 36;\n\n // Support: IE 9 only\n // Detect overflow:scroll screwiness (gh-3699)\n // Support: Chrome <=64\n // Don't get tricked when zoom affects offsetWidth (gh-4029)\n div.style.position = \"absolute\";\n scrollboxSizeVal = roundPixelMeasures(div.offsetWidth / 3) === 12;\n documentElement.removeChild(container);\n\n // Nullify the div so it wouldn't be stored in the memory and\n // it will also be a sign that checks already performed\n div = null;\n }\n function roundPixelMeasures(measure) {\n return Math.round(parseFloat(measure));\n }\n var pixelPositionVal,\n boxSizingReliableVal,\n scrollboxSizeVal,\n pixelBoxStylesVal,\n reliableTrDimensionsVal,\n reliableMarginLeftVal,\n container = document.createElement(\"div\"),\n div = document.createElement(\"div\");\n\n // Finish early in limited (non-browser) environments\n if (!div.style) {\n return;\n }\n\n // Support: IE <=9 - 11 only\n // Style of cloned element affects source element cloned (trac-8908)\n div.style.backgroundClip = \"content-box\";\n div.cloneNode(true).style.backgroundClip = \"\";\n support.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n jQuery.extend(support, {\n boxSizingReliable: function () {\n computeStyleTests();\n return boxSizingReliableVal;\n },\n pixelBoxStyles: function () {\n computeStyleTests();\n return pixelBoxStylesVal;\n },\n pixelPosition: function () {\n computeStyleTests();\n return pixelPositionVal;\n },\n reliableMarginLeft: function () {\n computeStyleTests();\n return reliableMarginLeftVal;\n },\n scrollboxSize: function () {\n computeStyleTests();\n return scrollboxSizeVal;\n },\n // Support: IE 9 - 11+, Edge 15 - 18+\n // IE/Edge misreport `getComputedStyle` of table rows with width/height\n // set in CSS while `offset*` properties report correct values.\n // Behavior in IE 9 is more subtle than in newer versions & it passes\n // some versions of this test; make sure not to make it pass there!\n //\n // Support: Firefox 70+\n // Only Firefox includes border widths\n // in computed dimensions. (gh-4529)\n reliableTrDimensions: function () {\n var table, tr, trChild, trStyle;\n if (reliableTrDimensionsVal == null) {\n table = document.createElement(\"table\");\n tr = document.createElement(\"tr\");\n trChild = document.createElement(\"div\");\n table.style.cssText = \"position:absolute;left:-11111px;border-collapse:separate\";\n tr.style.cssText = \"box-sizing:content-box;border:1px solid\";\n\n // Support: Chrome 86+\n // Height set through cssText does not get applied.\n // Computed height then comes back as 0.\n tr.style.height = \"1px\";\n trChild.style.height = \"9px\";\n\n // Support: Android 8 Chrome 86+\n // In our bodyBackground.html iframe,\n // display for all div elements is set to \"inline\",\n // which causes a problem only in Android 8 Chrome 86.\n // Ensuring the div is `display: block`\n // gets around this issue.\n trChild.style.display = \"block\";\n documentElement.appendChild(table).appendChild(tr).appendChild(trChild);\n trStyle = window.getComputedStyle(tr);\n reliableTrDimensionsVal = parseInt(trStyle.height, 10) + parseInt(trStyle.borderTopWidth, 10) + parseInt(trStyle.borderBottomWidth, 10) === tr.offsetHeight;\n documentElement.removeChild(table);\n }\n return reliableTrDimensionsVal;\n }\n });\n })();\n function curCSS(elem, name, computed) {\n var width,\n minWidth,\n maxWidth,\n ret,\n isCustomProp = rcustomProp.test(name),\n // Support: Firefox 51+\n // Retrieving style before computed somehow\n // fixes an issue with getting wrong values\n // on detached elements\n style = elem.style;\n computed = computed || getStyles(elem);\n\n // getPropertyValue is needed for:\n // .css('filter') (IE 9 only, trac-12537)\n // .css('--customProperty) (gh-3144)\n if (computed) {\n // Support: IE <=9 - 11+\n // IE only supports `\"float\"` in `getPropertyValue`; in computed styles\n // it's only available as `\"cssFloat\"`. We no longer modify properties\n // sent to `.css()` apart from camelCasing, so we need to check both.\n // Normally, this would create difference in behavior: if\n // `getPropertyValue` returns an empty string, the value returned\n // by `.css()` would be `undefined`. This is usually the case for\n // disconnected elements. However, in IE even disconnected elements\n // with no styles return `\"none\"` for `getPropertyValue( \"float\" )`\n ret = computed.getPropertyValue(name) || computed[name];\n if (isCustomProp && ret) {\n // Support: Firefox 105+, Chrome <=105+\n // Spec requires trimming whitespace for custom properties (gh-4926).\n // Firefox only trims leading whitespace. Chrome just collapses\n // both leading & trailing whitespace to a single space.\n //\n // Fall back to `undefined` if empty string returned.\n // This collapses a missing definition with property defined\n // and set to an empty string but there's no standard API\n // allowing us to differentiate them without a performance penalty\n // and returning `undefined` aligns with older jQuery.\n //\n // rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED\n // as whitespace while CSS does not, but this is not a problem\n // because CSS preprocessing replaces them with U+000A LINE FEED\n // (which *is* CSS whitespace)\n // https://www.w3.org/TR/css-syntax-3/#input-preprocessing\n ret = ret.replace(rtrimCSS, \"$1\") || undefined;\n }\n if (ret === \"\" && !isAttached(elem)) {\n ret = jQuery.style(elem, name);\n }\n\n // A tribute to the \"awesome hack by Dean Edwards\"\n // Android Browser returns percentage for some values,\n // but width seems to be reliably pixels.\n // This is against the CSSOM draft spec:\n // https://drafts.csswg.org/cssom/#resolved-values\n if (!support.pixelBoxStyles() && rnumnonpx.test(ret) && rboxStyle.test(name)) {\n // Remember the original values\n width = style.width;\n minWidth = style.minWidth;\n maxWidth = style.maxWidth;\n\n // Put in the new values to get a computed value out\n style.minWidth = style.maxWidth = style.width = ret;\n ret = computed.width;\n\n // Revert the changed values\n style.width = width;\n style.minWidth = minWidth;\n style.maxWidth = maxWidth;\n }\n }\n return ret !== undefined ?\n // Support: IE <=9 - 11 only\n // IE returns zIndex value as an integer.\n ret + \"\" : ret;\n }\n function addGetHookIf(conditionFn, hookFn) {\n // Define the hook, we'll check on the first run if it's really needed.\n return {\n get: function () {\n if (conditionFn()) {\n // Hook not needed (or it's not possible to use it due\n // to missing dependency), remove it.\n delete this.get;\n return;\n }\n\n // Hook needed; redefine it so that the support test is not executed again.\n return (this.get = hookFn).apply(this, arguments);\n }\n };\n }\n var cssPrefixes = [\"Webkit\", \"Moz\", \"ms\"],\n emptyStyle = document.createElement(\"div\").style,\n vendorProps = {};\n\n // Return a vendor-prefixed property or undefined\n function vendorPropName(name) {\n // Check for vendor prefixed names\n var capName = name[0].toUpperCase() + name.slice(1),\n i = cssPrefixes.length;\n while (i--) {\n name = cssPrefixes[i] + capName;\n if (name in emptyStyle) {\n return name;\n }\n }\n }\n\n // Return a potentially-mapped jQuery.cssProps or vendor prefixed property\n function finalPropName(name) {\n var final = jQuery.cssProps[name] || vendorProps[name];\n if (final) {\n return final;\n }\n if (name in emptyStyle) {\n return name;\n }\n return vendorProps[name] = vendorPropName(name) || name;\n }\n var\n // Swappable if display is none or starts with table\n // except \"table\", \"table-cell\", or \"table-caption\"\n // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n rdisplayswap = /^(none|table(?!-c[ea]).+)/,\n cssShow = {\n position: \"absolute\",\n visibility: \"hidden\",\n display: \"block\"\n },\n cssNormalTransform = {\n letterSpacing: \"0\",\n fontWeight: \"400\"\n };\n function setPositiveNumber(_elem, value, subtract) {\n // Any relative (+/-) values have already been\n // normalized at this point\n var matches = rcssNum.exec(value);\n return matches ?\n // Guard against undefined \"subtract\", e.g., when used as in cssHooks\n Math.max(0, matches[2] - (subtract || 0)) + (matches[3] || \"px\") : value;\n }\n function boxModelAdjustment(elem, dimension, box, isBorderBox, styles, computedVal) {\n var i = dimension === \"width\" ? 1 : 0,\n extra = 0,\n delta = 0,\n marginDelta = 0;\n\n // Adjustment may not be necessary\n if (box === (isBorderBox ? \"border\" : \"content\")) {\n return 0;\n }\n for (; i < 4; i += 2) {\n // Both box models exclude margin\n // Count margin delta separately to only add it after scroll gutter adjustment.\n // This is needed to make negative margins work with `outerHeight( true )` (gh-3982).\n if (box === \"margin\") {\n marginDelta += jQuery.css(elem, box + cssExpand[i], true, styles);\n }\n\n // If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n if (!isBorderBox) {\n // Add padding\n delta += jQuery.css(elem, \"padding\" + cssExpand[i], true, styles);\n\n // For \"border\" or \"margin\", add border\n if (box !== \"padding\") {\n delta += jQuery.css(elem, \"border\" + cssExpand[i] + \"Width\", true, styles);\n\n // But still keep track of it otherwise\n } else {\n extra += jQuery.css(elem, \"border\" + cssExpand[i] + \"Width\", true, styles);\n }\n\n // If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n // \"padding\" or \"margin\"\n } else {\n // For \"content\", subtract padding\n if (box === \"content\") {\n delta -= jQuery.css(elem, \"padding\" + cssExpand[i], true, styles);\n }\n\n // For \"content\" or \"padding\", subtract border\n if (box !== \"margin\") {\n delta -= jQuery.css(elem, \"border\" + cssExpand[i] + \"Width\", true, styles);\n }\n }\n }\n\n // Account for positive content-box scroll gutter when requested by providing computedVal\n if (!isBorderBox && computedVal >= 0) {\n // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n // Assuming integer scroll gutter, subtract the rest and round down\n delta += Math.max(0, Math.ceil(elem[\"offset\" + dimension[0].toUpperCase() + dimension.slice(1)] - computedVal - delta - extra - 0.5\n\n // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n // Use an explicit zero to avoid NaN (gh-3964)\n )) || 0;\n }\n return delta + marginDelta;\n }\n function getWidthOrHeight(elem, dimension, extra) {\n // Start with computed style\n var styles = getStyles(elem),\n // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n // Fake content-box until we know it's needed to know the true value.\n boxSizingNeeded = !support.boxSizingReliable() || extra,\n isBorderBox = boxSizingNeeded && jQuery.css(elem, \"boxSizing\", false, styles) === \"border-box\",\n valueIsBorderBox = isBorderBox,\n val = curCSS(elem, dimension, styles),\n offsetProp = \"offset\" + dimension[0].toUpperCase() + dimension.slice(1);\n\n // Support: Firefox <=54\n // Return a confounding non-pixel value or feign ignorance, as appropriate.\n if (rnumnonpx.test(val)) {\n if (!extra) {\n return val;\n }\n val = \"auto\";\n }\n\n // Support: IE 9 - 11 only\n // Use offsetWidth/offsetHeight for when box sizing is unreliable.\n // In those cases, the computed value can be trusted to be border-box.\n if ((!support.boxSizingReliable() && isBorderBox ||\n // Support: IE 10 - 11+, Edge 15 - 18+\n // IE/Edge misreport `getComputedStyle` of table rows with width/height\n // set in CSS while `offset*` properties report correct values.\n // Interestingly, in some cases IE 9 doesn't suffer from this issue.\n !support.reliableTrDimensions() && nodeName(elem, \"tr\") ||\n // Fall back to offsetWidth/offsetHeight when value is \"auto\"\n // This happens for inline elements with no explicit setting (gh-3571)\n val === \"auto\" ||\n // Support: Android <=4.1 - 4.3 only\n // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n !parseFloat(val) && jQuery.css(elem, \"display\", false, styles) === \"inline\") &&\n // Make sure the element is visible & connected\n elem.getClientRects().length) {\n isBorderBox = jQuery.css(elem, \"boxSizing\", false, styles) === \"border-box\";\n\n // Where available, offsetWidth/offsetHeight approximate border box dimensions.\n // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n // retrieved value as a content box dimension.\n valueIsBorderBox = offsetProp in elem;\n if (valueIsBorderBox) {\n val = elem[offsetProp];\n }\n }\n\n // Normalize \"\" and auto\n val = parseFloat(val) || 0;\n\n // Adjust for the element's box model\n return val + boxModelAdjustment(elem, dimension, extra || (isBorderBox ? \"border\" : \"content\"), valueIsBorderBox, styles,\n // Provide the current computed size to request scroll gutter calculation (gh-3589)\n val) + \"px\";\n }\n jQuery.extend({\n // Add in style property hooks for overriding the default\n // behavior of getting and setting a style property\n cssHooks: {\n opacity: {\n get: function (elem, computed) {\n if (computed) {\n // We should always get a number back from opacity\n var ret = curCSS(elem, \"opacity\");\n return ret === \"\" ? \"1\" : ret;\n }\n }\n }\n },\n // Don't automatically add \"px\" to these possibly-unitless properties\n cssNumber: {\n animationIterationCount: true,\n aspectRatio: true,\n borderImageSlice: true,\n columnCount: true,\n flexGrow: true,\n flexShrink: true,\n fontWeight: true,\n gridArea: true,\n gridColumn: true,\n gridColumnEnd: true,\n gridColumnStart: true,\n gridRow: true,\n gridRowEnd: true,\n gridRowStart: true,\n lineHeight: true,\n opacity: true,\n order: true,\n orphans: true,\n scale: true,\n widows: true,\n zIndex: true,\n zoom: true,\n // SVG-related\n fillOpacity: true,\n floodOpacity: true,\n stopOpacity: true,\n strokeMiterlimit: true,\n strokeOpacity: true\n },\n // Add in properties whose names you wish to fix before\n // setting or getting the value\n cssProps: {},\n // Get and set the style property on a DOM Node\n style: function (elem, name, value, extra) {\n // Don't set styles on text and comment nodes\n if (!elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style) {\n return;\n }\n\n // Make sure that we're working with the right name\n var ret,\n type,\n hooks,\n origName = camelCase(name),\n isCustomProp = rcustomProp.test(name),\n style = elem.style;\n\n // Make sure that we're working with the right name. We don't\n // want to query the value if it is a CSS custom property\n // since they are user-defined.\n if (!isCustomProp) {\n name = finalPropName(origName);\n }\n\n // Gets hook for the prefixed version, then unprefixed version\n hooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName];\n\n // Check if we're setting a value\n if (value !== undefined) {\n type = typeof value;\n\n // Convert \"+=\" or \"-=\" to relative numbers (trac-7345)\n if (type === \"string\" && (ret = rcssNum.exec(value)) && ret[1]) {\n value = adjustCSS(elem, name, ret);\n\n // Fixes bug trac-9237\n type = \"number\";\n }\n\n // Make sure that null and NaN values aren't set (trac-7116)\n if (value == null || value !== value) {\n return;\n }\n\n // If a number was passed in, add the unit (except for certain CSS properties)\n // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n // \"px\" to a few hardcoded values.\n if (type === \"number\" && !isCustomProp) {\n value += ret && ret[3] || (jQuery.cssNumber[origName] ? \"\" : \"px\");\n }\n\n // background-* props affect original clone's values\n if (!support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0) {\n style[name] = \"inherit\";\n }\n\n // If a hook was provided, use that value, otherwise just set the specified value\n if (!hooks || !(\"set\" in hooks) || (value = hooks.set(elem, value, extra)) !== undefined) {\n if (isCustomProp) {\n style.setProperty(name, value);\n } else {\n style[name] = value;\n }\n }\n } else {\n // If a hook was provided get the non-computed value from there\n if (hooks && \"get\" in hooks && (ret = hooks.get(elem, false, extra)) !== undefined) {\n return ret;\n }\n\n // Otherwise just get the value from the style object\n return style[name];\n }\n },\n css: function (elem, name, extra, styles) {\n var val,\n num,\n hooks,\n origName = camelCase(name),\n isCustomProp = rcustomProp.test(name);\n\n // Make sure that we're working with the right name. We don't\n // want to modify the value if it is a CSS custom property\n // since they are user-defined.\n if (!isCustomProp) {\n name = finalPropName(origName);\n }\n\n // Try prefixed name followed by the unprefixed name\n hooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName];\n\n // If a hook was provided get the computed value from there\n if (hooks && \"get\" in hooks) {\n val = hooks.get(elem, true, extra);\n }\n\n // Otherwise, if a way to get the computed value exists, use that\n if (val === undefined) {\n val = curCSS(elem, name, styles);\n }\n\n // Convert \"normal\" to computed value\n if (val === \"normal\" && name in cssNormalTransform) {\n val = cssNormalTransform[name];\n }\n\n // Make numeric if forced or a qualifier was provided and val looks numeric\n if (extra === \"\" || extra) {\n num = parseFloat(val);\n return extra === true || isFinite(num) ? num || 0 : val;\n }\n return val;\n }\n });\n jQuery.each([\"height\", \"width\"], function (_i, dimension) {\n jQuery.cssHooks[dimension] = {\n get: function (elem, computed, extra) {\n if (computed) {\n // Certain elements can have dimension info if we invisibly show them\n // but it must have a current display style that would benefit\n return rdisplayswap.test(jQuery.css(elem, \"display\")) && (\n // Support: Safari 8+\n // Table columns in Safari have non-zero offsetWidth & zero\n // getBoundingClientRect().width unless display is changed.\n // Support: IE <=11 only\n // Running getBoundingClientRect on a disconnected node\n // in IE throws an error.\n !elem.getClientRects().length || !elem.getBoundingClientRect().width) ? swap(elem, cssShow, function () {\n return getWidthOrHeight(elem, dimension, extra);\n }) : getWidthOrHeight(elem, dimension, extra);\n }\n },\n set: function (elem, value, extra) {\n var matches,\n styles = getStyles(elem),\n // Only read styles.position if the test has a chance to fail\n // to avoid forcing a reflow.\n scrollboxSizeBuggy = !support.scrollboxSize() && styles.position === \"absolute\",\n // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n boxSizingNeeded = scrollboxSizeBuggy || extra,\n isBorderBox = boxSizingNeeded && jQuery.css(elem, \"boxSizing\", false, styles) === \"border-box\",\n subtract = extra ? boxModelAdjustment(elem, dimension, extra, isBorderBox, styles) : 0;\n\n // Account for unreliable border-box dimensions by comparing offset* to computed and\n // faking a content-box to get border and padding (gh-3699)\n if (isBorderBox && scrollboxSizeBuggy) {\n subtract -= Math.ceil(elem[\"offset\" + dimension[0].toUpperCase() + dimension.slice(1)] - parseFloat(styles[dimension]) - boxModelAdjustment(elem, dimension, \"border\", false, styles) - 0.5);\n }\n\n // Convert to pixels if value adjustment is needed\n if (subtract && (matches = rcssNum.exec(value)) && (matches[3] || \"px\") !== \"px\") {\n elem.style[dimension] = value;\n value = jQuery.css(elem, dimension);\n }\n return setPositiveNumber(elem, value, subtract);\n }\n };\n });\n jQuery.cssHooks.marginLeft = addGetHookIf(support.reliableMarginLeft, function (elem, computed) {\n if (computed) {\n return (parseFloat(curCSS(elem, \"marginLeft\")) || elem.getBoundingClientRect().left - swap(elem, {\n marginLeft: 0\n }, function () {\n return elem.getBoundingClientRect().left;\n })) + \"px\";\n }\n });\n\n // These hooks are used by animate to expand properties\n jQuery.each({\n margin: \"\",\n padding: \"\",\n border: \"Width\"\n }, function (prefix, suffix) {\n jQuery.cssHooks[prefix + suffix] = {\n expand: function (value) {\n var i = 0,\n expanded = {},\n // Assumes a single number if not a string\n parts = typeof value === \"string\" ? value.split(\" \") : [value];\n for (; i < 4; i++) {\n expanded[prefix + cssExpand[i] + suffix] = parts[i] || parts[i - 2] || parts[0];\n }\n return expanded;\n }\n };\n if (prefix !== \"margin\") {\n jQuery.cssHooks[prefix + suffix].set = setPositiveNumber;\n }\n });\n jQuery.fn.extend({\n css: function (name, value) {\n return access(this, function (elem, name, value) {\n var styles,\n len,\n map = {},\n i = 0;\n if (Array.isArray(name)) {\n styles = getStyles(elem);\n len = name.length;\n for (; i < len; i++) {\n map[name[i]] = jQuery.css(elem, name[i], false, styles);\n }\n return map;\n }\n return value !== undefined ? jQuery.style(elem, name, value) : jQuery.css(elem, name);\n }, name, value, arguments.length > 1);\n }\n });\n function Tween(elem, options, prop, end, easing) {\n return new Tween.prototype.init(elem, options, prop, end, easing);\n }\n jQuery.Tween = Tween;\n Tween.prototype = {\n constructor: Tween,\n init: function (elem, options, prop, end, easing, unit) {\n this.elem = elem;\n this.prop = prop;\n this.easing = easing || jQuery.easing._default;\n this.options = options;\n this.start = this.now = this.cur();\n this.end = end;\n this.unit = unit || (jQuery.cssNumber[prop] ? \"\" : \"px\");\n },\n cur: function () {\n var hooks = Tween.propHooks[this.prop];\n return hooks && hooks.get ? hooks.get(this) : Tween.propHooks._default.get(this);\n },\n run: function (percent) {\n var eased,\n hooks = Tween.propHooks[this.prop];\n if (this.options.duration) {\n this.pos = eased = jQuery.easing[this.easing](percent, this.options.duration * percent, 0, 1, this.options.duration);\n } else {\n this.pos = eased = percent;\n }\n this.now = (this.end - this.start) * eased + this.start;\n if (this.options.step) {\n this.options.step.call(this.elem, this.now, this);\n }\n if (hooks && hooks.set) {\n hooks.set(this);\n } else {\n Tween.propHooks._default.set(this);\n }\n return this;\n }\n };\n Tween.prototype.init.prototype = Tween.prototype;\n Tween.propHooks = {\n _default: {\n get: function (tween) {\n var result;\n\n // Use a property on the element directly when it is not a DOM element,\n // or when there is no matching style property that exists.\n if (tween.elem.nodeType !== 1 || tween.elem[tween.prop] != null && tween.elem.style[tween.prop] == null) {\n return tween.elem[tween.prop];\n }\n\n // Passing an empty string as a 3rd parameter to .css will automatically\n // attempt a parseFloat and fallback to a string if the parse fails.\n // Simple values such as \"10px\" are parsed to Float;\n // complex values such as \"rotate(1rad)\" are returned as-is.\n result = jQuery.css(tween.elem, tween.prop, \"\");\n\n // Empty strings, null, undefined and \"auto\" are converted to 0.\n return !result || result === \"auto\" ? 0 : result;\n },\n set: function (tween) {\n // Use step hook for back compat.\n // Use cssHook if its there.\n // Use .style if available and use plain properties where available.\n if (jQuery.fx.step[tween.prop]) {\n jQuery.fx.step[tween.prop](tween);\n } else if (tween.elem.nodeType === 1 && (jQuery.cssHooks[tween.prop] || tween.elem.style[finalPropName(tween.prop)] != null)) {\n jQuery.style(tween.elem, tween.prop, tween.now + tween.unit);\n } else {\n tween.elem[tween.prop] = tween.now;\n }\n }\n }\n };\n\n // Support: IE <=9 only\n // Panic based approach to setting things on disconnected nodes\n Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n set: function (tween) {\n if (tween.elem.nodeType && tween.elem.parentNode) {\n tween.elem[tween.prop] = tween.now;\n }\n }\n };\n jQuery.easing = {\n linear: function (p) {\n return p;\n },\n swing: function (p) {\n return 0.5 - Math.cos(p * Math.PI) / 2;\n },\n _default: \"swing\"\n };\n jQuery.fx = Tween.prototype.init;\n\n // Back compat <1.8 extension point\n jQuery.fx.step = {};\n var fxNow,\n inProgress,\n rfxtypes = /^(?:toggle|show|hide)$/,\n rrun = /queueHooks$/;\n function schedule() {\n if (inProgress) {\n if (document.hidden === false && window.requestAnimationFrame) {\n window.requestAnimationFrame(schedule);\n } else {\n window.setTimeout(schedule, jQuery.fx.interval);\n }\n jQuery.fx.tick();\n }\n }\n\n // Animations created synchronously will run synchronously\n function createFxNow() {\n window.setTimeout(function () {\n fxNow = undefined;\n });\n return fxNow = Date.now();\n }\n\n // Generate parameters to create a standard animation\n function genFx(type, includeWidth) {\n var which,\n i = 0,\n attrs = {\n height: type\n };\n\n // If we include width, step value is 1 to do all cssExpand values,\n // otherwise step value is 2 to skip over Left and Right\n includeWidth = includeWidth ? 1 : 0;\n for (; i < 4; i += 2 - includeWidth) {\n which = cssExpand[i];\n attrs[\"margin\" + which] = attrs[\"padding\" + which] = type;\n }\n if (includeWidth) {\n attrs.opacity = attrs.width = type;\n }\n return attrs;\n }\n function createTween(value, prop, animation) {\n var tween,\n collection = (Animation.tweeners[prop] || []).concat(Animation.tweeners[\"*\"]),\n index = 0,\n length = collection.length;\n for (; index < length; index++) {\n if (tween = collection[index].call(animation, prop, value)) {\n // We're done with this property\n return tween;\n }\n }\n }\n function defaultPrefilter(elem, props, opts) {\n var prop,\n value,\n toggle,\n hooks,\n oldfire,\n propTween,\n restoreDisplay,\n display,\n isBox = \"width\" in props || \"height\" in props,\n anim = this,\n orig = {},\n style = elem.style,\n hidden = elem.nodeType && isHiddenWithinTree(elem),\n dataShow = dataPriv.get(elem, \"fxshow\");\n\n // Queue-skipping animations hijack the fx hooks\n if (!opts.queue) {\n hooks = jQuery._queueHooks(elem, \"fx\");\n if (hooks.unqueued == null) {\n hooks.unqueued = 0;\n oldfire = hooks.empty.fire;\n hooks.empty.fire = function () {\n if (!hooks.unqueued) {\n oldfire();\n }\n };\n }\n hooks.unqueued++;\n anim.always(function () {\n // Ensure the complete handler is called before this completes\n anim.always(function () {\n hooks.unqueued--;\n if (!jQuery.queue(elem, \"fx\").length) {\n hooks.empty.fire();\n }\n });\n });\n }\n\n // Detect show/hide animations\n for (prop in props) {\n value = props[prop];\n if (rfxtypes.test(value)) {\n delete props[prop];\n toggle = toggle || value === \"toggle\";\n if (value === (hidden ? \"hide\" : \"show\")) {\n // Pretend to be hidden if this is a \"show\" and\n // there is still data from a stopped show/hide\n if (value === \"show\" && dataShow && dataShow[prop] !== undefined) {\n hidden = true;\n\n // Ignore all other no-op show/hide data\n } else {\n continue;\n }\n }\n orig[prop] = dataShow && dataShow[prop] || jQuery.style(elem, prop);\n }\n }\n\n // Bail out if this is a no-op like .hide().hide()\n propTween = !jQuery.isEmptyObject(props);\n if (!propTween && jQuery.isEmptyObject(orig)) {\n return;\n }\n\n // Restrict \"overflow\" and \"display\" styles during box animations\n if (isBox && elem.nodeType === 1) {\n // Support: IE <=9 - 11, Edge 12 - 15\n // Record all 3 overflow attributes because IE does not infer the shorthand\n // from identically-valued overflowX and overflowY and Edge just mirrors\n // the overflowX value there.\n opts.overflow = [style.overflow, style.overflowX, style.overflowY];\n\n // Identify a display type, preferring old show/hide data over the CSS cascade\n restoreDisplay = dataShow && dataShow.display;\n if (restoreDisplay == null) {\n restoreDisplay = dataPriv.get(elem, \"display\");\n }\n display = jQuery.css(elem, \"display\");\n if (display === \"none\") {\n if (restoreDisplay) {\n display = restoreDisplay;\n } else {\n // Get nonempty value(s) by temporarily forcing visibility\n showHide([elem], true);\n restoreDisplay = elem.style.display || restoreDisplay;\n display = jQuery.css(elem, \"display\");\n showHide([elem]);\n }\n }\n\n // Animate inline elements as inline-block\n if (display === \"inline\" || display === \"inline-block\" && restoreDisplay != null) {\n if (jQuery.css(elem, \"float\") === \"none\") {\n // Restore the original display value at the end of pure show/hide animations\n if (!propTween) {\n anim.done(function () {\n style.display = restoreDisplay;\n });\n if (restoreDisplay == null) {\n display = style.display;\n restoreDisplay = display === \"none\" ? \"\" : display;\n }\n }\n style.display = \"inline-block\";\n }\n }\n }\n if (opts.overflow) {\n style.overflow = \"hidden\";\n anim.always(function () {\n style.overflow = opts.overflow[0];\n style.overflowX = opts.overflow[1];\n style.overflowY = opts.overflow[2];\n });\n }\n\n // Implement show/hide animations\n propTween = false;\n for (prop in orig) {\n // General show/hide setup for this element animation\n if (!propTween) {\n if (dataShow) {\n if (\"hidden\" in dataShow) {\n hidden = dataShow.hidden;\n }\n } else {\n dataShow = dataPriv.access(elem, \"fxshow\", {\n display: restoreDisplay\n });\n }\n\n // Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n if (toggle) {\n dataShow.hidden = !hidden;\n }\n\n // Show elements before animating them\n if (hidden) {\n showHide([elem], true);\n }\n\n /* eslint-disable no-loop-func */\n\n anim.done(function () {\n /* eslint-enable no-loop-func */\n\n // The final step of a \"hide\" animation is actually hiding the element\n if (!hidden) {\n showHide([elem]);\n }\n dataPriv.remove(elem, \"fxshow\");\n for (prop in orig) {\n jQuery.style(elem, prop, orig[prop]);\n }\n });\n }\n\n // Per-property setup\n propTween = createTween(hidden ? dataShow[prop] : 0, prop, anim);\n if (!(prop in dataShow)) {\n dataShow[prop] = propTween.start;\n if (hidden) {\n propTween.end = propTween.start;\n propTween.start = 0;\n }\n }\n }\n }\n function propFilter(props, specialEasing) {\n var index, name, easing, value, hooks;\n\n // camelCase, specialEasing and expand cssHook pass\n for (index in props) {\n name = camelCase(index);\n easing = specialEasing[name];\n value = props[index];\n if (Array.isArray(value)) {\n easing = value[1];\n value = props[index] = value[0];\n }\n if (index !== name) {\n props[name] = value;\n delete props[index];\n }\n hooks = jQuery.cssHooks[name];\n if (hooks && \"expand\" in hooks) {\n value = hooks.expand(value);\n delete props[name];\n\n // Not quite $.extend, this won't overwrite existing keys.\n // Reusing 'index' because we have the correct \"name\"\n for (index in value) {\n if (!(index in props)) {\n props[index] = value[index];\n specialEasing[index] = easing;\n }\n }\n } else {\n specialEasing[name] = easing;\n }\n }\n }\n function Animation(elem, properties, options) {\n var result,\n stopped,\n index = 0,\n length = Animation.prefilters.length,\n deferred = jQuery.Deferred().always(function () {\n // Don't match elem in the :animated selector\n delete tick.elem;\n }),\n tick = function () {\n if (stopped) {\n return false;\n }\n var currentTime = fxNow || createFxNow(),\n remaining = Math.max(0, animation.startTime + animation.duration - currentTime),\n // Support: Android 2.3 only\n // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (trac-12497)\n temp = remaining / animation.duration || 0,\n percent = 1 - temp,\n index = 0,\n length = animation.tweens.length;\n for (; index < length; index++) {\n animation.tweens[index].run(percent);\n }\n deferred.notifyWith(elem, [animation, percent, remaining]);\n\n // If there's more to do, yield\n if (percent < 1 && length) {\n return remaining;\n }\n\n // If this was an empty animation, synthesize a final progress notification\n if (!length) {\n deferred.notifyWith(elem, [animation, 1, 0]);\n }\n\n // Resolve the animation and report its conclusion\n deferred.resolveWith(elem, [animation]);\n return false;\n },\n animation = deferred.promise({\n elem: elem,\n props: jQuery.extend({}, properties),\n opts: jQuery.extend(true, {\n specialEasing: {},\n easing: jQuery.easing._default\n }, options),\n originalProperties: properties,\n originalOptions: options,\n startTime: fxNow || createFxNow(),\n duration: options.duration,\n tweens: [],\n createTween: function (prop, end) {\n var tween = jQuery.Tween(elem, animation.opts, prop, end, animation.opts.specialEasing[prop] || animation.opts.easing);\n animation.tweens.push(tween);\n return tween;\n },\n stop: function (gotoEnd) {\n var index = 0,\n // If we are going to the end, we want to run all the tweens\n // otherwise we skip this part\n length = gotoEnd ? animation.tweens.length : 0;\n if (stopped) {\n return this;\n }\n stopped = true;\n for (; index < length; index++) {\n animation.tweens[index].run(1);\n }\n\n // Resolve when we played the last frame; otherwise, reject\n if (gotoEnd) {\n deferred.notifyWith(elem, [animation, 1, 0]);\n deferred.resolveWith(elem, [animation, gotoEnd]);\n } else {\n deferred.rejectWith(elem, [animation, gotoEnd]);\n }\n return this;\n }\n }),\n props = animation.props;\n propFilter(props, animation.opts.specialEasing);\n for (; index < length; index++) {\n result = Animation.prefilters[index].call(animation, elem, props, animation.opts);\n if (result) {\n if (isFunction(result.stop)) {\n jQuery._queueHooks(animation.elem, animation.opts.queue).stop = result.stop.bind(result);\n }\n return result;\n }\n }\n jQuery.map(props, createTween, animation);\n if (isFunction(animation.opts.start)) {\n animation.opts.start.call(elem, animation);\n }\n\n // Attach callbacks from options\n animation.progress(animation.opts.progress).done(animation.opts.done, animation.opts.complete).fail(animation.opts.fail).always(animation.opts.always);\n jQuery.fx.timer(jQuery.extend(tick, {\n elem: elem,\n anim: animation,\n queue: animation.opts.queue\n }));\n return animation;\n }\n jQuery.Animation = jQuery.extend(Animation, {\n tweeners: {\n \"*\": [function (prop, value) {\n var tween = this.createTween(prop, value);\n adjustCSS(tween.elem, prop, rcssNum.exec(value), tween);\n return tween;\n }]\n },\n tweener: function (props, callback) {\n if (isFunction(props)) {\n callback = props;\n props = [\"*\"];\n } else {\n props = props.match(rnothtmlwhite);\n }\n var prop,\n index = 0,\n length = props.length;\n for (; index < length; index++) {\n prop = props[index];\n Animation.tweeners[prop] = Animation.tweeners[prop] || [];\n Animation.tweeners[prop].unshift(callback);\n }\n },\n prefilters: [defaultPrefilter],\n prefilter: function (callback, prepend) {\n if (prepend) {\n Animation.prefilters.unshift(callback);\n } else {\n Animation.prefilters.push(callback);\n }\n }\n });\n jQuery.speed = function (speed, easing, fn) {\n var opt = speed && typeof speed === \"object\" ? jQuery.extend({}, speed) : {\n complete: fn || !fn && easing || isFunction(speed) && speed,\n duration: speed,\n easing: fn && easing || easing && !isFunction(easing) && easing\n };\n\n // Go to the end state if fx are off\n if (jQuery.fx.off) {\n opt.duration = 0;\n } else {\n if (typeof opt.duration !== \"number\") {\n if (opt.duration in jQuery.fx.speeds) {\n opt.duration = jQuery.fx.speeds[opt.duration];\n } else {\n opt.duration = jQuery.fx.speeds._default;\n }\n }\n }\n\n // Normalize opt.queue - true/undefined/null -> \"fx\"\n if (opt.queue == null || opt.queue === true) {\n opt.queue = \"fx\";\n }\n\n // Queueing\n opt.old = opt.complete;\n opt.complete = function () {\n if (isFunction(opt.old)) {\n opt.old.call(this);\n }\n if (opt.queue) {\n jQuery.dequeue(this, opt.queue);\n }\n };\n return opt;\n };\n jQuery.fn.extend({\n fadeTo: function (speed, to, easing, callback) {\n // Show any hidden elements after setting opacity to 0\n return this.filter(isHiddenWithinTree).css(\"opacity\", 0).show()\n\n // Animate to the value specified\n .end().animate({\n opacity: to\n }, speed, easing, callback);\n },\n animate: function (prop, speed, easing, callback) {\n var empty = jQuery.isEmptyObject(prop),\n optall = jQuery.speed(speed, easing, callback),\n doAnimation = function () {\n // Operate on a copy of prop so per-property easing won't be lost\n var anim = Animation(this, jQuery.extend({}, prop), optall);\n\n // Empty animations, or finishing resolves immediately\n if (empty || dataPriv.get(this, \"finish\")) {\n anim.stop(true);\n }\n };\n doAnimation.finish = doAnimation;\n return empty || optall.queue === false ? this.each(doAnimation) : this.queue(optall.queue, doAnimation);\n },\n stop: function (type, clearQueue, gotoEnd) {\n var stopQueue = function (hooks) {\n var stop = hooks.stop;\n delete hooks.stop;\n stop(gotoEnd);\n };\n if (typeof type !== \"string\") {\n gotoEnd = clearQueue;\n clearQueue = type;\n type = undefined;\n }\n if (clearQueue) {\n this.queue(type || \"fx\", []);\n }\n return this.each(function () {\n var dequeue = true,\n index = type != null && type + \"queueHooks\",\n timers = jQuery.timers,\n data = dataPriv.get(this);\n if (index) {\n if (data[index] && data[index].stop) {\n stopQueue(data[index]);\n }\n } else {\n for (index in data) {\n if (data[index] && data[index].stop && rrun.test(index)) {\n stopQueue(data[index]);\n }\n }\n }\n for (index = timers.length; index--;) {\n if (timers[index].elem === this && (type == null || timers[index].queue === type)) {\n timers[index].anim.stop(gotoEnd);\n dequeue = false;\n timers.splice(index, 1);\n }\n }\n\n // Start the next in the queue if the last step wasn't forced.\n // Timers currently will call their complete callbacks, which\n // will dequeue but only if they were gotoEnd.\n if (dequeue || !gotoEnd) {\n jQuery.dequeue(this, type);\n }\n });\n },\n finish: function (type) {\n if (type !== false) {\n type = type || \"fx\";\n }\n return this.each(function () {\n var index,\n data = dataPriv.get(this),\n queue = data[type + \"queue\"],\n hooks = data[type + \"queueHooks\"],\n timers = jQuery.timers,\n length = queue ? queue.length : 0;\n\n // Enable finishing flag on private data\n data.finish = true;\n\n // Empty the queue first\n jQuery.queue(this, type, []);\n if (hooks && hooks.stop) {\n hooks.stop.call(this, true);\n }\n\n // Look for any active animations, and finish them\n for (index = timers.length; index--;) {\n if (timers[index].elem === this && timers[index].queue === type) {\n timers[index].anim.stop(true);\n timers.splice(index, 1);\n }\n }\n\n // Look for any animations in the old queue and finish them\n for (index = 0; index < length; index++) {\n if (queue[index] && queue[index].finish) {\n queue[index].finish.call(this);\n }\n }\n\n // Turn off finishing flag\n delete data.finish;\n });\n }\n });\n jQuery.each([\"toggle\", \"show\", \"hide\"], function (_i, name) {\n var cssFn = jQuery.fn[name];\n jQuery.fn[name] = function (speed, easing, callback) {\n return speed == null || typeof speed === \"boolean\" ? cssFn.apply(this, arguments) : this.animate(genFx(name, true), speed, easing, callback);\n };\n });\n\n // Generate shortcuts for custom animations\n jQuery.each({\n slideDown: genFx(\"show\"),\n slideUp: genFx(\"hide\"),\n slideToggle: genFx(\"toggle\"),\n fadeIn: {\n opacity: \"show\"\n },\n fadeOut: {\n opacity: \"hide\"\n },\n fadeToggle: {\n opacity: \"toggle\"\n }\n }, function (name, props) {\n jQuery.fn[name] = function (speed, easing, callback) {\n return this.animate(props, speed, easing, callback);\n };\n });\n jQuery.timers = [];\n jQuery.fx.tick = function () {\n var timer,\n i = 0,\n timers = jQuery.timers;\n fxNow = Date.now();\n for (; i < timers.length; i++) {\n timer = timers[i];\n\n // Run the timer and safely remove it when done (allowing for external removal)\n if (!timer() && timers[i] === timer) {\n timers.splice(i--, 1);\n }\n }\n if (!timers.length) {\n jQuery.fx.stop();\n }\n fxNow = undefined;\n };\n jQuery.fx.timer = function (timer) {\n jQuery.timers.push(timer);\n jQuery.fx.start();\n };\n jQuery.fx.interval = 13;\n jQuery.fx.start = function () {\n if (inProgress) {\n return;\n }\n inProgress = true;\n schedule();\n };\n jQuery.fx.stop = function () {\n inProgress = null;\n };\n jQuery.fx.speeds = {\n slow: 600,\n fast: 200,\n // Default speed\n _default: 400\n };\n\n // Based off of the plugin by Clint Helfers, with permission.\n jQuery.fn.delay = function (time, type) {\n time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;\n type = type || \"fx\";\n return this.queue(type, function (next, hooks) {\n var timeout = window.setTimeout(next, time);\n hooks.stop = function () {\n window.clearTimeout(timeout);\n };\n });\n };\n (function () {\n var input = document.createElement(\"input\"),\n select = document.createElement(\"select\"),\n opt = select.appendChild(document.createElement(\"option\"));\n input.type = \"checkbox\";\n\n // Support: Android <=4.3 only\n // Default value for a checkbox should be \"on\"\n support.checkOn = input.value !== \"\";\n\n // Support: IE <=11 only\n // Must access selectedIndex to make default options select\n support.optSelected = opt.selected;\n\n // Support: IE <=11 only\n // An input loses its value after becoming a radio\n input = document.createElement(\"input\");\n input.value = \"t\";\n input.type = \"radio\";\n support.radioValue = input.value === \"t\";\n })();\n var boolHook,\n attrHandle = jQuery.expr.attrHandle;\n jQuery.fn.extend({\n attr: function (name, value) {\n return access(this, jQuery.attr, name, value, arguments.length > 1);\n },\n removeAttr: function (name) {\n return this.each(function () {\n jQuery.removeAttr(this, name);\n });\n }\n });\n jQuery.extend({\n attr: function (elem, name, value) {\n var ret,\n hooks,\n nType = elem.nodeType;\n\n // Don't get/set attributes on text, comment and attribute nodes\n if (nType === 3 || nType === 8 || nType === 2) {\n return;\n }\n\n // Fallback to prop when attributes are not supported\n if (typeof elem.getAttribute === \"undefined\") {\n return jQuery.prop(elem, name, value);\n }\n\n // Attribute hooks are determined by the lowercase version\n // Grab necessary hook if one is defined\n if (nType !== 1 || !jQuery.isXMLDoc(elem)) {\n hooks = jQuery.attrHooks[name.toLowerCase()] || (jQuery.expr.match.bool.test(name) ? boolHook : undefined);\n }\n if (value !== undefined) {\n if (value === null) {\n jQuery.removeAttr(elem, name);\n return;\n }\n if (hooks && \"set\" in hooks && (ret = hooks.set(elem, value, name)) !== undefined) {\n return ret;\n }\n elem.setAttribute(name, value + \"\");\n return value;\n }\n if (hooks && \"get\" in hooks && (ret = hooks.get(elem, name)) !== null) {\n return ret;\n }\n ret = jQuery.find.attr(elem, name);\n\n // Non-existent attributes return null, we normalize to undefined\n return ret == null ? undefined : ret;\n },\n attrHooks: {\n type: {\n set: function (elem, value) {\n if (!support.radioValue && value === \"radio\" && nodeName(elem, \"input\")) {\n var val = elem.value;\n elem.setAttribute(\"type\", value);\n if (val) {\n elem.value = val;\n }\n return value;\n }\n }\n }\n },\n removeAttr: function (elem, value) {\n var name,\n i = 0,\n // Attribute names can contain non-HTML whitespace characters\n // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n attrNames = value && value.match(rnothtmlwhite);\n if (attrNames && elem.nodeType === 1) {\n while (name = attrNames[i++]) {\n elem.removeAttribute(name);\n }\n }\n }\n });\n\n // Hooks for boolean attributes\n boolHook = {\n set: function (elem, value, name) {\n if (value === false) {\n // Remove boolean attributes when set to false\n jQuery.removeAttr(elem, name);\n } else {\n elem.setAttribute(name, name);\n }\n return name;\n }\n };\n jQuery.each(jQuery.expr.match.bool.source.match(/\\w+/g), function (_i, name) {\n var getter = attrHandle[name] || jQuery.find.attr;\n attrHandle[name] = function (elem, name, isXML) {\n var ret,\n handle,\n lowercaseName = name.toLowerCase();\n if (!isXML) {\n // Avoid an infinite loop by temporarily removing this function from the getter\n handle = attrHandle[lowercaseName];\n attrHandle[lowercaseName] = ret;\n ret = getter(elem, name, isXML) != null ? lowercaseName : null;\n attrHandle[lowercaseName] = handle;\n }\n return ret;\n };\n });\n var rfocusable = /^(?:input|select|textarea|button)$/i,\n rclickable = /^(?:a|area)$/i;\n jQuery.fn.extend({\n prop: function (name, value) {\n return access(this, jQuery.prop, name, value, arguments.length > 1);\n },\n removeProp: function (name) {\n return this.each(function () {\n delete this[jQuery.propFix[name] || name];\n });\n }\n });\n jQuery.extend({\n prop: function (elem, name, value) {\n var ret,\n hooks,\n nType = elem.nodeType;\n\n // Don't get/set properties on text, comment and attribute nodes\n if (nType === 3 || nType === 8 || nType === 2) {\n return;\n }\n if (nType !== 1 || !jQuery.isXMLDoc(elem)) {\n // Fix name and attach hooks\n name = jQuery.propFix[name] || name;\n hooks = jQuery.propHooks[name];\n }\n if (value !== undefined) {\n if (hooks && \"set\" in hooks && (ret = hooks.set(elem, value, name)) !== undefined) {\n return ret;\n }\n return elem[name] = value;\n }\n if (hooks && \"get\" in hooks && (ret = hooks.get(elem, name)) !== null) {\n return ret;\n }\n return elem[name];\n },\n propHooks: {\n tabIndex: {\n get: function (elem) {\n // Support: IE <=9 - 11 only\n // elem.tabIndex doesn't always return the\n // correct value when it hasn't been explicitly set\n // Use proper attribute retrieval (trac-12072)\n var tabindex = jQuery.find.attr(elem, \"tabindex\");\n if (tabindex) {\n return parseInt(tabindex, 10);\n }\n if (rfocusable.test(elem.nodeName) || rclickable.test(elem.nodeName) && elem.href) {\n return 0;\n }\n return -1;\n }\n }\n },\n propFix: {\n \"for\": \"htmlFor\",\n \"class\": \"className\"\n }\n });\n\n // Support: IE <=11 only\n // Accessing the selectedIndex property\n // forces the browser to respect setting selected\n // on the option\n // The getter ensures a default option is selected\n // when in an optgroup\n // eslint rule \"no-unused-expressions\" is disabled for this code\n // since it considers such accessions noop\n if (!support.optSelected) {\n jQuery.propHooks.selected = {\n get: function (elem) {\n /* eslint no-unused-expressions: \"off\" */\n\n var parent = elem.parentNode;\n if (parent && parent.parentNode) {\n parent.parentNode.selectedIndex;\n }\n return null;\n },\n set: function (elem) {\n /* eslint no-unused-expressions: \"off\" */\n\n var parent = elem.parentNode;\n if (parent) {\n parent.selectedIndex;\n if (parent.parentNode) {\n parent.parentNode.selectedIndex;\n }\n }\n }\n };\n }\n jQuery.each([\"tabIndex\", \"readOnly\", \"maxLength\", \"cellSpacing\", \"cellPadding\", \"rowSpan\", \"colSpan\", \"useMap\", \"frameBorder\", \"contentEditable\"], function () {\n jQuery.propFix[this.toLowerCase()] = this;\n });\n\n // Strip and collapse whitespace according to HTML spec\n // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n function stripAndCollapse(value) {\n var tokens = value.match(rnothtmlwhite) || [];\n return tokens.join(\" \");\n }\n function getClass(elem) {\n return elem.getAttribute && elem.getAttribute(\"class\") || \"\";\n }\n function classesToArray(value) {\n if (Array.isArray(value)) {\n return value;\n }\n if (typeof value === \"string\") {\n return value.match(rnothtmlwhite) || [];\n }\n return [];\n }\n jQuery.fn.extend({\n addClass: function (value) {\n var classNames, cur, curValue, className, i, finalValue;\n if (isFunction(value)) {\n return this.each(function (j) {\n jQuery(this).addClass(value.call(this, j, getClass(this)));\n });\n }\n classNames = classesToArray(value);\n if (classNames.length) {\n return this.each(function () {\n curValue = getClass(this);\n cur = this.nodeType === 1 && \" \" + stripAndCollapse(curValue) + \" \";\n if (cur) {\n for (i = 0; i < classNames.length; i++) {\n className = classNames[i];\n if (cur.indexOf(\" \" + className + \" \") < 0) {\n cur += className + \" \";\n }\n }\n\n // Only assign if different to avoid unneeded rendering.\n finalValue = stripAndCollapse(cur);\n if (curValue !== finalValue) {\n this.setAttribute(\"class\", finalValue);\n }\n }\n });\n }\n return this;\n },\n removeClass: function (value) {\n var classNames, cur, curValue, className, i, finalValue;\n if (isFunction(value)) {\n return this.each(function (j) {\n jQuery(this).removeClass(value.call(this, j, getClass(this)));\n });\n }\n if (!arguments.length) {\n return this.attr(\"class\", \"\");\n }\n classNames = classesToArray(value);\n if (classNames.length) {\n return this.each(function () {\n curValue = getClass(this);\n\n // This expression is here for better compressibility (see addClass)\n cur = this.nodeType === 1 && \" \" + stripAndCollapse(curValue) + \" \";\n if (cur) {\n for (i = 0; i < classNames.length; i++) {\n className = classNames[i];\n\n // Remove *all* instances\n while (cur.indexOf(\" \" + className + \" \") > -1) {\n cur = cur.replace(\" \" + className + \" \", \" \");\n }\n }\n\n // Only assign if different to avoid unneeded rendering.\n finalValue = stripAndCollapse(cur);\n if (curValue !== finalValue) {\n this.setAttribute(\"class\", finalValue);\n }\n }\n });\n }\n return this;\n },\n toggleClass: function (value, stateVal) {\n var classNames,\n className,\n i,\n self,\n type = typeof value,\n isValidValue = type === \"string\" || Array.isArray(value);\n if (isFunction(value)) {\n return this.each(function (i) {\n jQuery(this).toggleClass(value.call(this, i, getClass(this), stateVal), stateVal);\n });\n }\n if (typeof stateVal === \"boolean\" && isValidValue) {\n return stateVal ? this.addClass(value) : this.removeClass(value);\n }\n classNames = classesToArray(value);\n return this.each(function () {\n if (isValidValue) {\n // Toggle individual class names\n self = jQuery(this);\n for (i = 0; i < classNames.length; i++) {\n className = classNames[i];\n\n // Check each className given, space separated list\n if (self.hasClass(className)) {\n self.removeClass(className);\n } else {\n self.addClass(className);\n }\n }\n\n // Toggle whole class name\n } else if (value === undefined || type === \"boolean\") {\n className = getClass(this);\n if (className) {\n // Store className if set\n dataPriv.set(this, \"__className__\", className);\n }\n\n // If the element has a class name or if we're passed `false`,\n // then remove the whole classname (if there was one, the above saved it).\n // Otherwise bring back whatever was previously saved (if anything),\n // falling back to the empty string if nothing was stored.\n if (this.setAttribute) {\n this.setAttribute(\"class\", className || value === false ? \"\" : dataPriv.get(this, \"__className__\") || \"\");\n }\n }\n });\n },\n hasClass: function (selector) {\n var className,\n elem,\n i = 0;\n className = \" \" + selector + \" \";\n while (elem = this[i++]) {\n if (elem.nodeType === 1 && (\" \" + stripAndCollapse(getClass(elem)) + \" \").indexOf(className) > -1) {\n return true;\n }\n }\n return false;\n }\n });\n var rreturn = /\\r/g;\n jQuery.fn.extend({\n val: function (value) {\n var hooks,\n ret,\n valueIsFunction,\n elem = this[0];\n if (!arguments.length) {\n if (elem) {\n hooks = jQuery.valHooks[elem.type] || jQuery.valHooks[elem.nodeName.toLowerCase()];\n if (hooks && \"get\" in hooks && (ret = hooks.get(elem, \"value\")) !== undefined) {\n return ret;\n }\n ret = elem.value;\n\n // Handle most common string cases\n if (typeof ret === \"string\") {\n return ret.replace(rreturn, \"\");\n }\n\n // Handle cases where value is null/undef or number\n return ret == null ? \"\" : ret;\n }\n return;\n }\n valueIsFunction = isFunction(value);\n return this.each(function (i) {\n var val;\n if (this.nodeType !== 1) {\n return;\n }\n if (valueIsFunction) {\n val = value.call(this, i, jQuery(this).val());\n } else {\n val = value;\n }\n\n // Treat null/undefined as \"\"; convert numbers to string\n if (val == null) {\n val = \"\";\n } else if (typeof val === \"number\") {\n val += \"\";\n } else if (Array.isArray(val)) {\n val = jQuery.map(val, function (value) {\n return value == null ? \"\" : value + \"\";\n });\n }\n hooks = jQuery.valHooks[this.type] || jQuery.valHooks[this.nodeName.toLowerCase()];\n\n // If set returns undefined, fall back to normal setting\n if (!hooks || !(\"set\" in hooks) || hooks.set(this, val, \"value\") === undefined) {\n this.value = val;\n }\n });\n }\n });\n jQuery.extend({\n valHooks: {\n option: {\n get: function (elem) {\n var val = jQuery.find.attr(elem, \"value\");\n return val != null ? val :\n // Support: IE <=10 - 11 only\n // option.text throws exceptions (trac-14686, trac-14858)\n // Strip and collapse whitespace\n // https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n stripAndCollapse(jQuery.text(elem));\n }\n },\n select: {\n get: function (elem) {\n var value,\n option,\n i,\n options = elem.options,\n index = elem.selectedIndex,\n one = elem.type === \"select-one\",\n values = one ? null : [],\n max = one ? index + 1 : options.length;\n if (index < 0) {\n i = max;\n } else {\n i = one ? index : 0;\n }\n\n // Loop through all the selected options\n for (; i < max; i++) {\n option = options[i];\n\n // Support: IE <=9 only\n // IE8-9 doesn't update selected after form reset (trac-2551)\n if ((option.selected || i === index) &&\n // Don't return options that are disabled or in a disabled optgroup\n !option.disabled && (!option.parentNode.disabled || !nodeName(option.parentNode, \"optgroup\"))) {\n // Get the specific value for the option\n value = jQuery(option).val();\n\n // We don't need an array for one selects\n if (one) {\n return value;\n }\n\n // Multi-Selects return an array\n values.push(value);\n }\n }\n return values;\n },\n set: function (elem, value) {\n var optionSet,\n option,\n options = elem.options,\n values = jQuery.makeArray(value),\n i = options.length;\n while (i--) {\n option = options[i];\n\n /* eslint-disable no-cond-assign */\n\n if (option.selected = jQuery.inArray(jQuery.valHooks.option.get(option), values) > -1) {\n optionSet = true;\n }\n\n /* eslint-enable no-cond-assign */\n }\n\n // Force browsers to behave consistently when non-matching value is set\n if (!optionSet) {\n elem.selectedIndex = -1;\n }\n return values;\n }\n }\n }\n });\n\n // Radios and checkboxes getter/setter\n jQuery.each([\"radio\", \"checkbox\"], function () {\n jQuery.valHooks[this] = {\n set: function (elem, value) {\n if (Array.isArray(value)) {\n return elem.checked = jQuery.inArray(jQuery(elem).val(), value) > -1;\n }\n }\n };\n if (!support.checkOn) {\n jQuery.valHooks[this].get = function (elem) {\n return elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n };\n }\n });\n\n // Return jQuery for attributes-only inclusion\n var location = window.location;\n var nonce = {\n guid: Date.now()\n };\n var rquery = /\\?/;\n\n // Cross-browser xml parsing\n jQuery.parseXML = function (data) {\n var xml, parserErrorElem;\n if (!data || typeof data !== \"string\") {\n return null;\n }\n\n // Support: IE 9 - 11 only\n // IE throws on parseFromString with invalid input.\n try {\n xml = new window.DOMParser().parseFromString(data, \"text/xml\");\n } catch (e) {}\n parserErrorElem = xml && xml.getElementsByTagName(\"parsererror\")[0];\n if (!xml || parserErrorElem) {\n jQuery.error(\"Invalid XML: \" + (parserErrorElem ? jQuery.map(parserErrorElem.childNodes, function (el) {\n return el.textContent;\n }).join(\"\\n\") : data));\n }\n return xml;\n };\n var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n stopPropagationCallback = function (e) {\n e.stopPropagation();\n };\n jQuery.extend(jQuery.event, {\n trigger: function (event, data, elem, onlyHandlers) {\n var i,\n cur,\n tmp,\n bubbleType,\n ontype,\n handle,\n special,\n lastElement,\n eventPath = [elem || document],\n type = hasOwn.call(event, \"type\") ? event.type : event,\n namespaces = hasOwn.call(event, \"namespace\") ? event.namespace.split(\".\") : [];\n cur = lastElement = tmp = elem = elem || document;\n\n // Don't do events on text and comment nodes\n if (elem.nodeType === 3 || elem.nodeType === 8) {\n return;\n }\n\n // focus/blur morphs to focusin/out; ensure we're not firing them right now\n if (rfocusMorph.test(type + jQuery.event.triggered)) {\n return;\n }\n if (type.indexOf(\".\") > -1) {\n // Namespaced trigger; create a regexp to match event type in handle()\n namespaces = type.split(\".\");\n type = namespaces.shift();\n namespaces.sort();\n }\n ontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n // Caller can pass in a jQuery.Event object, Object, or just an event type string\n event = event[jQuery.expando] ? event : new jQuery.Event(type, typeof event === \"object\" && event);\n\n // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n event.isTrigger = onlyHandlers ? 2 : 3;\n event.namespace = namespaces.join(\".\");\n event.rnamespace = event.namespace ? new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\") : null;\n\n // Clean up the event in case it is being reused\n event.result = undefined;\n if (!event.target) {\n event.target = elem;\n }\n\n // Clone any incoming data and prepend the event, creating the handler arg list\n data = data == null ? [event] : jQuery.makeArray(data, [event]);\n\n // Allow special events to draw outside the lines\n special = jQuery.event.special[type] || {};\n if (!onlyHandlers && special.trigger && special.trigger.apply(elem, data) === false) {\n return;\n }\n\n // Determine event propagation path in advance, per W3C events spec (trac-9951)\n // Bubble up to document, then to window; watch for a global ownerDocument var (trac-9724)\n if (!onlyHandlers && !special.noBubble && !isWindow(elem)) {\n bubbleType = special.delegateType || type;\n if (!rfocusMorph.test(bubbleType + type)) {\n cur = cur.parentNode;\n }\n for (; cur; cur = cur.parentNode) {\n eventPath.push(cur);\n tmp = cur;\n }\n\n // Only add window if we got to document (e.g., not plain obj or detached DOM)\n if (tmp === (elem.ownerDocument || document)) {\n eventPath.push(tmp.defaultView || tmp.parentWindow || window);\n }\n }\n\n // Fire handlers on the event path\n i = 0;\n while ((cur = eventPath[i++]) && !event.isPropagationStopped()) {\n lastElement = cur;\n event.type = i > 1 ? bubbleType : special.bindType || type;\n\n // jQuery handler\n handle = (dataPriv.get(cur, \"events\") || Object.create(null))[event.type] && dataPriv.get(cur, \"handle\");\n if (handle) {\n handle.apply(cur, data);\n }\n\n // Native handler\n handle = ontype && cur[ontype];\n if (handle && handle.apply && acceptData(cur)) {\n event.result = handle.apply(cur, data);\n if (event.result === false) {\n event.preventDefault();\n }\n }\n }\n event.type = type;\n\n // If nobody prevented the default action, do it now\n if (!onlyHandlers && !event.isDefaultPrevented()) {\n if ((!special._default || special._default.apply(eventPath.pop(), data) === false) && acceptData(elem)) {\n // Call a native DOM method on the target with the same name as the event.\n // Don't do default actions on window, that's where global variables be (trac-6170)\n if (ontype && isFunction(elem[type]) && !isWindow(elem)) {\n // Don't re-trigger an onFOO event when we call its FOO() method\n tmp = elem[ontype];\n if (tmp) {\n elem[ontype] = null;\n }\n\n // Prevent re-triggering of the same event, since we already bubbled it above\n jQuery.event.triggered = type;\n if (event.isPropagationStopped()) {\n lastElement.addEventListener(type, stopPropagationCallback);\n }\n elem[type]();\n if (event.isPropagationStopped()) {\n lastElement.removeEventListener(type, stopPropagationCallback);\n }\n jQuery.event.triggered = undefined;\n if (tmp) {\n elem[ontype] = tmp;\n }\n }\n }\n }\n return event.result;\n },\n // Piggyback on a donor event to simulate a different one\n // Used only for `focus(in | out)` events\n simulate: function (type, elem, event) {\n var e = jQuery.extend(new jQuery.Event(), event, {\n type: type,\n isSimulated: true\n });\n jQuery.event.trigger(e, null, elem);\n }\n });\n jQuery.fn.extend({\n trigger: function (type, data) {\n return this.each(function () {\n jQuery.event.trigger(type, data, this);\n });\n },\n triggerHandler: function (type, data) {\n var elem = this[0];\n if (elem) {\n return jQuery.event.trigger(type, data, elem, true);\n }\n }\n });\n var rbracket = /\\[\\]$/,\n rCRLF = /\\r?\\n/g,\n rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n rsubmittable = /^(?:input|select|textarea|keygen)/i;\n function buildParams(prefix, obj, traditional, add) {\n var name;\n if (Array.isArray(obj)) {\n // Serialize array item.\n jQuery.each(obj, function (i, v) {\n if (traditional || rbracket.test(prefix)) {\n // Treat each array item as a scalar.\n add(prefix, v);\n } else {\n // Item is non-scalar (array or object), encode its numeric index.\n buildParams(prefix + \"[\" + (typeof v === \"object\" && v != null ? i : \"\") + \"]\", v, traditional, add);\n }\n });\n } else if (!traditional && toType(obj) === \"object\") {\n // Serialize object item.\n for (name in obj) {\n buildParams(prefix + \"[\" + name + \"]\", obj[name], traditional, add);\n }\n } else {\n // Serialize scalar item.\n add(prefix, obj);\n }\n }\n\n // Serialize an array of form elements or a set of\n // key/values into a query string\n jQuery.param = function (a, traditional) {\n var prefix,\n s = [],\n add = function (key, valueOrFunction) {\n // If value is a function, invoke it and use its return value\n var value = isFunction(valueOrFunction) ? valueOrFunction() : valueOrFunction;\n s[s.length] = encodeURIComponent(key) + \"=\" + encodeURIComponent(value == null ? \"\" : value);\n };\n if (a == null) {\n return \"\";\n }\n\n // If an array was passed in, assume that it is an array of form elements.\n if (Array.isArray(a) || a.jquery && !jQuery.isPlainObject(a)) {\n // Serialize the form elements\n jQuery.each(a, function () {\n add(this.name, this.value);\n });\n } else {\n // If traditional, encode the \"old\" way (the way 1.3.2 or older\n // did it), otherwise encode params recursively.\n for (prefix in a) {\n buildParams(prefix, a[prefix], traditional, add);\n }\n }\n\n // Return the resulting serialization\n return s.join(\"&\");\n };\n jQuery.fn.extend({\n serialize: function () {\n return jQuery.param(this.serializeArray());\n },\n serializeArray: function () {\n return this.map(function () {\n // Can add propHook for \"elements\" to filter or add form elements\n var elements = jQuery.prop(this, \"elements\");\n return elements ? jQuery.makeArray(elements) : this;\n }).filter(function () {\n var type = this.type;\n\n // Use .is( \":disabled\" ) so that fieldset[disabled] works\n return this.name && !jQuery(this).is(\":disabled\") && rsubmittable.test(this.nodeName) && !rsubmitterTypes.test(type) && (this.checked || !rcheckableType.test(type));\n }).map(function (_i, elem) {\n var val = jQuery(this).val();\n if (val == null) {\n return null;\n }\n if (Array.isArray(val)) {\n return jQuery.map(val, function (val) {\n return {\n name: elem.name,\n value: val.replace(rCRLF, \"\\r\\n\")\n };\n });\n }\n return {\n name: elem.name,\n value: val.replace(rCRLF, \"\\r\\n\")\n };\n }).get();\n }\n });\n var r20 = /%20/g,\n rhash = /#.*$/,\n rantiCache = /([?&])_=[^&]*/,\n rheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n // trac-7653, trac-8125, trac-8152: local protocol detection\n rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n rnoContent = /^(?:GET|HEAD)$/,\n rprotocol = /^\\/\\//,\n /* Prefilters\n * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n * 2) These are called:\n * - BEFORE asking for a transport\n * - AFTER param serialization (s.data is a string if s.processData is true)\n * 3) key is the dataType\n * 4) the catchall symbol \"*\" can be used\n * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n */\n prefilters = {},\n /* Transports bindings\n * 1) key is the dataType\n * 2) the catchall symbol \"*\" can be used\n * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n */\n transports = {},\n // Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression\n allTypes = \"*/\".concat(\"*\"),\n // Anchor tag for parsing the document origin\n originAnchor = document.createElement(\"a\");\n originAnchor.href = location.href;\n\n // Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\n function addToPrefiltersOrTransports(structure) {\n // dataTypeExpression is optional and defaults to \"*\"\n return function (dataTypeExpression, func) {\n if (typeof dataTypeExpression !== \"string\") {\n func = dataTypeExpression;\n dataTypeExpression = \"*\";\n }\n var dataType,\n i = 0,\n dataTypes = dataTypeExpression.toLowerCase().match(rnothtmlwhite) || [];\n if (isFunction(func)) {\n // For each dataType in the dataTypeExpression\n while (dataType = dataTypes[i++]) {\n // Prepend if requested\n if (dataType[0] === \"+\") {\n dataType = dataType.slice(1) || \"*\";\n (structure[dataType] = structure[dataType] || []).unshift(func);\n\n // Otherwise append\n } else {\n (structure[dataType] = structure[dataType] || []).push(func);\n }\n }\n }\n };\n }\n\n // Base inspection function for prefilters and transports\n function inspectPrefiltersOrTransports(structure, options, originalOptions, jqXHR) {\n var inspected = {},\n seekingTransport = structure === transports;\n function inspect(dataType) {\n var selected;\n inspected[dataType] = true;\n jQuery.each(structure[dataType] || [], function (_, prefilterOrFactory) {\n var dataTypeOrTransport = prefilterOrFactory(options, originalOptions, jqXHR);\n if (typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[dataTypeOrTransport]) {\n options.dataTypes.unshift(dataTypeOrTransport);\n inspect(dataTypeOrTransport);\n return false;\n } else if (seekingTransport) {\n return !(selected = dataTypeOrTransport);\n }\n });\n return selected;\n }\n return inspect(options.dataTypes[0]) || !inspected[\"*\"] && inspect(\"*\");\n }\n\n // A special extend for ajax options\n // that takes \"flat\" options (not to be deep extended)\n // Fixes trac-9887\n function ajaxExtend(target, src) {\n var key,\n deep,\n flatOptions = jQuery.ajaxSettings.flatOptions || {};\n for (key in src) {\n if (src[key] !== undefined) {\n (flatOptions[key] ? target : deep || (deep = {}))[key] = src[key];\n }\n }\n if (deep) {\n jQuery.extend(true, target, deep);\n }\n return target;\n }\n\n /* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\n function ajaxHandleResponses(s, jqXHR, responses) {\n var ct,\n type,\n finalDataType,\n firstDataType,\n contents = s.contents,\n dataTypes = s.dataTypes;\n\n // Remove auto dataType and get content-type in the process\n while (dataTypes[0] === \"*\") {\n dataTypes.shift();\n if (ct === undefined) {\n ct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n }\n }\n\n // Check if we're dealing with a known content-type\n if (ct) {\n for (type in contents) {\n if (contents[type] && contents[type].test(ct)) {\n dataTypes.unshift(type);\n break;\n }\n }\n }\n\n // Check to see if we have a response for the expected dataType\n if (dataTypes[0] in responses) {\n finalDataType = dataTypes[0];\n } else {\n // Try convertible dataTypes\n for (type in responses) {\n if (!dataTypes[0] || s.converters[type + \" \" + dataTypes[0]]) {\n finalDataType = type;\n break;\n }\n if (!firstDataType) {\n firstDataType = type;\n }\n }\n\n // Or just use first one\n finalDataType = finalDataType || firstDataType;\n }\n\n // If we found a dataType\n // We add the dataType to the list if needed\n // and return the corresponding response\n if (finalDataType) {\n if (finalDataType !== dataTypes[0]) {\n dataTypes.unshift(finalDataType);\n }\n return responses[finalDataType];\n }\n }\n\n /* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\n function ajaxConvert(s, response, jqXHR, isSuccess) {\n var conv2,\n current,\n conv,\n tmp,\n prev,\n converters = {},\n // Work with a copy of dataTypes in case we need to modify it for conversion\n dataTypes = s.dataTypes.slice();\n\n // Create converters map with lowercased keys\n if (dataTypes[1]) {\n for (conv in s.converters) {\n converters[conv.toLowerCase()] = s.converters[conv];\n }\n }\n current = dataTypes.shift();\n\n // Convert to each sequential dataType\n while (current) {\n if (s.responseFields[current]) {\n jqXHR[s.responseFields[current]] = response;\n }\n\n // Apply the dataFilter if provided\n if (!prev && isSuccess && s.dataFilter) {\n response = s.dataFilter(response, s.dataType);\n }\n prev = current;\n current = dataTypes.shift();\n if (current) {\n // There's only work to do if current dataType is non-auto\n if (current === \"*\") {\n current = prev;\n\n // Convert response if prev dataType is non-auto and differs from current\n } else if (prev !== \"*\" && prev !== current) {\n // Seek a direct converter\n conv = converters[prev + \" \" + current] || converters[\"* \" + current];\n\n // If none found, seek a pair\n if (!conv) {\n for (conv2 in converters) {\n // If conv2 outputs current\n tmp = conv2.split(\" \");\n if (tmp[1] === current) {\n // If prev can be converted to accepted input\n conv = converters[prev + \" \" + tmp[0]] || converters[\"* \" + tmp[0]];\n if (conv) {\n // Condense equivalence converters\n if (conv === true) {\n conv = converters[conv2];\n\n // Otherwise, insert the intermediate dataType\n } else if (converters[conv2] !== true) {\n current = tmp[0];\n dataTypes.unshift(tmp[1]);\n }\n break;\n }\n }\n }\n }\n\n // Apply converter (if not an equivalence)\n if (conv !== true) {\n // Unless errors are allowed to bubble, catch and return them\n if (conv && s.throws) {\n response = conv(response);\n } else {\n try {\n response = conv(response);\n } catch (e) {\n return {\n state: \"parsererror\",\n error: conv ? e : \"No conversion from \" + prev + \" to \" + current\n };\n }\n }\n }\n }\n }\n }\n return {\n state: \"success\",\n data: response\n };\n }\n jQuery.extend({\n // Counter for holding the number of active queries\n active: 0,\n // Last-Modified header cache for next request\n lastModified: {},\n etag: {},\n ajaxSettings: {\n url: location.href,\n type: \"GET\",\n isLocal: rlocalProtocol.test(location.protocol),\n global: true,\n processData: true,\n async: true,\n contentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n /*\n timeout: 0,\n data: null,\n dataType: null,\n username: null,\n password: null,\n cache: null,\n throws: false,\n traditional: false,\n headers: {},\n */\n\n accepts: {\n \"*\": allTypes,\n text: \"text/plain\",\n html: \"text/html\",\n xml: \"application/xml, text/xml\",\n json: \"application/json, text/javascript\"\n },\n contents: {\n xml: /\\bxml\\b/,\n html: /\\bhtml/,\n json: /\\bjson\\b/\n },\n responseFields: {\n xml: \"responseXML\",\n text: \"responseText\",\n json: \"responseJSON\"\n },\n // Data converters\n // Keys separate source (or catchall \"*\") and destination types with a single space\n converters: {\n // Convert anything to text\n \"* text\": String,\n // Text to html (true = no transformation)\n \"text html\": true,\n // Evaluate text as a json expression\n \"text json\": JSON.parse,\n // Parse text as xml\n \"text xml\": jQuery.parseXML\n },\n // For options that shouldn't be deep extended:\n // you can add your own custom options here if\n // and when you create one that shouldn't be\n // deep extended (see ajaxExtend)\n flatOptions: {\n url: true,\n context: true\n }\n },\n // Creates a full fledged settings object into target\n // with both ajaxSettings and settings fields.\n // If target is omitted, writes into ajaxSettings.\n ajaxSetup: function (target, settings) {\n return settings ?\n // Building a settings object\n ajaxExtend(ajaxExtend(target, jQuery.ajaxSettings), settings) :\n // Extending ajaxSettings\n ajaxExtend(jQuery.ajaxSettings, target);\n },\n ajaxPrefilter: addToPrefiltersOrTransports(prefilters),\n ajaxTransport: addToPrefiltersOrTransports(transports),\n // Main method\n ajax: function (url, options) {\n // If url is an object, simulate pre-1.5 signature\n if (typeof url === \"object\") {\n options = url;\n url = undefined;\n }\n\n // Force options to be an object\n options = options || {};\n var transport,\n // URL without anti-cache param\n cacheURL,\n // Response headers\n responseHeadersString,\n responseHeaders,\n // timeout handle\n timeoutTimer,\n // Url cleanup var\n urlAnchor,\n // Request state (becomes false upon send and true upon completion)\n completed,\n // To know if global events are to be dispatched\n fireGlobals,\n // Loop variable\n i,\n // uncached part of the url\n uncached,\n // Create the final options object\n s = jQuery.ajaxSetup({}, options),\n // Callbacks context\n callbackContext = s.context || s,\n // Context for global events is callbackContext if it is a DOM node or jQuery collection\n globalEventContext = s.context && (callbackContext.nodeType || callbackContext.jquery) ? jQuery(callbackContext) : jQuery.event,\n // Deferreds\n deferred = jQuery.Deferred(),\n completeDeferred = jQuery.Callbacks(\"once memory\"),\n // Status-dependent callbacks\n statusCode = s.statusCode || {},\n // Headers (they are sent all at once)\n requestHeaders = {},\n requestHeadersNames = {},\n // Default abort message\n strAbort = \"canceled\",\n // Fake xhr\n jqXHR = {\n readyState: 0,\n // Builds headers hashtable if needed\n getResponseHeader: function (key) {\n var match;\n if (completed) {\n if (!responseHeaders) {\n responseHeaders = {};\n while (match = rheaders.exec(responseHeadersString)) {\n responseHeaders[match[1].toLowerCase() + \" \"] = (responseHeaders[match[1].toLowerCase() + \" \"] || []).concat(match[2]);\n }\n }\n match = responseHeaders[key.toLowerCase() + \" \"];\n }\n return match == null ? null : match.join(\", \");\n },\n // Raw string\n getAllResponseHeaders: function () {\n return completed ? responseHeadersString : null;\n },\n // Caches the header\n setRequestHeader: function (name, value) {\n if (completed == null) {\n name = requestHeadersNames[name.toLowerCase()] = requestHeadersNames[name.toLowerCase()] || name;\n requestHeaders[name] = value;\n }\n return this;\n },\n // Overrides response content-type header\n overrideMimeType: function (type) {\n if (completed == null) {\n s.mimeType = type;\n }\n return this;\n },\n // Status-dependent callbacks\n statusCode: function (map) {\n var code;\n if (map) {\n if (completed) {\n // Execute the appropriate callbacks\n jqXHR.always(map[jqXHR.status]);\n } else {\n // Lazy-add the new callbacks in a way that preserves old ones\n for (code in map) {\n statusCode[code] = [statusCode[code], map[code]];\n }\n }\n }\n return this;\n },\n // Cancel the request\n abort: function (statusText) {\n var finalText = statusText || strAbort;\n if (transport) {\n transport.abort(finalText);\n }\n done(0, finalText);\n return this;\n }\n };\n\n // Attach deferreds\n deferred.promise(jqXHR);\n\n // Add protocol if not provided (prefilters might expect it)\n // Handle falsy url in the settings object (trac-10093: consistency with old signature)\n // We also use the url parameter if available\n s.url = ((url || s.url || location.href) + \"\").replace(rprotocol, location.protocol + \"//\");\n\n // Alias method option to type as per ticket trac-12004\n s.type = options.method || options.type || s.method || s.type;\n\n // Extract dataTypes list\n s.dataTypes = (s.dataType || \"*\").toLowerCase().match(rnothtmlwhite) || [\"\"];\n\n // A cross-domain request is in order when the origin doesn't match the current origin.\n if (s.crossDomain == null) {\n urlAnchor = document.createElement(\"a\");\n\n // Support: IE <=8 - 11, Edge 12 - 15\n // IE throws exception on accessing the href property if url is malformed,\n // e.g. http://example.com:80x/\n try {\n urlAnchor.href = s.url;\n\n // Support: IE <=8 - 11 only\n // Anchor's host property isn't correctly set when s.url is relative\n urlAnchor.href = urlAnchor.href;\n s.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !== urlAnchor.protocol + \"//\" + urlAnchor.host;\n } catch (e) {\n // If there is an error parsing the URL, assume it is crossDomain,\n // it can be rejected by the transport if it is invalid\n s.crossDomain = true;\n }\n }\n\n // Convert data if not already a string\n if (s.data && s.processData && typeof s.data !== \"string\") {\n s.data = jQuery.param(s.data, s.traditional);\n }\n\n // Apply prefilters\n inspectPrefiltersOrTransports(prefilters, s, options, jqXHR);\n\n // If request was aborted inside a prefilter, stop there\n if (completed) {\n return jqXHR;\n }\n\n // We can fire global events as of now if asked to\n // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (trac-15118)\n fireGlobals = jQuery.event && s.global;\n\n // Watch for a new set of requests\n if (fireGlobals && jQuery.active++ === 0) {\n jQuery.event.trigger(\"ajaxStart\");\n }\n\n // Uppercase the type\n s.type = s.type.toUpperCase();\n\n // Determine if request has content\n s.hasContent = !rnoContent.test(s.type);\n\n // Save the URL in case we're toying with the If-Modified-Since\n // and/or If-None-Match header later on\n // Remove hash to simplify url manipulation\n cacheURL = s.url.replace(rhash, \"\");\n\n // More options handling for requests with no content\n if (!s.hasContent) {\n // Remember the hash so we can put it back\n uncached = s.url.slice(cacheURL.length);\n\n // If data is available and should be processed, append data to url\n if (s.data && (s.processData || typeof s.data === \"string\")) {\n cacheURL += (rquery.test(cacheURL) ? \"&\" : \"?\") + s.data;\n\n // trac-9682: remove data so that it's not used in an eventual retry\n delete s.data;\n }\n\n // Add or update anti-cache param if needed\n if (s.cache === false) {\n cacheURL = cacheURL.replace(rantiCache, \"$1\");\n uncached = (rquery.test(cacheURL) ? \"&\" : \"?\") + \"_=\" + nonce.guid++ + uncached;\n }\n\n // Put hash and anti-cache on the URL that will be requested (gh-1732)\n s.url = cacheURL + uncached;\n\n // Change '%20' to '+' if this is encoded form body content (gh-2658)\n } else if (s.data && s.processData && (s.contentType || \"\").indexOf(\"application/x-www-form-urlencoded\") === 0) {\n s.data = s.data.replace(r20, \"+\");\n }\n\n // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n if (s.ifModified) {\n if (jQuery.lastModified[cacheURL]) {\n jqXHR.setRequestHeader(\"If-Modified-Since\", jQuery.lastModified[cacheURL]);\n }\n if (jQuery.etag[cacheURL]) {\n jqXHR.setRequestHeader(\"If-None-Match\", jQuery.etag[cacheURL]);\n }\n }\n\n // Set the correct header, if data is being sent\n if (s.data && s.hasContent && s.contentType !== false || options.contentType) {\n jqXHR.setRequestHeader(\"Content-Type\", s.contentType);\n }\n\n // Set the Accepts header for the server, depending on the dataType\n jqXHR.setRequestHeader(\"Accept\", s.dataTypes[0] && s.accepts[s.dataTypes[0]] ? s.accepts[s.dataTypes[0]] + (s.dataTypes[0] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\") : s.accepts[\"*\"]);\n\n // Check for headers option\n for (i in s.headers) {\n jqXHR.setRequestHeader(i, s.headers[i]);\n }\n\n // Allow custom headers/mimetypes and early abort\n if (s.beforeSend && (s.beforeSend.call(callbackContext, jqXHR, s) === false || completed)) {\n // Abort if not done already and return\n return jqXHR.abort();\n }\n\n // Aborting is no longer a cancellation\n strAbort = \"abort\";\n\n // Install callbacks on deferreds\n completeDeferred.add(s.complete);\n jqXHR.done(s.success);\n jqXHR.fail(s.error);\n\n // Get transport\n transport = inspectPrefiltersOrTransports(transports, s, options, jqXHR);\n\n // If no transport, we auto-abort\n if (!transport) {\n done(-1, \"No Transport\");\n } else {\n jqXHR.readyState = 1;\n\n // Send global event\n if (fireGlobals) {\n globalEventContext.trigger(\"ajaxSend\", [jqXHR, s]);\n }\n\n // If request was aborted inside ajaxSend, stop there\n if (completed) {\n return jqXHR;\n }\n\n // Timeout\n if (s.async && s.timeout > 0) {\n timeoutTimer = window.setTimeout(function () {\n jqXHR.abort(\"timeout\");\n }, s.timeout);\n }\n try {\n completed = false;\n transport.send(requestHeaders, done);\n } catch (e) {\n // Rethrow post-completion exceptions\n if (completed) {\n throw e;\n }\n\n // Propagate others as results\n done(-1, e);\n }\n }\n\n // Callback for when everything is done\n function done(status, nativeStatusText, responses, headers) {\n var isSuccess,\n success,\n error,\n response,\n modified,\n statusText = nativeStatusText;\n\n // Ignore repeat invocations\n if (completed) {\n return;\n }\n completed = true;\n\n // Clear timeout if it exists\n if (timeoutTimer) {\n window.clearTimeout(timeoutTimer);\n }\n\n // Dereference transport for early garbage collection\n // (no matter how long the jqXHR object will be used)\n transport = undefined;\n\n // Cache response headers\n responseHeadersString = headers || \"\";\n\n // Set readyState\n jqXHR.readyState = status > 0 ? 4 : 0;\n\n // Determine if successful\n isSuccess = status >= 200 && status < 300 || status === 304;\n\n // Get response data\n if (responses) {\n response = ajaxHandleResponses(s, jqXHR, responses);\n }\n\n // Use a noop converter for missing script but not if jsonp\n if (!isSuccess && jQuery.inArray(\"script\", s.dataTypes) > -1 && jQuery.inArray(\"json\", s.dataTypes) < 0) {\n s.converters[\"text script\"] = function () {};\n }\n\n // Convert no matter what (that way responseXXX fields are always set)\n response = ajaxConvert(s, response, jqXHR, isSuccess);\n\n // If successful, handle type chaining\n if (isSuccess) {\n // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n if (s.ifModified) {\n modified = jqXHR.getResponseHeader(\"Last-Modified\");\n if (modified) {\n jQuery.lastModified[cacheURL] = modified;\n }\n modified = jqXHR.getResponseHeader(\"etag\");\n if (modified) {\n jQuery.etag[cacheURL] = modified;\n }\n }\n\n // if no content\n if (status === 204 || s.type === \"HEAD\") {\n statusText = \"nocontent\";\n\n // if not modified\n } else if (status === 304) {\n statusText = \"notmodified\";\n\n // If we have data, let's convert it\n } else {\n statusText = response.state;\n success = response.data;\n error = response.error;\n isSuccess = !error;\n }\n } else {\n // Extract error from statusText and normalize for non-aborts\n error = statusText;\n if (status || !statusText) {\n statusText = \"error\";\n if (status < 0) {\n status = 0;\n }\n }\n }\n\n // Set data for the fake xhr object\n jqXHR.status = status;\n jqXHR.statusText = (nativeStatusText || statusText) + \"\";\n\n // Success/Error\n if (isSuccess) {\n deferred.resolveWith(callbackContext, [success, statusText, jqXHR]);\n } else {\n deferred.rejectWith(callbackContext, [jqXHR, statusText, error]);\n }\n\n // Status-dependent callbacks\n jqXHR.statusCode(statusCode);\n statusCode = undefined;\n if (fireGlobals) {\n globalEventContext.trigger(isSuccess ? \"ajaxSuccess\" : \"ajaxError\", [jqXHR, s, isSuccess ? success : error]);\n }\n\n // Complete\n completeDeferred.fireWith(callbackContext, [jqXHR, statusText]);\n if (fireGlobals) {\n globalEventContext.trigger(\"ajaxComplete\", [jqXHR, s]);\n\n // Handle the global AJAX counter\n if (! --jQuery.active) {\n jQuery.event.trigger(\"ajaxStop\");\n }\n }\n }\n return jqXHR;\n },\n getJSON: function (url, data, callback) {\n return jQuery.get(url, data, callback, \"json\");\n },\n getScript: function (url, callback) {\n return jQuery.get(url, undefined, callback, \"script\");\n }\n });\n jQuery.each([\"get\", \"post\"], function (_i, method) {\n jQuery[method] = function (url, data, callback, type) {\n // Shift arguments if data argument was omitted\n if (isFunction(data)) {\n type = type || callback;\n callback = data;\n data = undefined;\n }\n\n // The url can be an options object (which then must have .url)\n return jQuery.ajax(jQuery.extend({\n url: url,\n type: method,\n dataType: type,\n data: data,\n success: callback\n }, jQuery.isPlainObject(url) && url));\n };\n });\n jQuery.ajaxPrefilter(function (s) {\n var i;\n for (i in s.headers) {\n if (i.toLowerCase() === \"content-type\") {\n s.contentType = s.headers[i] || \"\";\n }\n }\n });\n jQuery._evalUrl = function (url, options, doc) {\n return jQuery.ajax({\n url: url,\n // Make this explicit, since user can override this through ajaxSetup (trac-11264)\n type: \"GET\",\n dataType: \"script\",\n cache: true,\n async: false,\n global: false,\n // Only evaluate the response if it is successful (gh-4126)\n // dataFilter is not invoked for failure responses, so using it instead\n // of the default converter is kludgy but it works.\n converters: {\n \"text script\": function () {}\n },\n dataFilter: function (response) {\n jQuery.globalEval(response, options, doc);\n }\n });\n };\n jQuery.fn.extend({\n wrapAll: function (html) {\n var wrap;\n if (this[0]) {\n if (isFunction(html)) {\n html = html.call(this[0]);\n }\n\n // The elements to wrap the target around\n wrap = jQuery(html, this[0].ownerDocument).eq(0).clone(true);\n if (this[0].parentNode) {\n wrap.insertBefore(this[0]);\n }\n wrap.map(function () {\n var elem = this;\n while (elem.firstElementChild) {\n elem = elem.firstElementChild;\n }\n return elem;\n }).append(this);\n }\n return this;\n },\n wrapInner: function (html) {\n if (isFunction(html)) {\n return this.each(function (i) {\n jQuery(this).wrapInner(html.call(this, i));\n });\n }\n return this.each(function () {\n var self = jQuery(this),\n contents = self.contents();\n if (contents.length) {\n contents.wrapAll(html);\n } else {\n self.append(html);\n }\n });\n },\n wrap: function (html) {\n var htmlIsFunction = isFunction(html);\n return this.each(function (i) {\n jQuery(this).wrapAll(htmlIsFunction ? html.call(this, i) : html);\n });\n },\n unwrap: function (selector) {\n this.parent(selector).not(\"body\").each(function () {\n jQuery(this).replaceWith(this.childNodes);\n });\n return this;\n }\n });\n jQuery.expr.pseudos.hidden = function (elem) {\n return !jQuery.expr.pseudos.visible(elem);\n };\n jQuery.expr.pseudos.visible = function (elem) {\n return !!(elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length);\n };\n jQuery.ajaxSettings.xhr = function () {\n try {\n return new window.XMLHttpRequest();\n } catch (e) {}\n };\n var xhrSuccessStatus = {\n // File protocol always yields status code 0, assume 200\n 0: 200,\n // Support: IE <=9 only\n // trac-1450: sometimes IE returns 1223 when it should be 204\n 1223: 204\n },\n xhrSupported = jQuery.ajaxSettings.xhr();\n support.cors = !!xhrSupported && \"withCredentials\" in xhrSupported;\n support.ajax = xhrSupported = !!xhrSupported;\n jQuery.ajaxTransport(function (options) {\n var callback, errorCallback;\n\n // Cross domain only allowed if supported through XMLHttpRequest\n if (support.cors || xhrSupported && !options.crossDomain) {\n return {\n send: function (headers, complete) {\n var i,\n xhr = options.xhr();\n xhr.open(options.type, options.url, options.async, options.username, options.password);\n\n // Apply custom fields if provided\n if (options.xhrFields) {\n for (i in options.xhrFields) {\n xhr[i] = options.xhrFields[i];\n }\n }\n\n // Override mime type if needed\n if (options.mimeType && xhr.overrideMimeType) {\n xhr.overrideMimeType(options.mimeType);\n }\n\n // X-Requested-With header\n // For cross-domain requests, seeing as conditions for a preflight are\n // akin to a jigsaw puzzle, we simply never set it to be sure.\n // (it can always be set on a per-request basis or even using ajaxSetup)\n // For same-domain requests, won't change header if already provided.\n if (!options.crossDomain && !headers[\"X-Requested-With\"]) {\n headers[\"X-Requested-With\"] = \"XMLHttpRequest\";\n }\n\n // Set headers\n for (i in headers) {\n xhr.setRequestHeader(i, headers[i]);\n }\n\n // Callback\n callback = function (type) {\n return function () {\n if (callback) {\n callback = errorCallback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = xhr.onreadystatechange = null;\n if (type === \"abort\") {\n xhr.abort();\n } else if (type === \"error\") {\n // Support: IE <=9 only\n // On a manual native abort, IE9 throws\n // errors on any property access that is not readyState\n if (typeof xhr.status !== \"number\") {\n complete(0, \"error\");\n } else {\n complete(\n // File: protocol always yields status 0; see trac-8605, trac-14207\n xhr.status, xhr.statusText);\n }\n } else {\n complete(xhrSuccessStatus[xhr.status] || xhr.status, xhr.statusText,\n // Support: IE <=9 only\n // IE9 has no XHR2 but throws on binary (trac-11426)\n // For XHR2 non-text, let the caller handle it (gh-2498)\n (xhr.responseType || \"text\") !== \"text\" || typeof xhr.responseText !== \"string\" ? {\n binary: xhr.response\n } : {\n text: xhr.responseText\n }, xhr.getAllResponseHeaders());\n }\n }\n };\n };\n\n // Listen to events\n xhr.onload = callback();\n errorCallback = xhr.onerror = xhr.ontimeout = callback(\"error\");\n\n // Support: IE 9 only\n // Use onreadystatechange to replace onabort\n // to handle uncaught aborts\n if (xhr.onabort !== undefined) {\n xhr.onabort = errorCallback;\n } else {\n xhr.onreadystatechange = function () {\n // Check readyState before timeout as it changes\n if (xhr.readyState === 4) {\n // Allow onerror to be called first,\n // but that will not handle a native abort\n // Also, save errorCallback to a variable\n // as xhr.onerror cannot be accessed\n window.setTimeout(function () {\n if (callback) {\n errorCallback();\n }\n });\n }\n };\n }\n\n // Create the abort callback\n callback = callback(\"abort\");\n try {\n // Do send the request (this may raise an exception)\n xhr.send(options.hasContent && options.data || null);\n } catch (e) {\n // trac-14683: Only rethrow if this hasn't been notified as an error yet\n if (callback) {\n throw e;\n }\n }\n },\n abort: function () {\n if (callback) {\n callback();\n }\n }\n };\n }\n });\n\n // Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\n jQuery.ajaxPrefilter(function (s) {\n if (s.crossDomain) {\n s.contents.script = false;\n }\n });\n\n // Install script dataType\n jQuery.ajaxSetup({\n accepts: {\n script: \"text/javascript, application/javascript, \" + \"application/ecmascript, application/x-ecmascript\"\n },\n contents: {\n script: /\\b(?:java|ecma)script\\b/\n },\n converters: {\n \"text script\": function (text) {\n jQuery.globalEval(text);\n return text;\n }\n }\n });\n\n // Handle cache's special case and crossDomain\n jQuery.ajaxPrefilter(\"script\", function (s) {\n if (s.cache === undefined) {\n s.cache = false;\n }\n if (s.crossDomain) {\n s.type = \"GET\";\n }\n });\n\n // Bind script tag hack transport\n jQuery.ajaxTransport(\"script\", function (s) {\n // This transport only deals with cross domain or forced-by-attrs requests\n if (s.crossDomain || s.scriptAttrs) {\n var script, callback;\n return {\n send: function (_, complete) {\n script = jQuery(\"<script>\").attr(s.scriptAttrs || {}).prop({\n charset: s.scriptCharset,\n src: s.url\n }).on(\"load error\", callback = function (evt) {\n script.remove();\n callback = null;\n if (evt) {\n complete(evt.type === \"error\" ? 404 : 200, evt.type);\n }\n });\n\n // Use native DOM manipulation to avoid our domManip AJAX trickery\n document.head.appendChild(script[0]);\n },\n abort: function () {\n if (callback) {\n callback();\n }\n }\n };\n }\n });\n var oldCallbacks = [],\n rjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n // Default jsonp settings\n jQuery.ajaxSetup({\n jsonp: \"callback\",\n jsonpCallback: function () {\n var callback = oldCallbacks.pop() || jQuery.expando + \"_\" + nonce.guid++;\n this[callback] = true;\n return callback;\n }\n });\n\n // Detect, normalize options and install callbacks for jsonp requests\n jQuery.ajaxPrefilter(\"json jsonp\", function (s, originalSettings, jqXHR) {\n var callbackName,\n overwritten,\n responseContainer,\n jsonProp = s.jsonp !== false && (rjsonp.test(s.url) ? \"url\" : typeof s.data === \"string\" && (s.contentType || \"\").indexOf(\"application/x-www-form-urlencoded\") === 0 && rjsonp.test(s.data) && \"data\");\n\n // Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n if (jsonProp || s.dataTypes[0] === \"jsonp\") {\n // Get callback name, remembering preexisting value associated with it\n callbackName = s.jsonpCallback = isFunction(s.jsonpCallback) ? s.jsonpCallback() : s.jsonpCallback;\n\n // Insert callback into url or form data\n if (jsonProp) {\n s[jsonProp] = s[jsonProp].replace(rjsonp, \"$1\" + callbackName);\n } else if (s.jsonp !== false) {\n s.url += (rquery.test(s.url) ? \"&\" : \"?\") + s.jsonp + \"=\" + callbackName;\n }\n\n // Use data converter to retrieve json after script execution\n s.converters[\"script json\"] = function () {\n if (!responseContainer) {\n jQuery.error(callbackName + \" was not called\");\n }\n return responseContainer[0];\n };\n\n // Force json dataType\n s.dataTypes[0] = \"json\";\n\n // Install callback\n overwritten = window[callbackName];\n window[callbackName] = function () {\n responseContainer = arguments;\n };\n\n // Clean-up function (fires after converters)\n jqXHR.always(function () {\n // If previous value didn't exist - remove it\n if (overwritten === undefined) {\n jQuery(window).removeProp(callbackName);\n\n // Otherwise restore preexisting value\n } else {\n window[callbackName] = overwritten;\n }\n\n // Save back as free\n if (s[callbackName]) {\n // Make sure that re-using the options doesn't screw things around\n s.jsonpCallback = originalSettings.jsonpCallback;\n\n // Save the callback name for future use\n oldCallbacks.push(callbackName);\n }\n\n // Call if it was a function and we have a response\n if (responseContainer && isFunction(overwritten)) {\n overwritten(responseContainer[0]);\n }\n responseContainer = overwritten = undefined;\n });\n\n // Delegate to script\n return \"script\";\n }\n });\n\n // Support: Safari 8 only\n // In Safari 8 documents created via document.implementation.createHTMLDocument\n // collapse sibling forms: the second one becomes a child of the first one.\n // Because of that, this security measure has to be disabled in Safari 8.\n // https://bugs.webkit.org/show_bug.cgi?id=137337\n support.createHTMLDocument = function () {\n var body = document.implementation.createHTMLDocument(\"\").body;\n body.innerHTML = \"<form></form><form></form>\";\n return body.childNodes.length === 2;\n }();\n\n // Argument \"data\" should be string of html\n // context (optional): If specified, the fragment will be created in this context,\n // defaults to document\n // keepScripts (optional): If true, will include scripts passed in the html string\n jQuery.parseHTML = function (data, context, keepScripts) {\n if (typeof data !== \"string\") {\n return [];\n }\n if (typeof context === \"boolean\") {\n keepScripts = context;\n context = false;\n }\n var base, parsed, scripts;\n if (!context) {\n // Stop scripts or inline event handlers from being executed immediately\n // by using document.implementation\n if (support.createHTMLDocument) {\n context = document.implementation.createHTMLDocument(\"\");\n\n // Set the base href for the created document\n // so any parsed elements with URLs\n // are based on the document's URL (gh-2965)\n base = context.createElement(\"base\");\n base.href = document.location.href;\n context.head.appendChild(base);\n } else {\n context = document;\n }\n }\n parsed = rsingleTag.exec(data);\n scripts = !keepScripts && [];\n\n // Single tag\n if (parsed) {\n return [context.createElement(parsed[1])];\n }\n parsed = buildFragment([data], context, scripts);\n if (scripts && scripts.length) {\n jQuery(scripts).remove();\n }\n return jQuery.merge([], parsed.childNodes);\n };\n\n /**\n * Load a url into a page\n */\n jQuery.fn.load = function (url, params, callback) {\n var selector,\n type,\n response,\n self = this,\n off = url.indexOf(\" \");\n if (off > -1) {\n selector = stripAndCollapse(url.slice(off));\n url = url.slice(0, off);\n }\n\n // If it's a function\n if (isFunction(params)) {\n // We assume that it's the callback\n callback = params;\n params = undefined;\n\n // Otherwise, build a param string\n } else if (params && typeof params === \"object\") {\n type = \"POST\";\n }\n\n // If we have elements to modify, make the request\n if (self.length > 0) {\n jQuery.ajax({\n url: url,\n // If \"type\" variable is undefined, then \"GET\" method will be used.\n // Make value of this field explicit since\n // user can override it through ajaxSetup method\n type: type || \"GET\",\n dataType: \"html\",\n data: params\n }).done(function (responseText) {\n // Save response for use in complete callback\n response = arguments;\n self.html(selector ?\n // If a selector was specified, locate the right elements in a dummy div\n // Exclude scripts to avoid IE 'Permission Denied' errors\n jQuery(\"<div>\").append(jQuery.parseHTML(responseText)).find(selector) :\n // Otherwise use the full result\n responseText);\n\n // If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n // but they are ignored because response was set above.\n // If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n }).always(callback && function (jqXHR, status) {\n self.each(function () {\n callback.apply(this, response || [jqXHR.responseText, status, jqXHR]);\n });\n });\n }\n return this;\n };\n jQuery.expr.pseudos.animated = function (elem) {\n return jQuery.grep(jQuery.timers, function (fn) {\n return elem === fn.elem;\n }).length;\n };\n jQuery.offset = {\n setOffset: function (elem, options, i) {\n var curPosition,\n curLeft,\n curCSSTop,\n curTop,\n curOffset,\n curCSSLeft,\n calculatePosition,\n position = jQuery.css(elem, \"position\"),\n curElem = jQuery(elem),\n props = {};\n\n // Set position first, in-case top/left are set even on static elem\n if (position === \"static\") {\n elem.style.position = \"relative\";\n }\n curOffset = curElem.offset();\n curCSSTop = jQuery.css(elem, \"top\");\n curCSSLeft = jQuery.css(elem, \"left\");\n calculatePosition = (position === \"absolute\" || position === \"fixed\") && (curCSSTop + curCSSLeft).indexOf(\"auto\") > -1;\n\n // Need to be able to calculate position if either\n // top or left is auto and position is either absolute or fixed\n if (calculatePosition) {\n curPosition = curElem.position();\n curTop = curPosition.top;\n curLeft = curPosition.left;\n } else {\n curTop = parseFloat(curCSSTop) || 0;\n curLeft = parseFloat(curCSSLeft) || 0;\n }\n if (isFunction(options)) {\n // Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n options = options.call(elem, i, jQuery.extend({}, curOffset));\n }\n if (options.top != null) {\n props.top = options.top - curOffset.top + curTop;\n }\n if (options.left != null) {\n props.left = options.left - curOffset.left + curLeft;\n }\n if (\"using\" in options) {\n options.using.call(elem, props);\n } else {\n curElem.css(props);\n }\n }\n };\n jQuery.fn.extend({\n // offset() relates an element's border box to the document origin\n offset: function (options) {\n // Preserve chaining for setter\n if (arguments.length) {\n return options === undefined ? this : this.each(function (i) {\n jQuery.offset.setOffset(this, options, i);\n });\n }\n var rect,\n win,\n elem = this[0];\n if (!elem) {\n return;\n }\n\n // Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n // Support: IE <=11 only\n // Running getBoundingClientRect on a\n // disconnected node in IE throws an error\n if (!elem.getClientRects().length) {\n return {\n top: 0,\n left: 0\n };\n }\n\n // Get document-relative position by adding viewport scroll to viewport-relative gBCR\n rect = elem.getBoundingClientRect();\n win = elem.ownerDocument.defaultView;\n return {\n top: rect.top + win.pageYOffset,\n left: rect.left + win.pageXOffset\n };\n },\n // position() relates an element's margin box to its offset parent's padding box\n // This corresponds to the behavior of CSS absolute positioning\n position: function () {\n if (!this[0]) {\n return;\n }\n var offsetParent,\n offset,\n doc,\n elem = this[0],\n parentOffset = {\n top: 0,\n left: 0\n };\n\n // position:fixed elements are offset from the viewport, which itself always has zero offset\n if (jQuery.css(elem, \"position\") === \"fixed\") {\n // Assume position:fixed implies availability of getBoundingClientRect\n offset = elem.getBoundingClientRect();\n } else {\n offset = this.offset();\n\n // Account for the *real* offset parent, which can be the document or its root element\n // when a statically positioned element is identified\n doc = elem.ownerDocument;\n offsetParent = elem.offsetParent || doc.documentElement;\n while (offsetParent && (offsetParent === doc.body || offsetParent === doc.documentElement) && jQuery.css(offsetParent, \"position\") === \"static\") {\n offsetParent = offsetParent.parentNode;\n }\n if (offsetParent && offsetParent !== elem && offsetParent.nodeType === 1) {\n // Incorporate borders into its offset, since they are outside its content origin\n parentOffset = jQuery(offsetParent).offset();\n parentOffset.top += jQuery.css(offsetParent, \"borderTopWidth\", true);\n parentOffset.left += jQuery.css(offsetParent, \"borderLeftWidth\", true);\n }\n }\n\n // Subtract parent offsets and element margins\n return {\n top: offset.top - parentOffset.top - jQuery.css(elem, \"marginTop\", true),\n left: offset.left - parentOffset.left - jQuery.css(elem, \"marginLeft\", true)\n };\n },\n // This method will return documentElement in the following cases:\n // 1) For the element inside the iframe without offsetParent, this method will return\n // documentElement of the parent window\n // 2) For the hidden or detached element\n // 3) For body or html element, i.e. in case of the html node - it will return itself\n //\n // but those exceptions were never presented as a real life use-cases\n // and might be considered as more preferable results.\n //\n // This logic, however, is not guaranteed and can change at any point in the future\n offsetParent: function () {\n return this.map(function () {\n var offsetParent = this.offsetParent;\n while (offsetParent && jQuery.css(offsetParent, \"position\") === \"static\") {\n offsetParent = offsetParent.offsetParent;\n }\n return offsetParent || documentElement;\n });\n }\n });\n\n // Create scrollLeft and scrollTop methods\n jQuery.each({\n scrollLeft: \"pageXOffset\",\n scrollTop: \"pageYOffset\"\n }, function (method, prop) {\n var top = \"pageYOffset\" === prop;\n jQuery.fn[method] = function (val) {\n return access(this, function (elem, method, val) {\n // Coalesce documents and windows\n var win;\n if (isWindow(elem)) {\n win = elem;\n } else if (elem.nodeType === 9) {\n win = elem.defaultView;\n }\n if (val === undefined) {\n return win ? win[prop] : elem[method];\n }\n if (win) {\n win.scrollTo(!top ? val : win.pageXOffset, top ? val : win.pageYOffset);\n } else {\n elem[method] = val;\n }\n }, method, val, arguments.length);\n };\n });\n\n // Support: Safari <=7 - 9.1, Chrome <=37 - 49\n // Add the top/left cssHooks using jQuery.fn.position\n // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n // Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n // getComputedStyle returns percent when specified for top/left/bottom/right;\n // rather than make the css module depend on the offset module, just check for it here\n jQuery.each([\"top\", \"left\"], function (_i, prop) {\n jQuery.cssHooks[prop] = addGetHookIf(support.pixelPosition, function (elem, computed) {\n if (computed) {\n computed = curCSS(elem, prop);\n\n // If curCSS returns percentage, fallback to offset\n return rnumnonpx.test(computed) ? jQuery(elem).position()[prop] + \"px\" : computed;\n }\n });\n });\n\n // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\n jQuery.each({\n Height: \"height\",\n Width: \"width\"\n }, function (name, type) {\n jQuery.each({\n padding: \"inner\" + name,\n content: type,\n \"\": \"outer\" + name\n }, function (defaultExtra, funcName) {\n // Margin is only for outerHeight, outerWidth\n jQuery.fn[funcName] = function (margin, value) {\n var chainable = arguments.length && (defaultExtra || typeof margin !== \"boolean\"),\n extra = defaultExtra || (margin === true || value === true ? \"margin\" : \"border\");\n return access(this, function (elem, type, value) {\n var doc;\n if (isWindow(elem)) {\n // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n return funcName.indexOf(\"outer\") === 0 ? elem[\"inner\" + name] : elem.document.documentElement[\"client\" + name];\n }\n\n // Get document width or height\n if (elem.nodeType === 9) {\n doc = elem.documentElement;\n\n // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n // whichever is greatest\n return Math.max(elem.body[\"scroll\" + name], doc[\"scroll\" + name], elem.body[\"offset\" + name], doc[\"offset\" + name], doc[\"client\" + name]);\n }\n return value === undefined ?\n // Get width or height on the element, requesting but not forcing parseFloat\n jQuery.css(elem, type, extra) :\n // Set width or height on the element\n jQuery.style(elem, type, value, extra);\n }, type, chainable ? margin : undefined, chainable);\n };\n });\n });\n jQuery.each([\"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\"], function (_i, type) {\n jQuery.fn[type] = function (fn) {\n return this.on(type, fn);\n };\n });\n jQuery.fn.extend({\n bind: function (types, data, fn) {\n return this.on(types, null, data, fn);\n },\n unbind: function (types, fn) {\n return this.off(types, null, fn);\n },\n delegate: function (selector, types, data, fn) {\n return this.on(types, selector, data, fn);\n },\n undelegate: function (selector, types, fn) {\n // ( namespace ) or ( selector, types [, fn] )\n return arguments.length === 1 ? this.off(selector, \"**\") : this.off(types, selector || \"**\", fn);\n },\n hover: function (fnOver, fnOut) {\n return this.on(\"mouseenter\", fnOver).on(\"mouseleave\", fnOut || fnOver);\n }\n });\n jQuery.each((\"blur focus focusin focusout resize scroll click dblclick \" + \"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" + \"change select submit keydown keypress keyup contextmenu\").split(\" \"), function (_i, name) {\n // Handle event binding\n jQuery.fn[name] = function (data, fn) {\n return arguments.length > 0 ? this.on(name, null, data, fn) : this.trigger(name);\n };\n });\n\n // Support: Android <=4.0 only\n // Make sure we trim BOM and NBSP\n // Require that the \"whitespace run\" starts from a non-whitespace\n // to avoid O(N^2) behavior when the engine would try matching \"\\s+$\" at each space position.\n var rtrim = /^[\\s\\uFEFF\\xA0]+|([^\\s\\uFEFF\\xA0])[\\s\\uFEFF\\xA0]+$/g;\n\n // Bind a function to a context, optionally partially applying any\n // arguments.\n // jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n // However, it is not slated for removal any time soon\n jQuery.proxy = function (fn, context) {\n var tmp, args, proxy;\n if (typeof context === \"string\") {\n tmp = fn[context];\n context = fn;\n fn = tmp;\n }\n\n // Quick check to determine if target is callable, in the spec\n // this throws a TypeError, but we will just return undefined.\n if (!isFunction(fn)) {\n return undefined;\n }\n\n // Simulated bind\n args = slice.call(arguments, 2);\n proxy = function () {\n return fn.apply(context || this, args.concat(slice.call(arguments)));\n };\n\n // Set the guid of unique handler to the same of original handler, so it can be removed\n proxy.guid = fn.guid = fn.guid || jQuery.guid++;\n return proxy;\n };\n jQuery.holdReady = function (hold) {\n if (hold) {\n jQuery.readyWait++;\n } else {\n jQuery.ready(true);\n }\n };\n jQuery.isArray = Array.isArray;\n jQuery.parseJSON = JSON.parse;\n jQuery.nodeName = nodeName;\n jQuery.isFunction = isFunction;\n jQuery.isWindow = isWindow;\n jQuery.camelCase = camelCase;\n jQuery.type = toType;\n jQuery.now = Date.now;\n jQuery.isNumeric = function (obj) {\n // As of jQuery 3.0, isNumeric is limited to\n // strings and numbers (primitives or objects)\n // that can be coerced to finite numbers (gh-2662)\n var type = jQuery.type(obj);\n return (type === \"number\" || type === \"string\") &&\n // parseFloat NaNs numeric-cast false positives (\"\")\n // ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n // subtraction forces infinities to NaN\n !isNaN(obj - parseFloat(obj));\n };\n jQuery.trim = function (text) {\n return text == null ? \"\" : (text + \"\").replace(rtrim, \"$1\");\n };\n\n // Register as a named AMD module, since jQuery can be concatenated with other\n // files that may use define, but not via a proper concatenation script that\n // understands anonymous AMD modules. A named AMD is safest and most robust\n // way to register. Lowercase jquery is used because AMD module names are\n // derived from file names, and jQuery is normally delivered in a lowercase\n // file name. Do this after creating the global so that if an AMD module wants\n // to call noConflict to hide this version of jQuery, it will work.\n\n // Note that for maximum portability, libraries that are not jQuery should\n // declare themselves as anonymous modules, and avoid setting a global if an\n // AMD loader is present. jQuery is a special case. For more information, see\n // https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\n if (typeof define === \"function\" && define.amd) {\n define(\"jquery\", [], function () {\n return jQuery;\n });\n }\n var\n // Map over jQuery in case of overwrite\n _jQuery = window.jQuery,\n // Map over the $ in case of overwrite\n _$ = window.$;\n jQuery.noConflict = function (deep) {\n if (window.$ === jQuery) {\n window.$ = _$;\n }\n if (deep && window.jQuery === jQuery) {\n window.jQuery = _jQuery;\n }\n return jQuery;\n };\n\n // Expose jQuery and $ identifiers, even in AMD\n // (trac-7102#comment:10, https://github.com/jquery/jquery/pull/557)\n // and CommonJS for browser emulators (trac-13566)\n if (typeof noGlobal === \"undefined\") {\n window.jQuery = window.$ = jQuery;\n }\n return jQuery;\n});","map":{"version":3,"names":["global","factory","module","exports","document","w","Error","window","noGlobal","arr","getProto","Object","getPrototypeOf","slice","flat","array","call","concat","apply","push","indexOf","class2type","toString","hasOwn","hasOwnProperty","fnToString","ObjectFunctionString","support","isFunction","obj","nodeType","item","isWindow","preservedScriptAttributes","type","src","nonce","noModule","DOMEval","code","node","doc","i","val","script","createElement","text","getAttribute","setAttribute","head","appendChild","parentNode","removeChild","toType","version","rhtmlSuffix","jQuery","selector","context","fn","init","prototype","jquery","constructor","length","toArray","get","num","pushStack","elems","ret","merge","prevObject","each","callback","map","elem","arguments","first","eq","last","even","grep","_elem","odd","len","j","end","sort","splice","extend","options","name","copy","copyIsArray","clone","target","deep","isPlainObject","Array","isArray","undefined","expando","Math","random","replace","isReady","error","msg","noop","proto","Ctor","isEmptyObject","globalEval","isArrayLike","textContent","documentElement","nodeValue","makeArray","results","inArray","isXMLDoc","namespace","namespaceURI","docElem","ownerDocument","test","nodeName","second","invert","callbackInverse","matches","callbackExpect","arg","value","guid","Symbol","iterator","split","_i","toLowerCase","pop","whitespace","rtrimCSS","RegExp","contains","a","b","bup","compareDocumentPosition","rcssescape","fcssescape","ch","asCodePoint","charCodeAt","escapeSelector","sel","preferredDoc","pushNative","Expr","outermostContext","sortInput","hasDuplicate","documentIsHTML","rbuggyQSA","dirruns","done","classCache","createCache","tokenCache","compilerCache","nonnativeSelectorCache","sortOrder","booleans","identifier","attributes","pseudos","rwhitespace","rcomma","rleadingCombinator","rdescend","rpseudo","ridentifier","matchExpr","ID","CLASS","TAG","ATTR","PSEUDO","CHILD","bool","needsContext","rinputs","rheader","rquickExpr","rsibling","runescape","funescape","escape","nonHex","high","String","fromCharCode","unloadHandler","setDocument","inDisabledFieldset","addCombinator","disabled","dir","next","safeActiveElement","activeElement","err","childNodes","e","els","find","seed","m","nid","match","groups","newSelector","newContext","exec","getElementById","id","getElementsByTagName","getElementsByClassName","testContext","scope","tokenize","toSelector","join","querySelectorAll","qsaError","removeAttribute","select","keys","cache","key","cacheLength","shift","markFunction","assert","el","createInputPseudo","createButtonPseudo","createDisabledPseudo","isDisabled","createPositionalPseudo","argument","matchIndexes","subWindow","webkitMatchesSelector","msMatchesSelector","defaultView","top","addEventListener","getById","getElementsByName","disconnectedMatch","cssHas","querySelector","filter","attrId","getAttributeNode","tag","className","input","innerHTML","compare","sortDetached","expr","elements","matchesSelector","attr","attrHandle","uniqueSort","duplicates","sortStable","createPseudo","relative","preFilter","excess","unquoted","nodeNameSelector","expectedNodeName","pattern","operator","check","result","what","_argument","simple","forward","ofType","_context","xml","outerCache","nodeIndex","start","parent","useCache","diff","firstChild","lastChild","pseudo","args","setFilters","idx","matched","not","matcher","compile","unmatched","has","lang","elemLang","hash","location","root","focus","hasFocus","href","tabIndex","enabled","checked","selected","selectedIndex","empty","nextSibling","header","button","_matchIndexes","lt","gt","nth","radio","checkbox","file","password","image","submit","reset","filters","parseOnly","tokens","soFar","preFilters","cached","combinator","base","skip","checkNonElements","doneName","oldCache","newCache","elementMatcher","matchers","multipleContexts","contexts","condense","newUnmatched","mapped","setMatcher","postFilter","postFinder","postSelector","temp","matcherOut","preMap","postMap","preexisting","matcherIn","matcherFromTokens","checkContext","leadingRelative","implicitRelative","matchContext","matchAnyContext","matcherFromGroupMatchers","elementMatchers","setMatchers","bySet","byElement","superMatcher","outermost","matchedCount","setMatched","contextBackup","dirrunsUnique","token","compiled","unique","getText","isXML","selectors","until","truncate","is","siblings","n","rneedsContext","rsingleTag","winnow","qualifier","self","rootjQuery","parseHTML","ready","rparentsprev","guaranteedUnique","children","contents","prev","targets","l","closest","cur","index","prevAll","add","addBack","sibling","parents","parentsUntil","nextAll","nextUntil","prevUntil","contentDocument","content","reverse","rnothtmlwhite","createOptions","object","_","flag","Callbacks","firing","memory","fired","locked","list","queue","firingIndex","fire","once","stopOnFalse","remove","disable","lock","fireWith","Identity","v","Thrower","ex","adoptValue","resolve","reject","noValue","method","promise","fail","then","Deferred","func","tuples","state","always","deferred","catch","pipe","fns","newDefer","tuple","returned","progress","notify","onFulfilled","onRejected","onProgress","maxDepth","depth","handler","special","that","mightThrow","TypeError","notifyWith","resolveWith","process","exceptionHook","rejectWith","getErrorHook","getStackHook","setTimeout","stateString","when","singleValue","remaining","resolveContexts","resolveValues","primary","updateFunc","rerrorNames","asyncError","console","warn","message","stack","readyException","readyList","readyWait","wait","completed","removeEventListener","readyState","doScroll","access","chainable","emptyGet","raw","bulk","_key","rmsPrefix","rdashAlpha","fcamelCase","_all","letter","toUpperCase","camelCase","string","acceptData","owner","Data","uid","defineProperty","configurable","set","data","prop","hasData","dataPriv","dataUser","rbrace","rmultiDash","getData","JSON","parse","dataAttr","removeData","_data","_removeData","attrs","dequeue","startLength","hooks","_queueHooks","unshift","stop","setter","clearQueue","tmp","count","defer","pnum","source","rcssNum","cssExpand","isAttached","composed","getRootNode","isHiddenWithinTree","style","display","css","adjustCSS","valueParts","tween","adjusted","scale","maxIterations","currentValue","initial","unit","cssNumber","initialInUnit","defaultDisplayMap","getDefaultDisplay","body","showHide","show","values","hide","toggle","rcheckableType","rtagName","rscriptType","fragment","createDocumentFragment","div","checkClone","cloneNode","noCloneChecked","defaultValue","option","wrapMap","thead","col","tr","td","_default","tbody","tfoot","colgroup","caption","th","optgroup","getAll","setGlobalEval","refElements","rhtml","buildFragment","scripts","selection","ignored","wrap","attached","nodes","createTextNode","htmlPrefilter","rtypenamespace","returnTrue","returnFalse","on","types","one","origFn","event","off","handleObjIn","eventHandle","events","t","handleObj","handlers","namespaces","origType","elemData","create","handle","triggered","dispatch","delegateType","bindType","delegateCount","setup","mappedTypes","origCount","teardown","removeEvent","nativeEvent","handlerQueue","fix","delegateTarget","preDispatch","isPropagationStopped","currentTarget","isImmediatePropagationStopped","rnamespace","preventDefault","stopPropagation","postDispatch","matchedHandlers","matchedSelectors","addProp","hook","Event","enumerable","originalEvent","writable","load","noBubble","click","leverageNative","trigger","beforeunload","returnValue","isSetup","saved","isTrigger","stopImmediatePropagation","props","isDefaultPrevented","defaultPrevented","relatedTarget","timeStamp","Date","now","isSimulated","altKey","bubbles","cancelable","changedTouches","ctrlKey","detail","eventPhase","metaKey","pageX","pageY","shiftKey","view","charCode","keyCode","buttons","clientX","clientY","offsetX","offsetY","pointerId","pointerType","screenX","screenY","targetTouches","toElement","touches","which","blur","focusMappedHandler","documentMode","simulate","attaches","dataHolder","mouseenter","mouseleave","pointerenter","pointerleave","orig","related","rnoInnerhtml","rchecked","rcleanScript","manipulationTarget","disableScript","restoreScript","cloneCopyEvent","dest","pdataOld","udataOld","udataCur","fixInput","domManip","collection","hasScripts","iNoClone","valueIsFunction","html","_evalUrl","keepData","cleanData","dataAndEvents","deepDataAndEvents","srcElements","destElements","inPage","detach","append","prepend","insertBefore","before","after","replaceWith","replaceChild","appendTo","prependTo","insertAfter","replaceAll","original","insert","rnumnonpx","rcustomProp","getStyles","opener","getComputedStyle","swap","old","rboxStyle","computeStyleTests","container","cssText","divStyle","pixelPositionVal","reliableMarginLeftVal","roundPixelMeasures","marginLeft","right","pixelBoxStylesVal","boxSizingReliableVal","width","position","scrollboxSizeVal","offsetWidth","measure","round","parseFloat","reliableTrDimensionsVal","backgroundClip","clearCloneStyle","boxSizingReliable","pixelBoxStyles","pixelPosition","reliableMarginLeft","scrollboxSize","reliableTrDimensions","table","trChild","trStyle","height","parseInt","borderTopWidth","borderBottomWidth","offsetHeight","curCSS","computed","minWidth","maxWidth","isCustomProp","getPropertyValue","addGetHookIf","conditionFn","hookFn","cssPrefixes","emptyStyle","vendorProps","vendorPropName","capName","finalPropName","final","cssProps","rdisplayswap","cssShow","visibility","cssNormalTransform","letterSpacing","fontWeight","setPositiveNumber","subtract","max","boxModelAdjustment","dimension","box","isBorderBox","styles","computedVal","extra","delta","marginDelta","ceil","getWidthOrHeight","boxSizingNeeded","valueIsBorderBox","offsetProp","getClientRects","cssHooks","opacity","animationIterationCount","aspectRatio","borderImageSlice","columnCount","flexGrow","flexShrink","gridArea","gridColumn","gridColumnEnd","gridColumnStart","gridRow","gridRowEnd","gridRowStart","lineHeight","order","orphans","widows","zIndex","zoom","fillOpacity","floodOpacity","stopOpacity","strokeMiterlimit","strokeOpacity","origName","setProperty","isFinite","getBoundingClientRect","scrollboxSizeBuggy","left","margin","padding","border","prefix","suffix","expand","expanded","parts","Tween","easing","propHooks","run","percent","eased","duration","pos","step","fx","scrollTop","scrollLeft","linear","p","swing","cos","PI","fxNow","inProgress","rfxtypes","rrun","schedule","hidden","requestAnimationFrame","interval","tick","createFxNow","genFx","includeWidth","createTween","animation","Animation","tweeners","defaultPrefilter","opts","oldfire","propTween","restoreDisplay","isBox","anim","dataShow","unqueued","overflow","overflowX","overflowY","propFilter","specialEasing","properties","stopped","prefilters","currentTime","startTime","tweens","originalProperties","originalOptions","gotoEnd","bind","complete","timer","tweener","prefilter","speed","opt","speeds","fadeTo","to","animate","optall","doAnimation","finish","stopQueue","timers","cssFn","slideDown","slideUp","slideToggle","fadeIn","fadeOut","fadeToggle","slow","fast","delay","time","timeout","clearTimeout","checkOn","optSelected","radioValue","boolHook","removeAttr","nType","attrHooks","attrNames","getter","lowercaseName","rfocusable","rclickable","removeProp","propFix","tabindex","stripAndCollapse","getClass","classesToArray","addClass","classNames","curValue","finalValue","removeClass","toggleClass","stateVal","isValidValue","hasClass","rreturn","valHooks","optionSet","rquery","parseXML","parserErrorElem","DOMParser","parseFromString","rfocusMorph","stopPropagationCallback","onlyHandlers","bubbleType","ontype","lastElement","eventPath","parentWindow","triggerHandler","rbracket","rCRLF","rsubmitterTypes","rsubmittable","buildParams","traditional","param","s","valueOrFunction","encodeURIComponent","serialize","serializeArray","r20","rhash","rantiCache","rheaders","rlocalProtocol","rnoContent","rprotocol","transports","allTypes","originAnchor","addToPrefiltersOrTransports","structure","dataTypeExpression","dataType","dataTypes","inspectPrefiltersOrTransports","jqXHR","inspected","seekingTransport","inspect","prefilterOrFactory","dataTypeOrTransport","ajaxExtend","flatOptions","ajaxSettings","ajaxHandleResponses","responses","ct","finalDataType","firstDataType","mimeType","getResponseHeader","converters","ajaxConvert","response","isSuccess","conv2","current","conv","responseFields","dataFilter","throws","active","lastModified","etag","url","isLocal","protocol","processData","async","contentType","accepts","json","ajaxSetup","settings","ajaxPrefilter","ajaxTransport","ajax","transport","cacheURL","responseHeadersString","responseHeaders","timeoutTimer","urlAnchor","fireGlobals","uncached","callbackContext","globalEventContext","completeDeferred","statusCode","requestHeaders","requestHeadersNames","strAbort","getAllResponseHeaders","setRequestHeader","overrideMimeType","status","abort","statusText","finalText","crossDomain","host","hasContent","ifModified","headers","beforeSend","success","send","nativeStatusText","modified","getJSON","getScript","text script","wrapAll","firstElementChild","wrapInner","htmlIsFunction","unwrap","visible","xhr","XMLHttpRequest","xhrSuccessStatus","xhrSupported","cors","errorCallback","open","username","xhrFields","onload","onerror","onabort","ontimeout","onreadystatechange","responseType","responseText","binary","scriptAttrs","charset","scriptCharset","evt","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","createHTMLDocument","implementation","keepScripts","parsed","params","animated","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","calculatePosition","curElem","using","rect","win","pageYOffset","pageXOffset","offsetParent","parentOffset","scrollTo","Height","Width","defaultExtra","funcName","unbind","delegate","undelegate","hover","fnOver","fnOut","rtrim","proxy","holdReady","hold","parseJSON","isNumeric","isNaN","trim","define","amd","_jQuery","_$","$","noConflict"],"sources":["F:/workspace/202226701027/huinongbao-app/node_modules/jquery/dist/jquery.js"],"sourcesContent":["/*!\n * jQuery JavaScript Library v3.7.1\n * https://jquery.com/\n *\n * Copyright OpenJS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2023-08-28T13:37Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket trac-14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n\t\t// Support: Chrome <=57, Firefox <=52\n\t\t// In some browsers, typeof returns \"function\" for HTML <object> elements\n\t\t// (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n\t\t// We don't want to classify *any* DOM node as a function.\n\t\t// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5\n\t\t// Plus for old WebKit, typeof returns \"function\" for HTML collections\n\t\t// (e.g., `typeof document.getElementsByTagName(\"div\") === \"function\"`). (gh-4756)\n\t\treturn typeof obj === \"function\" && typeof obj.nodeType !== \"number\" &&\n\t\t\ttypeof obj.item !== \"function\";\n\t};\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar version = \"3.7.1\",\n\n\trhtmlSuffix = /HTML$/i,\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\n\t// Retrieve the text value of an array of DOM nodes\n\ttext: function( elem ) {\n\t\tvar node,\n\t\t\tret = \"\",\n\t\t\ti = 0,\n\t\t\tnodeType = elem.nodeType;\n\n\t\tif ( !nodeType ) {\n\n\t\t\t// If no nodeType, this is expected to be an array\n\t\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t\t// Do not traverse comment nodes\n\t\t\t\tret += jQuery.text( node );\n\t\t\t}\n\t\t}\n\t\tif ( nodeType === 1 || nodeType === 11 ) {\n\t\t\treturn elem.textContent;\n\t\t}\n\t\tif ( nodeType === 9 ) {\n\t\t\treturn elem.documentElement.textContent;\n\t\t}\n\t\tif ( nodeType === 3 || nodeType === 4 ) {\n\t\t\treturn elem.nodeValue;\n\t\t}\n\n\t\t// Do not include comment or processing instruction nodes\n\n\t\treturn ret;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\tisXMLDoc: function( elem ) {\n\t\tvar namespace = elem && elem.namespaceURI,\n\t\t\tdocElem = elem && ( elem.ownerDocument || elem ).documentElement;\n\n\t\t// Assume HTML when documentElement doesn't yet exist, such as inside\n\t\t// document fragments.\n\t\treturn !rhtmlSuffix.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\n\tfunction( _i, name ) {\n\t\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n\t} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\n\n\nfunction nodeName( elem, name ) {\n\n\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n}\nvar pop = arr.pop;\n\n\nvar sort = arr.sort;\n\n\nvar splice = arr.splice;\n\n\nvar whitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\";\n\n\nvar rtrimCSS = new RegExp(\n\t\"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\",\n\t\"g\"\n);\n\n\n\n\n// Note: an element does not contain itself\njQuery.contains = function( a, b ) {\n\tvar bup = b && b.parentNode;\n\n\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\n\t\t// Support: IE 9 - 11+\n\t\t// IE doesn't have `contains` on SVG.\n\t\ta.contains ?\n\t\t\ta.contains( bup ) :\n\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t) );\n};\n\n\n\n\n// CSS string/identifier serialization\n// https://drafts.csswg.org/cssom/#common-serializing-idioms\nvar rcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\x80-\\uFFFF\\w-]/g;\n\nfunction fcssescape( ch, asCodePoint ) {\n\tif ( asCodePoint ) {\n\n\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\tif ( ch === \"\\0\" ) {\n\t\t\treturn \"\\uFFFD\";\n\t\t}\n\n\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\treturn ch.slice( 0, -1 ) + \"\\\\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t}\n\n\t// Other potentially-special ASCII characters get backslash-escaped\n\treturn \"\\\\\" + ch;\n}\n\njQuery.escapeSelector = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\n\n\n\nvar preferredDoc = document,\n\tpushNative = push;\n\n( function() {\n\nvar i,\n\tExpr,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\tpush = pushNative,\n\n\t// Local document vars\n\tdocument,\n\tdocumentElement,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\tmatches,\n\n\t// Instance-specific data\n\texpando = jQuery.expando,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|\" +\n\t\t\"loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trleadingCombinator = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" +\n\t\twhitespace + \"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\tID: new RegExp( \"^#(\" + identifier + \")\" ),\n\t\tCLASS: new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\tTAG: new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\tATTR: new RegExp( \"^\" + attributes ),\n\t\tPSEUDO: new RegExp( \"^\" + pseudos ),\n\t\tCHILD: new RegExp(\n\t\t\t\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\tbool: new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\tneedsContext: new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// https://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\tif ( nonHex ) {\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\treturn nonHex;\n\t\t}\n\n\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t// Support: IE <=11+\n\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t// surrogate pair\n\t\treturn high < 0 ?\n\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes; see `setDocument`.\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE/Edge.\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && nodeName( elem, \"fieldset\" );\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android <=4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = {\n\t\tapply: function( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t},\n\t\tcall: function( target ) {\n\t\t\tpushNative.apply( target, slice.call( arguments, 1 ) );\n\t\t}\n\t};\n}\n\nfunction find( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE 9 only\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tpush.call( results, elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE 9 only\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tfind.contains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tpush.call( results, elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && context.getElementsByClassName ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( !nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rleadingCombinator.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when\n\t\t\t\t\t// strict-comparing two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( newContext != context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = jQuery.escapeSelector( nid );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrimCSS, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties\n\t\t// (see https://github.com/jquery/sizzle/issues/157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by jQuery selector module\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\treturn nodeName( elem, \"input\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\treturn ( nodeName( elem, \"input\" ) || nodeName( elem, \"button\" ) ) &&\n\t\t\telem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11+\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a jQuery selector context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [node] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nfunction setDocument( node ) {\n\tvar subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocumentElement = document.documentElement;\n\tdocumentIsHTML = !jQuery.isXMLDoc( document );\n\n\t// Support: iOS 7 only, IE 9 - 11+\n\t// Older browsers didn't support unprefixed `matches`.\n\tmatches = documentElement.matches ||\n\t\tdocumentElement.webkitMatchesSelector ||\n\t\tdocumentElement.msMatchesSelector;\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors\n\t// (see trac-13936).\n\t// Limit the fix to IE & Edge Legacy; despite Edge 15+ implementing `matches`,\n\t// all IE 9+ and Edge Legacy versions implement `msMatchesSelector` as well.\n\tif ( documentElement.msMatchesSelector &&\n\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tpreferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t\tsubWindow.addEventListener( \"unload\", unloadHandler );\n\t}\n\n\t// Support: IE <10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocumentElement.appendChild( el ).id = jQuery.expando;\n\t\treturn !document.getElementsByName ||\n\t\t\t!document.getElementsByName( jQuery.expando ).length;\n\t} );\n\n\t// Support: IE 9 only\n\t// Check to see if it's possible to do matchesSelector\n\t// on a disconnected node.\n\tsupport.disconnectedMatch = assert( function( el ) {\n\t\treturn matches.call( el, \"*\" );\n\t} );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// IE/Edge don't support the :scope pseudo-class.\n\tsupport.scope = assert( function() {\n\t\treturn document.querySelectorAll( \":scope\" );\n\t} );\n\n\t// Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only\n\t// Make sure the `:has()` argument is parsed unforgivingly.\n\t// We include `*` in the test to detect buggy implementations that are\n\t// _selectively_ forgiving (specifically when the list includes at least\n\t// one valid selector).\n\t// Note that we treat complete lack of support for `:has()` as if it were\n\t// spec-compliant support, which is fine because use of `:has()` in such\n\t// environments will fail in the qSA path and fall back to jQuery traversal\n\t// anyway.\n\tsupport.cssHas = assert( function() {\n\t\ttry {\n\t\t\tdocument.querySelector( \":has(*,:jqfake)\" );\n\t\t\treturn false;\n\t\t} catch ( e ) {\n\t\t\treturn true;\n\t\t}\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter.ID = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find.ID = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter.ID = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find.ID = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find.TAG = function( tag, context ) {\n\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t// DocumentFragment nodes don't have gEBTN\n\t\t} else {\n\t\t\treturn context.querySelectorAll( tag );\n\t\t}\n\t};\n\n\t// Class\n\tExpr.find.CLASS = function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\trbuggyQSA = [];\n\n\t// Build QSA regex\n\t// Regex strategy adopted from Diego Perini\n\tassert( function( el ) {\n\n\t\tvar input;\n\n\t\tdocumentElement.appendChild( el ).innerHTML =\n\t\t\t\"<a id='\" + expando + \"' href='' disabled='disabled'></a>\" +\n\t\t\t\"<select id='\" + expando + \"-\\r\\\\' disabled='disabled'>\" +\n\t\t\t\"<option selected=''></option></select>\";\n\n\t\t// Support: iOS <=7 - 8 only\n\t\t// Boolean attributes and \"value\" are not treated correctly in some XML documents\n\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t}\n\n\t\t// Support: iOS <=7 - 8 only\n\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\trbuggyQSA.push( \"~=\" );\n\t\t}\n\n\t\t// Support: iOS 8 only\n\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t}\n\n\t\t// Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n\t\t// In some of the document kinds, these selectors wouldn't work natively.\n\t\t// This is probably OK but for backwards compatibility we want to maintain\n\t\t// handling them through jQuery traversal in jQuery 3.x.\n\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\trbuggyQSA.push( \":checked\" );\n\t\t}\n\n\t\t// Support: Windows 8 Native Apps\n\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\tinput = document.createElement( \"input\" );\n\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t// Support: IE 9 - 11+\n\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t// Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+\n\t\t// In some of the document kinds, these selectors wouldn't work natively.\n\t\t// This is probably OK but for backwards compatibility we want to maintain\n\t\t// handling them through jQuery traversal in jQuery 3.x.\n\t\tdocumentElement.appendChild( el ).disabled = true;\n\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t}\n\n\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t// Adding a temporary attribute to the document before the selection works\n\t\t// around the issue.\n\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\tinput = document.createElement( \"input\" );\n\t\tinput.setAttribute( \"name\", \"\" );\n\t\tel.appendChild( input );\n\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t}\n\t} );\n\n\tif ( !support.cssHas ) {\n\n\t\t// Support: Chrome 105 - 110+, Safari 15.4 - 16.3+\n\t\t// Our regular `try-catch` mechanism fails to detect natively-unsupported\n\t\t// pseudo-classes inside `:has()` (such as `:has(:contains(\"Foo\"))`)\n\t\t// in browsers that parse the `:has()` argument as a forgiving selector list.\n\t\t// https://drafts.csswg.org/selectors/#relational now requires the argument\n\t\t// to be parsed unforgivingly, but browsers have not yet fully adjusted.\n\t\trbuggyQSA.push( \":has\" );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = function( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a === document || a.ownerDocument == preferredDoc &&\n\t\t\t\tfind.contains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b === document || b.ownerDocument == preferredDoc &&\n\t\t\t\tfind.contains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t};\n\n\treturn document;\n}\n\nfind.matches = function( expr, elements ) {\n\treturn find( expr, null, null, elements );\n};\n\nfind.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn find( expr, document, null, [ elem ] ).length > 0;\n};\n\nfind.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn jQuery.contains( context, elem );\n};\n\n\nfind.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (see trac-13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\tif ( val !== undefined ) {\n\t\treturn val;\n\t}\n\n\treturn elem.getAttribute( name );\n};\n\nfind.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\njQuery.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\t//\n\t// Support: Android <=4.0+\n\t// Testing for detecting duplicates is unpredictable so instead assume we can't\n\t// depend on duplicate detection in all browsers without a stable sort.\n\thasDuplicate = !support.sortStable;\n\tsortInput = !support.sortStable && slice.call( results, 0 );\n\tsort.call( results, sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tsplice.call( results, duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\njQuery.fn.uniqueSort = function() {\n\treturn this.pushStack( jQuery.uniqueSort( slice.apply( this ) ) );\n};\n\nExpr = jQuery.expr = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\tATTR: function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] || match[ 5 ] || \"\" )\n\t\t\t\t.replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\tCHILD: function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tfind.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" )\n\t\t\t\t);\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tfind.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\tPSEUDO: function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr.CHILD.test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\tTAG: function( nodeNameSelector ) {\n\t\t\tvar expectedNodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn nodeName( elem, expectedNodeName );\n\t\t\t\t};\n\t\t},\n\n\t\tCLASS: function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace + \")\" + className +\n\t\t\t\t\t\"(\" + whitespace + \"|$)\" ) ) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\tATTR: function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = find.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\tif ( operator === \"=\" ) {\n\t\t\t\t\treturn result === check;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"!=\" ) {\n\t\t\t\t\treturn result !== check;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"^=\" ) {\n\t\t\t\t\treturn check && result.indexOf( check ) === 0;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"*=\" ) {\n\t\t\t\t\treturn check && result.indexOf( check ) > -1;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"$=\" ) {\n\t\t\t\t\treturn check && result.slice( -check.length ) === check;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"~=\" ) {\n\t\t\t\t\treturn ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" )\n\t\t\t\t\t\t.indexOf( check ) > -1;\n\t\t\t\t}\n\t\t\t\tif ( operator === \"|=\" ) {\n\t\t\t\t\treturn result === check || result.slice( 0, check.length + 1 ) === check + \"-\";\n\t\t\t\t}\n\n\t\t\t\treturn false;\n\t\t\t};\n\t\t},\n\n\t\tCHILD: function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnodeName( node, name ) :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || ( parent[ expando ] = {} );\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\t\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnodeName( node, name ) :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\t\t\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\tPSEUDO: function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// https://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tfind.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as jQuery does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf.call( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\tnot: markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrimCSS, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element\n\t\t\t\t\t// (see https://github.com/jquery/sizzle/issues/299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\thas: markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn find( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\tcontains: markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || jQuery.text( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// https://www.w3.org/TR/selectors/#lang-pseudo\n\t\tlang: markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tfind.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\ttarget: function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\troot: function( elem ) {\n\t\t\treturn elem === documentElement;\n\t\t},\n\n\t\tfocus: function( elem ) {\n\t\t\treturn elem === safeActiveElement() &&\n\t\t\t\tdocument.hasFocus() &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\tenabled: createDisabledPseudo( false ),\n\t\tdisabled: createDisabledPseudo( true ),\n\n\t\tchecked: function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// https://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\treturn ( nodeName( elem, \"input\" ) && !!elem.checked ) ||\n\t\t\t\t( nodeName( elem, \"option\" ) && !!elem.selected );\n\t\t},\n\n\t\tselected: function( elem ) {\n\n\t\t\t// Support: IE <=11+\n\t\t\t// Accessing the selectedIndex property\n\t\t\t// forces the browser to treat the default option as\n\t\t\t// selected when in an optgroup.\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\tempty: function( elem ) {\n\n\t\t\t// https://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t// but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\tparent: function( elem ) {\n\t\t\treturn !Expr.pseudos.empty( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\theader: function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\tinput: function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\tbutton: function( elem ) {\n\t\t\treturn nodeName( elem, \"input\" ) && elem.type === \"button\" ||\n\t\t\t\tnodeName( elem, \"button\" );\n\t\t},\n\n\t\ttext: function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn nodeName( elem, \"input\" ) && elem.type === \"text\" &&\n\n\t\t\t\t// Support: IE <10 only\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear\n\t\t\t\t// with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\tfirst: createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\tlast: createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\teq: createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\teven: createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\todd: createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\tlt: createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i;\n\n\t\t\tif ( argument < 0 ) {\n\t\t\t\ti = argument + length;\n\t\t\t} else if ( argument > length ) {\n\t\t\t\ti = length;\n\t\t\t} else {\n\t\t\t\ti = argument;\n\t\t\t}\n\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\tgt: createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos.nth = Expr.pseudos.eq;\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\nfunction tokenize( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rleadingCombinator.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrimCSS, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\tif ( parseOnly ) {\n\t\treturn soFar.length;\n\t}\n\n\treturn soFar ?\n\t\tfind.error( selector ) :\n\n\t\t// Cache the tokens\n\t\ttokenCache( selector, groups ).slice( 0 );\n}\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\tif ( skip && nodeName( elem, skip ) ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = outerCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tfind( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem, matcherOut,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed ||\n\t\t\t\tmultipleContexts( selector || \"*\",\n\t\t\t\t\tcontext.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems;\n\n\t\tif ( matcher ) {\n\n\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter\n\t\t\t// or preexisting results,\n\t\t\tmatcherOut = postFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t[] :\n\n\t\t\t\t// ...otherwise use results directly\n\t\t\t\tresults;\n\n\t\t\t// Find primary matches\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t} else {\n\t\t\tmatcherOut = matcherIn;\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf.call( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf.call( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tvar ret = ( !leadingRelative && ( xml || context != outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element\n\t\t\t// (see https://github.com/jquery/sizzle/issues/299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 )\n\t\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrimCSS, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find.TAG( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: iOS <=7 - 9 only\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching\n\t\t\t// elements by id. (see trac-14142)\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tpush.call( results, elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tjQuery.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\nfunction compile( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n}\n\n/**\n * A low-level selection function that works with jQuery's compiled\n * selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n * selector function built with jQuery selector compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nfunction select( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find.ID(\n\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\tcontext\n\t\t\t) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr.needsContext.test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) &&\n\t\t\t\t\t\ttestContext( context.parentNode ) || context\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n}\n\n// One-time assignments\n\n// Support: Android <=4.0 - 4.1+\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Android <=4.0 - 4.1+\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\njQuery.find = find;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.unique = jQuery.uniqueSort;\n\n// These have always been private, but they used to be documented as part of\n// Sizzle so let's maintain them for now for backwards compatibility purposes.\nfind.compile = compile;\nfind.select = select;\nfind.setDocument = setDocument;\nfind.tokenize = tokenize;\n\nfind.escape = jQuery.escapeSelector;\nfind.getText = jQuery.text;\nfind.isXML = jQuery.isXMLDoc;\nfind.selectors = jQuery.expr;\nfind.support = jQuery.support;\nfind.uniqueSort = jQuery.uniqueSort;\n\n\t/* eslint-enable */\n\n} )();\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (trac-9521)\n\t// Strict HTML recognition (trac-11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to jQuery#find\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.error );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the error, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getErrorHook ) {\n\t\t\t\t\t\t\t\t\tprocess.error = jQuery.Deferred.getErrorHook();\n\n\t\t\t\t\t\t\t\t// The deprecated alias of the above. While the name suggests\n\t\t\t\t\t\t\t\t// returning the stack, not an error instance, jQuery just passes\n\t\t\t\t\t\t\t\t// it directly to `console.warn` so both will work; an instance\n\t\t\t\t\t\t\t\t// just better cooperates with source maps.\n\t\t\t\t\t\t\t\t} else if ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.error = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the primary Deferred\n\t\t\tprimary = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tprimary.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( primary.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn primary.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), primary.reject );\n\t\t}\n\n\t\treturn primary.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\n// If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error\n// captured before the async barrier to get the original error cause\n// which may otherwise be hidden.\njQuery.Deferred.exceptionHook = function( error, asyncError ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message,\n\t\t\terror.stack, asyncError );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See trac-6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\t\tvalue :\n\t\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (trac-9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t// - Node\n\t// - Node.ELEMENT_NODE\n\t// - Node.DOCUMENT_NODE\n\t// - Object\n\t// - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see trac-8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t// 1. No key was specified\n\t\t// 2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t// 1. The entire cache object\n\t\t// 2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t// 1. An object of properties\n\t\t// 2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (trac-14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (trac-11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (trac-14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (trac-13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (trac-15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (trac-12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (trac-13208)\n\t\t\t\t// Don't process clicks on disabled elements (trac-6911, trac-8165, trac-11382, trac-11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (trac-13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", true );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, isSetup ) {\n\n\t// Missing `isSetup` indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !isSetup ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\tif ( !saved ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tdataPriv.set( this, type, false );\n\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\t\treturn result;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering\n\t\t\t\t// the native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, jQuery.event.trigger(\n\t\t\t\t\tsaved[ 0 ],\n\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\tthis\n\t\t\t\t) );\n\n\t\t\t\t// Abort handling of the native event by all jQuery handlers while allowing\n\t\t\t\t// native handlers on the same element to run. On target, this is achieved\n\t\t\t\t// by stopping immediate propagation just on the jQuery event. However,\n\t\t\t\t// the native event is re-wrapped by a jQuery one on each level of the\n\t\t\t\t// propagation so the only way to stop it for jQuery is to stop it for\n\t\t\t\t// everyone via native `stopPropagation()`. This is not a problem for\n\t\t\t\t// focus/blur which don't bubble, but it does also stop click on checkboxes\n\t\t\t\t// and radios. We accept this limitation.\n\t\t\t\tevent.stopPropagation();\n\t\t\t\tevent.isImmediatePropagationStopped = returnTrue;\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (trac-504, trac-13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\twhich: true\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\n\tfunction focusMappedHandler( nativeEvent ) {\n\t\tif ( document.documentMode ) {\n\n\t\t\t// Support: IE 11+\n\t\t\t// Attach a single focusin/focusout handler on the document while someone wants\n\t\t\t// focus/blur. This is because the former are synchronous in IE while the latter\n\t\t\t// are async. In other browsers, all those handlers are invoked synchronously.\n\n\t\t\t// `handle` from private data would already wrap the event, but we need\n\t\t\t// to change the `type` here.\n\t\t\tvar handle = dataPriv.get( this, \"handle\" ),\n\t\t\t\tevent = jQuery.event.fix( nativeEvent );\n\t\t\tevent.type = nativeEvent.type === \"focusin\" ? \"focus\" : \"blur\";\n\t\t\tevent.isSimulated = true;\n\n\t\t\t// First, handle focusin/focusout\n\t\t\thandle( nativeEvent );\n\n\t\t\t// ...then, handle focus/blur\n\t\t\t//\n\t\t\t// focus/blur don't bubble while focusin/focusout do; simulate the former by only\n\t\t\t// invoking the handler at the lower level.\n\t\t\tif ( event.target === event.currentTarget ) {\n\n\t\t\t\t// The setup part calls `leverageNative`, which, in turn, calls\n\t\t\t\t// `jQuery.event.add`, so event handle will already have been set\n\t\t\t\t// by this point.\n\t\t\t\thandle( event );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// For non-IE browsers, attach a single capturing handler on the document\n\t\t\t// while someone wants focusin/focusout.\n\t\t\tjQuery.event.simulate( delegateType, nativeEvent.target,\n\t\t\t\tjQuery.event.fix( nativeEvent ) );\n\t\t}\n\t}\n\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\tvar attaches;\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, true );\n\n\t\t\tif ( document.documentMode ) {\n\n\t\t\t\t// Support: IE 9 - 11+\n\t\t\t\t// We use the same native handler for focusin & focus (and focusout & blur)\n\t\t\t\t// so we need to coordinate setup & teardown parts between those events.\n\t\t\t\t// Use `delegateType` as the key as `type` is already used by `leverageNative`.\n\t\t\t\tattaches = dataPriv.get( this, delegateType );\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tthis.addEventListener( delegateType, focusMappedHandler );\n\t\t\t\t}\n\t\t\t\tdataPriv.set( this, delegateType, ( attaches || 0 ) + 1 );\n\t\t\t} else {\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tvar attaches;\n\n\t\t\tif ( document.documentMode ) {\n\t\t\t\tattaches = dataPriv.get( this, delegateType ) - 1;\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tthis.removeEventListener( delegateType, focusMappedHandler );\n\t\t\t\t\tdataPriv.remove( this, delegateType );\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.set( this, delegateType, attaches );\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Return false to indicate standard teardown should be applied\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\n\t\t// Suppress native focus or blur if we're currently inside\n\t\t// a leveraged native-event stack\n\t\t_default: function( event ) {\n\t\t\treturn dataPriv.get( event.target, type );\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n\n\t// Support: Firefox <=44\n\t// Firefox doesn't have focus(in | out) events\n\t// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n\t//\n\t// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n\t// focus(in | out) events fire after focus & blur events,\n\t// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n\t// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\n\t//\n\t// Support: IE 9 - 11+\n\t// To preserve relative focusin/focus & focusout/blur event order guaranteed on the 3.x branch,\n\t// attach a single handler for both events in IE.\n\tjQuery.event.special[ delegateType ] = {\n\t\tsetup: function() {\n\n\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\tdataHolder = document.documentMode ? this : doc,\n\t\t\t\tattaches = dataPriv.get( dataHolder, delegateType );\n\n\t\t\t// Support: IE 9 - 11+\n\t\t\t// We use the same native handler for focusin & focus (and focusout & blur)\n\t\t\t// so we need to coordinate setup & teardown parts between those events.\n\t\t\t// Use `delegateType` as the key as `type` is already used by `leverageNative`.\n\t\t\tif ( !attaches ) {\n\t\t\t\tif ( document.documentMode ) {\n\t\t\t\t\tthis.addEventListener( delegateType, focusMappedHandler );\n\t\t\t\t} else {\n\t\t\t\t\tdoc.addEventListener( type, focusMappedHandler, true );\n\t\t\t\t}\n\t\t\t}\n\t\t\tdataPriv.set( dataHolder, delegateType, ( attaches || 0 ) + 1 );\n\t\t},\n\t\tteardown: function() {\n\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\tdataHolder = document.documentMode ? this : doc,\n\t\t\t\tattaches = dataPriv.get( dataHolder, delegateType ) - 1;\n\n\t\t\tif ( !attaches ) {\n\t\t\t\tif ( document.documentMode ) {\n\t\t\t\t\tthis.removeEventListener( delegateType, focusMappedHandler );\n\t\t\t\t} else {\n\t\t\t\t\tdoc.removeEventListener( type, focusMappedHandler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( dataHolder, delegateType );\n\t\t\t} else {\n\t\t\t\tdataPriv.set( dataHolder, delegateType, attaches );\n\t\t\t}\n\t\t}\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event ) dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\n\trcleanScript = /^\\s*<!\\[CDATA\\[|\\]\\]>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (trac-8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Re-enable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase() !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Unwrap a CDATA section containing script contents. This shouldn't be\n\t\t\t\t\t\t\t// needed as in XML documents they're already not visible when\n\t\t\t\t\t\t\t// inspecting element contents and in HTML documents they have no\n\t\t\t\t\t\t\t// meaning but we're preserving that logic for backwards compatibility.\n\t\t\t\t\t\t\t// This will be removed completely in 4.0. See gh-4904.\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew jQuery#find here for performance reasons:\n\t\t\t// https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar rcustomProp = /^--/;\n\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (trac-15098, trac-14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (trac-8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\t//\n\t\t// Support: Firefox 70+\n\t\t// Only Firefox includes border widths\n\t\t// in computed dimensions. (gh-4529)\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px;border-collapse:separate\";\n\t\t\t\ttr.style.cssText = \"box-sizing:content-box;border:1px solid\";\n\n\t\t\t\t// Support: Chrome 86+\n\t\t\t\t// Height set through cssText does not get applied.\n\t\t\t\t// Computed height then comes back as 0.\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\t// Support: Android 8 Chrome 86+\n\t\t\t\t// In our bodyBackground.html iframe,\n\t\t\t\t// display for all div elements is set to \"inline\",\n\t\t\t\t// which causes a problem only in Android 8 Chrome 86.\n\t\t\t\t// Ensuring the div is `display: block`\n\t\t\t\t// gets around this issue.\n\t\t\t\ttrChild.style.display = \"block\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderTopWidth, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\t\tisCustomProp = rcustomProp.test( name ),\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t// .css('filter') (IE 9 only, trac-12537)\n\t// .css('--customProperty) (gh-3144)\n\tif ( computed ) {\n\n\t\t// Support: IE <=9 - 11+\n\t\t// IE only supports `\"float\"` in `getPropertyValue`; in computed styles\n\t\t// it's only available as `\"cssFloat\"`. We no longer modify properties\n\t\t// sent to `.css()` apart from camelCasing, so we need to check both.\n\t\t// Normally, this would create difference in behavior: if\n\t\t// `getPropertyValue` returns an empty string, the value returned\n\t\t// by `.css()` would be `undefined`. This is usually the case for\n\t\t// disconnected elements. However, in IE even disconnected elements\n\t\t// with no styles return `\"none\"` for `getPropertyValue( \"float\" )`\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( isCustomProp && ret ) {\n\n\t\t\t// Support: Firefox 105+, Chrome <=105+\n\t\t\t// Spec requires trimming whitespace for custom properties (gh-4926).\n\t\t\t// Firefox only trims leading whitespace. Chrome just collapses\n\t\t\t// both leading & trailing whitespace to a single space.\n\t\t\t//\n\t\t\t// Fall back to `undefined` if empty string returned.\n\t\t\t// This collapses a missing definition with property defined\n\t\t\t// and set to an empty string but there's no standard API\n\t\t\t// allowing us to differentiate them without a performance penalty\n\t\t\t// and returning `undefined` aligns with older jQuery.\n\t\t\t//\n\t\t\t// rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED\n\t\t\t// as whitespace while CSS does not, but this is not a problem\n\t\t\t// because CSS preprocessing replaces them with U+000A LINE FEED\n\t\t\t// (which *is* CSS whitespace)\n\t\t\t// https://www.w3.org/TR/css-syntax-3/#input-preprocessing\n\t\t\tret = ret.replace( rtrimCSS, \"$1\" ) || undefined;\n\t\t}\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0,\n\t\tmarginDelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\t// Count margin delta separately to only add it after scroll gutter adjustment.\n\t\t// This is needed to make negative margins work with `outerHeight( true )` (gh-3982).\n\t\tif ( box === \"margin\" ) {\n\t\t\tmarginDelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta + marginDelta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\tanimationIterationCount: true,\n\t\taspectRatio: true,\n\t\tborderImageSlice: true,\n\t\tcolumnCount: true,\n\t\tflexGrow: true,\n\t\tflexShrink: true,\n\t\tfontWeight: true,\n\t\tgridArea: true,\n\t\tgridColumn: true,\n\t\tgridColumnEnd: true,\n\t\tgridColumnStart: true,\n\t\tgridRow: true,\n\t\tgridRowEnd: true,\n\t\tgridRowStart: true,\n\t\tlineHeight: true,\n\t\topacity: true,\n\t\torder: true,\n\t\torphans: true,\n\t\tscale: true,\n\t\twidows: true,\n\t\tzIndex: true,\n\t\tzoom: true,\n\n\t\t// SVG-related\n\t\tfillOpacity: true,\n\t\tfloodOpacity: true,\n\t\tstopOpacity: true,\n\t\tstrokeMiterlimit: true,\n\t\tstrokeOpacity: true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (trac-7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug trac-9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (trac-7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t} ) :\n\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (trac-12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\n\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// Use proper attribute retrieval (trac-12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classNames, cur, curValue, className, i, finalValue;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclassNames = classesToArray( value );\n\n\t\tif ( classNames.length ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tcurValue = getClass( this );\n\t\t\t\tcur = this.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tfor ( i = 0; i < classNames.length; i++ ) {\n\t\t\t\t\t\tclassName = classNames[ i ];\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + className + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += className + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\tthis.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classNames, cur, curValue, className, i, finalValue;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclassNames = classesToArray( value );\n\n\t\tif ( classNames.length ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tcurValue = getClass( this );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = this.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tfor ( i = 0; i < classNames.length; i++ ) {\n\t\t\t\t\t\tclassName = classNames[ i ];\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + className + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + className + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\tthis.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar classNames, className, i, self,\n\t\t\ttype = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tclassNames = classesToArray( value );\n\n\t\treturn this.each( function() {\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\tself = jQuery( this );\n\n\t\t\t\tfor ( i = 0; i < classNames.length; i++ ) {\n\t\t\t\t\tclassName = classNames[ i ];\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (trac-14686, trac-14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (trac-2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, parserErrorElem;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {}\n\n\tparserErrorElem = xml && xml.getElementsByTagName( \"parsererror\" )[ 0 ];\n\tif ( !xml || parserErrorElem ) {\n\t\tjQuery.error( \"Invalid XML: \" + (\n\t\t\tparserErrorElem ?\n\t\t\t\tjQuery.map( parserErrorElem.childNodes, function( el ) {\n\t\t\t\t\treturn el.textContent;\n\t\t\t\t} ).join( \"\\n\" ) :\n\t\t\t\tdata\n\t\t) );\n\t}\n\treturn xml;\n};\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (trac-9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (trac-9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || Object.create( null ) )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (trac-6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} ).filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} ).map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// trac-7653, trac-8125, trac-8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t * - BEFORE asking for a transport\n\t * - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\noriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes trac-9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (trac-10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket trac-12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (trac-15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// trac-9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script but not if jsonp\n\t\t\tif ( !isSuccess &&\n\t\t\t\tjQuery.inArray( \"script\", s.dataTypes ) > -1 &&\n\t\t\t\tjQuery.inArray( \"json\", s.dataTypes ) < 0 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (trac-11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// trac-1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see trac-8605, trac-14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\" ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// trac-14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t// documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( {\n\t\tpadding: \"inner\" + name,\n\t\tcontent: type,\n\t\t\"\": \"outer\" + name\n\t}, function( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this\n\t\t\t.on( \"mouseenter\", fnOver )\n\t\t\t.on( \"mouseleave\", fnOut || fnOver );\n\t}\n} );\n\njQuery.each(\n\t( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t}\n);\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\n// Require that the \"whitespace run\" starts from a non-whitespace\n// to avoid O(N^2) behavior when the engine would try matching \"\\s+$\" at each space position.\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|([^\\s\\uFEFF\\xA0])[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"$1\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (trac-7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (trac-13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"script","externalDependencies":[]}
|