package-build-stats 7.3.8 → 8.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/.parcelrc +37 -0
  2. package/build/common.types.d.ts +3 -8
  3. package/build/common.types.d.ts.map +1 -0
  4. package/build/common.types.js +1 -0
  5. package/build/common.types.js.map +1 -0
  6. package/build/config/{config.d.ts → index.d.ts} +2 -0
  7. package/build/config/index.d.ts.map +1 -0
  8. package/build/config/{config.js → index.js} +2 -0
  9. package/build/config/index.js.map +1 -0
  10. package/build/errors/CustomError.d.ts +1 -0
  11. package/build/errors/CustomError.d.ts.map +1 -0
  12. package/build/errors/CustomError.js +1 -0
  13. package/build/errors/CustomError.js.map +1 -0
  14. package/build/fixed/fixed/parseReference.js +5388 -0
  15. package/build/fixed/parseReference.js +762 -727
  16. package/build/getPackageExportSizes.d.ts +5 -29
  17. package/build/getPackageExportSizes.d.ts.map +1 -0
  18. package/build/getPackageExportSizes.js +18 -10
  19. package/build/getPackageExportSizes.js.map +1 -0
  20. package/build/getPackageStats.d.ts +13 -54
  21. package/build/getPackageStats.d.ts.map +1 -0
  22. package/build/getPackageStats.js +30 -7
  23. package/build/getPackageStats.js.map +1 -0
  24. package/build/getParseTime.d.ts +1 -0
  25. package/build/getParseTime.d.ts.map +1 -0
  26. package/build/getParseTime.js +5 -4
  27. package/build/getParseTime.js.map +1 -0
  28. package/build/index.d.ts +1 -0
  29. package/build/index.d.ts.map +1 -0
  30. package/build/index.js +1 -0
  31. package/build/index.js.map +1 -0
  32. package/build/utils/build.utils.d.ts +39 -69
  33. package/build/utils/build.utils.d.ts.map +1 -0
  34. package/build/utils/build.utils.js +177 -159
  35. package/build/utils/build.utils.js.map +1 -0
  36. package/build/utils/common.utils.d.ts +22 -0
  37. package/build/utils/common.utils.d.ts.map +1 -0
  38. package/build/utils/common.utils.js +94 -1
  39. package/build/utils/common.utils.js.map +1 -0
  40. package/build/utils/exports.utils.d.ts +1 -0
  41. package/build/utils/exports.utils.d.ts.map +1 -0
  42. package/build/utils/exports.utils.js +35 -23
  43. package/build/utils/exports.utils.js.map +1 -0
  44. package/build/utils/installation.utils.d.ts +1 -0
  45. package/build/utils/installation.utils.d.ts.map +1 -0
  46. package/build/utils/installation.utils.js +25 -7
  47. package/build/utils/installation.utils.js.map +1 -0
  48. package/build/utils/telemetry.utils.d.ts +1 -2
  49. package/build/utils/telemetry.utils.d.ts.map +1 -0
  50. package/build/utils/telemetry.utils.js +7 -20
  51. package/build/utils/telemetry.utils.js.map +1 -0
  52. package/package.json +75 -73
  53. package/src/common.types.ts +3 -10
  54. package/src/config/{config.ts → index.ts} +1 -0
  55. package/src/errors/CustomError.d.ts +42 -0
  56. package/src/errors/CustomError.js +81 -0
  57. package/src/errors/CustomError.js.map +1 -0
  58. package/src/fixed/parseReference.js +762 -727
  59. package/src/getPackageExportSizes.ts +33 -14
  60. package/src/getPackageStats.ts +55 -16
  61. package/src/typings/is-valid-npm-name.d.ts +3 -0
  62. package/src/utils/build.utils.ts +258 -230
  63. package/src/utils/common.utils.ts +138 -0
  64. package/src/utils/exports.utils.ts +34 -21
  65. package/src/utils/installation.utils.ts +28 -5
  66. package/src/utils/telemetry.utils.ts +0 -21
  67. package/LICENSE +0 -21
  68. package/README.md +0 -67
  69. package/build/config/makeWebpackConfig.d.ts +0 -11
  70. package/build/config/makeWebpackConfig.js +0 -225
  71. package/build/getDependencySizeTree.d.ts +0 -6
  72. package/build/getDependencySizeTree.js +0 -238
  73. package/src/config/makeWebpackConfig.ts +0 -251
  74. package/src/getDependencySizeTree.ts +0 -266
@@ -41,82 +41,88 @@
41
41
  v = function (a, b) {
42
42
  return b.toUpperCase()
43
43
  }
44
- ;(r.fn = r.prototype = {
45
- jquery: q,
46
- constructor: r,
47
- length: 0,
48
- toArray: function () {
49
- return f.call(this)
50
- },
51
- get: function (a) {
52
- return null == a ? f.call(this) : a < 0 ? this[a + this.length] : this[a]
53
- },
54
- pushStack: function (a) {
55
- var b = r.merge(this.constructor(), a)
56
- return (b.prevObject = this), b
57
- },
58
- each: function (a) {
59
- return r.each(this, a)
60
- },
61
- map: function (a) {
62
- return this.pushStack(
63
- r.map(this, function (b, c) {
64
- return a.call(b, c, b)
65
- })
66
- )
67
- },
68
- slice: function () {
69
- return this.pushStack(f.apply(this, arguments))
70
- },
71
- first: function () {
72
- return this.eq(0)
73
- },
74
- last: function () {
75
- return this.eq(-1)
76
- },
77
- eq: function (a) {
78
- var b = this.length,
79
- c = +a + (a < 0 ? b : 0)
80
- return this.pushStack(c >= 0 && c < b ? [this[c]] : [])
81
- },
82
- end: function () {
83
- return this.prevObject || this.constructor()
84
- },
85
- push: h,
86
- sort: c.sort,
87
- splice: c.splice,
88
- }),
89
- (r.extend = r.fn.extend = function () {
90
- var a,
91
- b,
92
- c,
93
- d,
94
- e,
95
- f,
96
- g = arguments[0] || {},
97
- h = 1,
98
- i = arguments.length,
99
- j = !1
100
- for (
101
- 'boolean' == typeof g && ((j = g), (g = arguments[h] || {}), h++),
102
- 'object' == typeof g || r.isFunction(g) || (g = {}),
103
- h === i && ((g = this), h--);
104
- h < i;
105
- h++
106
- )
107
- if (null != (a = arguments[h]))
108
- for (b in a)
109
- (c = g[b]),
110
- (d = a[b]),
111
- g !== d &&
112
- (j && d && (r.isPlainObject(d) || (e = Array.isArray(d)))
113
- ? (e
114
- ? ((e = !1), (f = c && Array.isArray(c) ? c : []))
115
- : (f = c && r.isPlainObject(c) ? c : {}),
116
- (g[b] = r.extend(j, f, d)))
117
- : void 0 !== d && (g[b] = d))
118
- return g
44
+ ;(r.fn = r.prototype =
45
+ {
46
+ jquery: q,
47
+ constructor: r,
48
+ length: 0,
49
+ toArray: function () {
50
+ return f.call(this)
51
+ },
52
+ get: function (a) {
53
+ return null == a
54
+ ? f.call(this)
55
+ : a < 0
56
+ ? this[a + this.length]
57
+ : this[a]
58
+ },
59
+ pushStack: function (a) {
60
+ var b = r.merge(this.constructor(), a)
61
+ return (b.prevObject = this), b
62
+ },
63
+ each: function (a) {
64
+ return r.each(this, a)
65
+ },
66
+ map: function (a) {
67
+ return this.pushStack(
68
+ r.map(this, function (b, c) {
69
+ return a.call(b, c, b)
70
+ })
71
+ )
72
+ },
73
+ slice: function () {
74
+ return this.pushStack(f.apply(this, arguments))
75
+ },
76
+ first: function () {
77
+ return this.eq(0)
78
+ },
79
+ last: function () {
80
+ return this.eq(-1)
81
+ },
82
+ eq: function (a) {
83
+ var b = this.length,
84
+ c = +a + (a < 0 ? b : 0)
85
+ return this.pushStack(c >= 0 && c < b ? [this[c]] : [])
86
+ },
87
+ end: function () {
88
+ return this.prevObject || this.constructor()
89
+ },
90
+ push: h,
91
+ sort: c.sort,
92
+ splice: c.splice,
119
93
  }),
94
+ (r.extend = r.fn.extend =
95
+ function () {
96
+ var a,
97
+ b,
98
+ c,
99
+ d,
100
+ e,
101
+ f,
102
+ g = arguments[0] || {},
103
+ h = 1,
104
+ i = arguments.length,
105
+ j = !1
106
+ for (
107
+ 'boolean' == typeof g && ((j = g), (g = arguments[h] || {}), h++),
108
+ 'object' == typeof g || r.isFunction(g) || (g = {}),
109
+ h === i && ((g = this), h--);
110
+ h < i;
111
+ h++
112
+ )
113
+ if (null != (a = arguments[h]))
114
+ for (b in a)
115
+ (c = g[b]),
116
+ (d = a[b]),
117
+ g !== d &&
118
+ (j && d && (r.isPlainObject(d) || (e = Array.isArray(d)))
119
+ ? (e
120
+ ? ((e = !1), (f = c && Array.isArray(c) ? c : []))
121
+ : (f = c && r.isPlainObject(c) ? c : {}),
122
+ (g[b] = r.extend(j, f, d)))
123
+ : void 0 !== d && (g[b] = d))
124
+ return g
125
+ }),
120
126
  r.extend({
121
127
  expando: 'jQuery' + (q + Math.random()).replace(/\D/g, ''),
122
128
  isReady: !0,
@@ -534,239 +540,244 @@
534
540
  return a && 'undefined' != typeof a.getElementsByTagName && a
535
541
  }
536
542
  ;(c = ga.support = {}),
537
- (f = ga.isXML = function (a) {
538
- var b = a && (a.ownerDocument || a).documentElement
539
- return !!b && 'HTML' !== b.nodeName
540
- }),
541
- (m = ga.setDocument = function (a) {
542
- var b,
543
- e,
544
- g = a ? a.ownerDocument || a : v
545
- return g !== n && 9 === g.nodeType && g.documentElement
546
- ? ((n = g),
547
- (o = n.documentElement),
548
- (p = !f(n)),
549
- v !== n &&
550
- (e = n.defaultView) &&
551
- e.top !== e &&
552
- (e.addEventListener
553
- ? e.addEventListener('unload', da, !1)
554
- : e.attachEvent && e.attachEvent('onunload', da)),
555
- (c.attributes = ja(function (a) {
556
- return (a.className = 'i'), !a.getAttribute('className')
557
- })),
558
- (c.getElementsByTagName = ja(function (a) {
559
- return (
560
- a.appendChild(n.createComment('')),
561
- !a.getElementsByTagName('*').length
562
- )
563
- })),
564
- (c.getElementsByClassName = Y.test(n.getElementsByClassName)),
565
- (c.getById = ja(function (a) {
566
- return (
567
- (o.appendChild(a).id = u),
568
- !n.getElementsByName || !n.getElementsByName(u).length
569
- )
570
- })),
571
- c.getById
572
- ? ((d.filter.ID = function (a) {
573
- var b = a.replace(_, aa)
574
- return function (a) {
575
- return a.getAttribute('id') === b
576
- }
577
- }),
578
- (d.find.ID = function (a, b) {
579
- if ('undefined' != typeof b.getElementById && p) {
580
- var c = b.getElementById(a)
581
- return c ? [c] : []
582
- }
583
- }))
584
- : ((d.filter.ID = function (a) {
585
- var b = a.replace(_, aa)
586
- return function (a) {
587
- var c =
588
- 'undefined' != typeof a.getAttributeNode &&
589
- a.getAttributeNode('id')
590
- return c && c.value === b
591
- }
592
- }),
593
- (d.find.ID = function (a, b) {
594
- if ('undefined' != typeof b.getElementById && p) {
595
- var c,
596
- d,
597
- e,
598
- f = b.getElementById(a)
599
- if (f) {
600
- if (((c = f.getAttributeNode('id')), c && c.value === a))
601
- return [f]
602
- ;(e = b.getElementsByName(a)), (d = 0)
603
- while ((f = e[d++]))
543
+ (f = ga.isXML =
544
+ function (a) {
545
+ var b = a && (a.ownerDocument || a).documentElement
546
+ return !!b && 'HTML' !== b.nodeName
547
+ }),
548
+ (m = ga.setDocument =
549
+ function (a) {
550
+ var b,
551
+ e,
552
+ g = a ? a.ownerDocument || a : v
553
+ return g !== n && 9 === g.nodeType && g.documentElement
554
+ ? ((n = g),
555
+ (o = n.documentElement),
556
+ (p = !f(n)),
557
+ v !== n &&
558
+ (e = n.defaultView) &&
559
+ e.top !== e &&
560
+ (e.addEventListener
561
+ ? e.addEventListener('unload', da, !1)
562
+ : e.attachEvent && e.attachEvent('onunload', da)),
563
+ (c.attributes = ja(function (a) {
564
+ return (a.className = 'i'), !a.getAttribute('className')
565
+ })),
566
+ (c.getElementsByTagName = ja(function (a) {
567
+ return (
568
+ a.appendChild(n.createComment('')),
569
+ !a.getElementsByTagName('*').length
570
+ )
571
+ })),
572
+ (c.getElementsByClassName = Y.test(n.getElementsByClassName)),
573
+ (c.getById = ja(function (a) {
574
+ return (
575
+ (o.appendChild(a).id = u),
576
+ !n.getElementsByName || !n.getElementsByName(u).length
577
+ )
578
+ })),
579
+ c.getById
580
+ ? ((d.filter.ID = function (a) {
581
+ var b = a.replace(_, aa)
582
+ return function (a) {
583
+ return a.getAttribute('id') === b
584
+ }
585
+ }),
586
+ (d.find.ID = function (a, b) {
587
+ if ('undefined' != typeof b.getElementById && p) {
588
+ var c = b.getElementById(a)
589
+ return c ? [c] : []
590
+ }
591
+ }))
592
+ : ((d.filter.ID = function (a) {
593
+ var b = a.replace(_, aa)
594
+ return function (a) {
595
+ var c =
596
+ 'undefined' != typeof a.getAttributeNode &&
597
+ a.getAttributeNode('id')
598
+ return c && c.value === b
599
+ }
600
+ }),
601
+ (d.find.ID = function (a, b) {
602
+ if ('undefined' != typeof b.getElementById && p) {
603
+ var c,
604
+ d,
605
+ e,
606
+ f = b.getElementById(a)
607
+ if (f) {
604
608
  if (
605
609
  ((c = f.getAttributeNode('id')), c && c.value === a)
606
610
  )
607
611
  return [f]
612
+ ;(e = b.getElementsByName(a)), (d = 0)
613
+ while ((f = e[d++]))
614
+ if (
615
+ ((c = f.getAttributeNode('id')), c && c.value === a)
616
+ )
617
+ return [f]
618
+ }
619
+ return []
608
620
  }
609
- return []
621
+ })),
622
+ (d.find.TAG = c.getElementsByTagName
623
+ ? function (a, b) {
624
+ return 'undefined' != typeof b.getElementsByTagName
625
+ ? b.getElementsByTagName(a)
626
+ : c.qsa
627
+ ? b.querySelectorAll(a)
628
+ : void 0
610
629
  }
630
+ : function (a, b) {
631
+ var c,
632
+ d = [],
633
+ e = 0,
634
+ f = b.getElementsByTagName(a)
635
+ if ('*' === a) {
636
+ while ((c = f[e++])) 1 === c.nodeType && d.push(c)
637
+ return d
638
+ }
639
+ return f
640
+ }),
641
+ (d.find.CLASS =
642
+ c.getElementsByClassName &&
643
+ function (a, b) {
644
+ if ('undefined' != typeof b.getElementsByClassName && p)
645
+ return b.getElementsByClassName(a)
646
+ }),
647
+ (r = []),
648
+ (q = []),
649
+ (c.qsa = Y.test(n.querySelectorAll)) &&
650
+ (ja(function (a) {
651
+ ;(o.appendChild(a).innerHTML =
652
+ "<a id='" +
653
+ u +
654
+ "'></a><select id='" +
655
+ u +
656
+ "-\r\\' msallowcapture=''><option selected=''></option></select>"),
657
+ a.querySelectorAll("[msallowcapture^='']").length &&
658
+ q.push('[*^$]=' + K + '*(?:\'\'|"")'),
659
+ a.querySelectorAll('[selected]').length ||
660
+ q.push('\\[' + K + '*(?:value|' + J + ')'),
661
+ a.querySelectorAll('[id~=' + u + '-]').length ||
662
+ q.push('~='),
663
+ a.querySelectorAll(':checked').length || q.push(':checked'),
664
+ a.querySelectorAll('a#' + u + '+*').length ||
665
+ q.push('.#.+[+~]')
666
+ }),
667
+ ja(function (a) {
668
+ a.innerHTML =
669
+ "<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>"
670
+ var b = n.createElement('input')
671
+ b.setAttribute('type', 'hidden'),
672
+ a.appendChild(b).setAttribute('name', 'D'),
673
+ a.querySelectorAll('[name=d]').length &&
674
+ q.push('name' + K + '*[*^$|!~]?='),
675
+ 2 !== a.querySelectorAll(':enabled').length &&
676
+ q.push(':enabled', ':disabled'),
677
+ (o.appendChild(a).disabled = !0),
678
+ 2 !== a.querySelectorAll(':disabled').length &&
679
+ q.push(':enabled', ':disabled'),
680
+ a.querySelectorAll('*,:x'),
681
+ q.push(',.*:')
611
682
  })),
612
- (d.find.TAG = c.getElementsByTagName
613
- ? function (a, b) {
614
- return 'undefined' != typeof b.getElementsByTagName
615
- ? b.getElementsByTagName(a)
616
- : c.qsa
617
- ? b.querySelectorAll(a)
618
- : void 0
619
- }
620
- : function (a, b) {
621
- var c,
622
- d = [],
623
- e = 0,
624
- f = b.getElementsByTagName(a)
625
- if ('*' === a) {
626
- while ((c = f[e++])) 1 === c.nodeType && d.push(c)
627
- return d
628
- }
629
- return f
683
+ (c.matchesSelector = Y.test(
684
+ (s =
685
+ o.matches ||
686
+ o.webkitMatchesSelector ||
687
+ o.mozMatchesSelector ||
688
+ o.oMatchesSelector ||
689
+ o.msMatchesSelector)
690
+ )) &&
691
+ ja(function (a) {
692
+ ;(c.disconnectedMatch = s.call(a, '*')),
693
+ s.call(a, "[s!='']:x"),
694
+ r.push('!=', N)
630
695
  }),
631
- (d.find.CLASS =
632
- c.getElementsByClassName &&
633
- function (a, b) {
634
- if ('undefined' != typeof b.getElementsByClassName && p)
635
- return b.getElementsByClassName(a)
636
- }),
637
- (r = []),
638
- (q = []),
639
- (c.qsa = Y.test(n.querySelectorAll)) &&
640
- (ja(function (a) {
641
- ;(o.appendChild(a).innerHTML =
642
- "<a id='" +
643
- u +
644
- "'></a><select id='" +
645
- u +
646
- "-\r\\' msallowcapture=''><option selected=''></option></select>"),
647
- a.querySelectorAll("[msallowcapture^='']").length &&
648
- q.push('[*^$]=' + K + '*(?:\'\'|"")'),
649
- a.querySelectorAll('[selected]').length ||
650
- q.push('\\[' + K + '*(?:value|' + J + ')'),
651
- a.querySelectorAll('[id~=' + u + '-]').length || q.push('~='),
652
- a.querySelectorAll(':checked').length || q.push(':checked'),
653
- a.querySelectorAll('a#' + u + '+*').length ||
654
- q.push('.#.+[+~]')
655
- }),
656
- ja(function (a) {
657
- a.innerHTML =
658
- "<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>"
659
- var b = n.createElement('input')
660
- b.setAttribute('type', 'hidden'),
661
- a.appendChild(b).setAttribute('name', 'D'),
662
- a.querySelectorAll('[name=d]').length &&
663
- q.push('name' + K + '*[*^$|!~]?='),
664
- 2 !== a.querySelectorAll(':enabled').length &&
665
- q.push(':enabled', ':disabled'),
666
- (o.appendChild(a).disabled = !0),
667
- 2 !== a.querySelectorAll(':disabled').length &&
668
- q.push(':enabled', ':disabled'),
669
- a.querySelectorAll('*,:x'),
670
- q.push(',.*:')
671
- })),
672
- (c.matchesSelector = Y.test(
673
- (s =
674
- o.matches ||
675
- o.webkitMatchesSelector ||
676
- o.mozMatchesSelector ||
677
- o.oMatchesSelector ||
678
- o.msMatchesSelector)
679
- )) &&
680
- ja(function (a) {
681
- ;(c.disconnectedMatch = s.call(a, '*')),
682
- s.call(a, "[s!='']:x"),
683
- r.push('!=', N)
684
- }),
685
- (q = q.length && new RegExp(q.join('|'))),
686
- (r = r.length && new RegExp(r.join('|'))),
687
- (b = Y.test(o.compareDocumentPosition)),
688
- (t =
689
- b || Y.test(o.contains)
690
- ? function (a, b) {
691
- var c = 9 === a.nodeType ? a.documentElement : a,
692
- d = b && b.parentNode
693
- return (
694
- a === d ||
695
- !(
696
- !d ||
697
- 1 !== d.nodeType ||
698
- !(c.contains
699
- ? c.contains(d)
700
- : a.compareDocumentPosition &&
701
- 16 & a.compareDocumentPosition(d))
696
+ (q = q.length && new RegExp(q.join('|'))),
697
+ (r = r.length && new RegExp(r.join('|'))),
698
+ (b = Y.test(o.compareDocumentPosition)),
699
+ (t =
700
+ b || Y.test(o.contains)
701
+ ? function (a, b) {
702
+ var c = 9 === a.nodeType ? a.documentElement : a,
703
+ d = b && b.parentNode
704
+ return (
705
+ a === d ||
706
+ !(
707
+ !d ||
708
+ 1 !== d.nodeType ||
709
+ !(c.contains
710
+ ? c.contains(d)
711
+ : a.compareDocumentPosition &&
712
+ 16 & a.compareDocumentPosition(d))
713
+ )
702
714
  )
703
- )
715
+ }
716
+ : function (a, b) {
717
+ if (b) while ((b = b.parentNode)) if (b === a) return !0
718
+ return !1
719
+ }),
720
+ (B = b
721
+ ? function (a, b) {
722
+ if (a === b) return (l = !0), 0
723
+ var d =
724
+ !a.compareDocumentPosition - !b.compareDocumentPosition
725
+ return d
726
+ ? d
727
+ : ((d =
728
+ (a.ownerDocument || a) === (b.ownerDocument || b)
729
+ ? a.compareDocumentPosition(b)
730
+ : 1),
731
+ 1 & d ||
732
+ (!c.sortDetached && b.compareDocumentPosition(a) === d)
733
+ ? a === n || (a.ownerDocument === v && t(v, a))
734
+ ? -1
735
+ : b === n || (b.ownerDocument === v && t(v, b))
736
+ ? 1
737
+ : k
738
+ ? I(k, a) - I(k, b)
739
+ : 0
740
+ : 4 & d
741
+ ? -1
742
+ : 1)
704
743
  }
705
744
  : function (a, b) {
706
- if (b) while ((b = b.parentNode)) if (b === a) return !0
707
- return !1
708
- }),
709
- (B = b
710
- ? function (a, b) {
711
- if (a === b) return (l = !0), 0
712
- var d =
713
- !a.compareDocumentPosition - !b.compareDocumentPosition
714
- return d
715
- ? d
716
- : ((d =
717
- (a.ownerDocument || a) === (b.ownerDocument || b)
718
- ? a.compareDocumentPosition(b)
719
- : 1),
720
- 1 & d ||
721
- (!c.sortDetached && b.compareDocumentPosition(a) === d)
722
- ? a === n || (a.ownerDocument === v && t(v, a))
723
- ? -1
724
- : b === n || (b.ownerDocument === v && t(v, b))
725
- ? 1
726
- : k
727
- ? I(k, a) - I(k, b)
728
- : 0
729
- : 4 & d
745
+ if (a === b) return (l = !0), 0
746
+ var c,
747
+ d = 0,
748
+ e = a.parentNode,
749
+ f = b.parentNode,
750
+ g = [a],
751
+ h = [b]
752
+ if (!e || !f)
753
+ return a === n
730
754
  ? -1
731
- : 1)
732
- }
733
- : function (a, b) {
734
- if (a === b) return (l = !0), 0
735
- var c,
736
- d = 0,
737
- e = a.parentNode,
738
- f = b.parentNode,
739
- g = [a],
740
- h = [b]
741
- if (!e || !f)
742
- return a === n
743
- ? -1
744
- : b === n
745
- ? 1
746
- : e
755
+ : b === n
756
+ ? 1
757
+ : e
758
+ ? -1
759
+ : f
760
+ ? 1
761
+ : k
762
+ ? I(k, a) - I(k, b)
763
+ : 0
764
+ if (e === f) return la(a, b)
765
+ c = a
766
+ while ((c = c.parentNode)) g.unshift(c)
767
+ c = b
768
+ while ((c = c.parentNode)) h.unshift(c)
769
+ while (g[d] === h[d]) d++
770
+ return d
771
+ ? la(g[d], h[d])
772
+ : g[d] === v
747
773
  ? -1
748
- : f
774
+ : h[d] === v
749
775
  ? 1
750
- : k
751
- ? I(k, a) - I(k, b)
752
776
  : 0
753
- if (e === f) return la(a, b)
754
- c = a
755
- while ((c = c.parentNode)) g.unshift(c)
756
- c = b
757
- while ((c = c.parentNode)) h.unshift(c)
758
- while (g[d] === h[d]) d++
759
- return d
760
- ? la(g[d], h[d])
761
- : g[d] === v
762
- ? -1
763
- : h[d] === v
764
- ? 1
765
- : 0
766
- }),
767
- n)
768
- : n
769
- }),
777
+ }),
778
+ n)
779
+ : n
780
+ }),
770
781
  (ga.matches = function (a, b) {
771
782
  return ga(a, null, null, b)
772
783
  }),
@@ -828,343 +839,353 @@
828
839
  }
829
840
  return (k = null), a
830
841
  }),
831
- (e = ga.getText = function (a) {
832
- var b,
833
- c = '',
834
- d = 0,
835
- f = a.nodeType
836
- if (f) {
837
- if (1 === f || 9 === f || 11 === f) {
838
- if ('string' == typeof a.textContent) return a.textContent
839
- for (a = a.firstChild; a; a = a.nextSibling) c += e(a)
840
- } else if (3 === f || 4 === f) return a.nodeValue
841
- } else while ((b = a[d++])) c += e(b)
842
- return c
843
- }),
844
- (d = ga.selectors = {
845
- cacheLength: 50,
846
- createPseudo: ia,
847
- match: V,
848
- attrHandle: {},
849
- find: {},
850
- relative: {
851
- '>': { dir: 'parentNode', first: !0 },
852
- ' ': { dir: 'parentNode' },
853
- '+': { dir: 'previousSibling', first: !0 },
854
- '~': { dir: 'previousSibling' },
855
- },
856
- preFilter: {
857
- ATTR: function (a) {
858
- return (
859
- (a[1] = a[1].replace(_, aa)),
860
- (a[3] = (a[3] || a[4] || a[5] || '').replace(_, aa)),
861
- '~=' === a[2] && (a[3] = ' ' + a[3] + ' '),
862
- a.slice(0, 4)
863
- )
864
- },
865
- CHILD: function (a) {
866
- return (
867
- (a[1] = a[1].toLowerCase()),
868
- 'nth' === a[1].slice(0, 3)
869
- ? (a[3] || ga.error(a[0]),
870
- (a[4] = +(a[4]
871
- ? a[5] + (a[6] || 1)
872
- : 2 * ('even' === a[3] || 'odd' === a[3]))),
873
- (a[5] = +(a[7] + a[8] || 'odd' === a[3])))
874
- : a[3] && ga.error(a[0]),
875
- a
876
- )
877
- },
878
- PSEUDO: function (a) {
879
- var b,
880
- c = !a[6] && a[2]
881
- return V.CHILD.test(a[0])
882
- ? null
883
- : (a[3]
884
- ? (a[2] = a[4] || a[5] || '')
885
- : c &&
886
- T.test(c) &&
887
- (b = g(c, !0)) &&
888
- (b = c.indexOf(')', c.length - b) - c.length) &&
889
- ((a[0] = a[0].slice(0, b)), (a[2] = c.slice(0, b))),
890
- a.slice(0, 3))
891
- },
892
- },
893
- filter: {
894
- TAG: function (a) {
895
- var b = a.replace(_, aa).toLowerCase()
896
- return '*' === a
897
- ? function () {
898
- return !0
899
- }
900
- : function (a) {
901
- return a.nodeName && a.nodeName.toLowerCase() === b
902
- }
903
- },
904
- CLASS: function (a) {
905
- var b = y[a + ' ']
906
- return (
907
- b ||
908
- ((b = new RegExp('(^|' + K + ')' + a + '(' + K + '|$)')) &&
909
- y(a, function (a) {
910
- return b.test(
911
- ('string' == typeof a.className && a.className) ||
912
- ('undefined' != typeof a.getAttribute &&
913
- a.getAttribute('class')) ||
914
- ''
915
- )
916
- }))
917
- )
842
+ (e = ga.getText =
843
+ function (a) {
844
+ var b,
845
+ c = '',
846
+ d = 0,
847
+ f = a.nodeType
848
+ if (f) {
849
+ if (1 === f || 9 === f || 11 === f) {
850
+ if ('string' == typeof a.textContent) return a.textContent
851
+ for (a = a.firstChild; a; a = a.nextSibling) c += e(a)
852
+ } else if (3 === f || 4 === f) return a.nodeValue
853
+ } else while ((b = a[d++])) c += e(b)
854
+ return c
855
+ }),
856
+ (d = ga.selectors =
857
+ {
858
+ cacheLength: 50,
859
+ createPseudo: ia,
860
+ match: V,
861
+ attrHandle: {},
862
+ find: {},
863
+ relative: {
864
+ '>': { dir: 'parentNode', first: !0 },
865
+ ' ': { dir: 'parentNode' },
866
+ '+': { dir: 'previousSibling', first: !0 },
867
+ '~': { dir: 'previousSibling' },
918
868
  },
919
- ATTR: function (a, b, c) {
920
- return function (d) {
921
- var e = ga.attr(d, a)
922
- return null == e
923
- ? '!=' === b
924
- : !b ||
925
- ((e += ''),
926
- '=' === b
927
- ? e === c
928
- : '!=' === b
929
- ? e !== c
930
- : '^=' === b
931
- ? c && 0 === e.indexOf(c)
932
- : '*=' === b
933
- ? c && e.indexOf(c) > -1
934
- : '$=' === b
935
- ? c && e.slice(-c.length) === c
936
- : '~=' === b
937
- ? (' ' + e.replace(O, ' ') + ' ').indexOf(c) > -1
938
- : '|=' === b &&
939
- (e === c || e.slice(0, c.length + 1) === c + '-'))
940
- }
869
+ preFilter: {
870
+ ATTR: function (a) {
871
+ return (
872
+ (a[1] = a[1].replace(_, aa)),
873
+ (a[3] = (a[3] || a[4] || a[5] || '').replace(_, aa)),
874
+ '~=' === a[2] && (a[3] = ' ' + a[3] + ' '),
875
+ a.slice(0, 4)
876
+ )
877
+ },
878
+ CHILD: function (a) {
879
+ return (
880
+ (a[1] = a[1].toLowerCase()),
881
+ 'nth' === a[1].slice(0, 3)
882
+ ? (a[3] || ga.error(a[0]),
883
+ (a[4] = +(a[4]
884
+ ? a[5] + (a[6] || 1)
885
+ : 2 * ('even' === a[3] || 'odd' === a[3]))),
886
+ (a[5] = +(a[7] + a[8] || 'odd' === a[3])))
887
+ : a[3] && ga.error(a[0]),
888
+ a
889
+ )
890
+ },
891
+ PSEUDO: function (a) {
892
+ var b,
893
+ c = !a[6] && a[2]
894
+ return V.CHILD.test(a[0])
895
+ ? null
896
+ : (a[3]
897
+ ? (a[2] = a[4] || a[5] || '')
898
+ : c &&
899
+ T.test(c) &&
900
+ (b = g(c, !0)) &&
901
+ (b = c.indexOf(')', c.length - b) - c.length) &&
902
+ ((a[0] = a[0].slice(0, b)), (a[2] = c.slice(0, b))),
903
+ a.slice(0, 3))
904
+ },
941
905
  },
942
- CHILD: function (a, b, c, d, e) {
943
- var f = 'nth' !== a.slice(0, 3),
944
- g = 'last' !== a.slice(-4),
945
- h = 'of-type' === b
946
- return 1 === d && 0 === e
947
- ? function (a) {
948
- return !!a.parentNode
949
- }
950
- : function (b, c, i) {
951
- var j,
952
- k,
953
- l,
954
- m,
955
- n,
956
- o,
957
- p = f !== g ? 'nextSibling' : 'previousSibling',
958
- q = b.parentNode,
959
- r = h && b.nodeName.toLowerCase(),
960
- s = !i && !h,
961
- t = !1
962
- if (q) {
963
- if (f) {
964
- while (p) {
965
- m = b
966
- while ((m = m[p]))
906
+ filter: {
907
+ TAG: function (a) {
908
+ var b = a.replace(_, aa).toLowerCase()
909
+ return '*' === a
910
+ ? function () {
911
+ return !0
912
+ }
913
+ : function (a) {
914
+ return a.nodeName && a.nodeName.toLowerCase() === b
915
+ }
916
+ },
917
+ CLASS: function (a) {
918
+ var b = y[a + ' ']
919
+ return (
920
+ b ||
921
+ ((b = new RegExp('(^|' + K + ')' + a + '(' + K + '|$)')) &&
922
+ y(a, function (a) {
923
+ return b.test(
924
+ ('string' == typeof a.className && a.className) ||
925
+ ('undefined' != typeof a.getAttribute &&
926
+ a.getAttribute('class')) ||
927
+ ''
928
+ )
929
+ }))
930
+ )
931
+ },
932
+ ATTR: function (a, b, c) {
933
+ return function (d) {
934
+ var e = ga.attr(d, a)
935
+ return null == e
936
+ ? '!=' === b
937
+ : !b ||
938
+ ((e += ''),
939
+ '=' === b
940
+ ? e === c
941
+ : '!=' === b
942
+ ? e !== c
943
+ : '^=' === b
944
+ ? c && 0 === e.indexOf(c)
945
+ : '*=' === b
946
+ ? c && e.indexOf(c) > -1
947
+ : '$=' === b
948
+ ? c && e.slice(-c.length) === c
949
+ : '~=' === b
950
+ ? (' ' + e.replace(O, ' ') + ' ').indexOf(c) > -1
951
+ : '|=' === b &&
952
+ (e === c || e.slice(0, c.length + 1) === c + '-'))
953
+ }
954
+ },
955
+ CHILD: function (a, b, c, d, e) {
956
+ var f = 'nth' !== a.slice(0, 3),
957
+ g = 'last' !== a.slice(-4),
958
+ h = 'of-type' === b
959
+ return 1 === d && 0 === e
960
+ ? function (a) {
961
+ return !!a.parentNode
962
+ }
963
+ : function (b, c, i) {
964
+ var j,
965
+ k,
966
+ l,
967
+ m,
968
+ n,
969
+ o,
970
+ p = f !== g ? 'nextSibling' : 'previousSibling',
971
+ q = b.parentNode,
972
+ r = h && b.nodeName.toLowerCase(),
973
+ s = !i && !h,
974
+ t = !1
975
+ if (q) {
976
+ if (f) {
977
+ while (p) {
978
+ m = b
979
+ while ((m = m[p]))
980
+ if (
981
+ h
982
+ ? m.nodeName.toLowerCase() === r
983
+ : 1 === m.nodeType
984
+ )
985
+ return !1
986
+ o = p = 'only' === a && !o && 'nextSibling'
987
+ }
988
+ return !0
989
+ }
990
+ if (((o = [g ? q.firstChild : q.lastChild]), g && s)) {
991
+ ;(m = q),
992
+ (l = m[u] || (m[u] = {})),
993
+ (k = l[m.uniqueID] || (l[m.uniqueID] = {})),
994
+ (j = k[a] || []),
995
+ (n = j[0] === w && j[1]),
996
+ (t = n && j[2]),
997
+ (m = n && q.childNodes[n])
998
+ while (
999
+ (m = (++n && m && m[p]) || (t = n = 0) || o.pop())
1000
+ )
1001
+ if (1 === m.nodeType && ++t && m === b) {
1002
+ k[a] = [w, n, t]
1003
+ break
1004
+ }
1005
+ } else if (
1006
+ (s &&
1007
+ ((m = b),
1008
+ (l = m[u] || (m[u] = {})),
1009
+ (k = l[m.uniqueID] || (l[m.uniqueID] = {})),
1010
+ (j = k[a] || []),
1011
+ (n = j[0] === w && j[1]),
1012
+ (t = n)),
1013
+ t === !1)
1014
+ )
1015
+ while (
1016
+ (m = (++n && m && m[p]) || (t = n = 0) || o.pop())
1017
+ )
967
1018
  if (
968
- h
1019
+ (h
969
1020
  ? m.nodeName.toLowerCase() === r
970
- : 1 === m.nodeType
1021
+ : 1 === m.nodeType) &&
1022
+ ++t &&
1023
+ (s &&
1024
+ ((l = m[u] || (m[u] = {})),
1025
+ (k = l[m.uniqueID] || (l[m.uniqueID] = {})),
1026
+ (k[a] = [w, t])),
1027
+ m === b)
971
1028
  )
972
- return !1
973
- o = p = 'only' === a && !o && 'nextSibling'
974
- }
975
- return !0
1029
+ break
1030
+ return (t -= e), t === d || (t % d === 0 && t / d >= 0)
976
1031
  }
977
- if (((o = [g ? q.firstChild : q.lastChild]), g && s)) {
978
- ;(m = q),
979
- (l = m[u] || (m[u] = {})),
980
- (k = l[m.uniqueID] || (l[m.uniqueID] = {})),
981
- (j = k[a] || []),
982
- (n = j[0] === w && j[1]),
983
- (t = n && j[2]),
984
- (m = n && q.childNodes[n])
985
- while ((m = (++n && m && m[p]) || (t = n = 0) || o.pop()))
986
- if (1 === m.nodeType && ++t && m === b) {
987
- k[a] = [w, n, t]
988
- break
989
- }
990
- } else if (
991
- (s &&
992
- ((m = b),
993
- (l = m[u] || (m[u] = {})),
994
- (k = l[m.uniqueID] || (l[m.uniqueID] = {})),
995
- (j = k[a] || []),
996
- (n = j[0] === w && j[1]),
997
- (t = n)),
998
- t === !1)
999
- )
1000
- while ((m = (++n && m && m[p]) || (t = n = 0) || o.pop()))
1001
- if (
1002
- (h
1003
- ? m.nodeName.toLowerCase() === r
1004
- : 1 === m.nodeType) &&
1005
- ++t &&
1006
- (s &&
1007
- ((l = m[u] || (m[u] = {})),
1008
- (k = l[m.uniqueID] || (l[m.uniqueID] = {})),
1009
- (k[a] = [w, t])),
1010
- m === b)
1011
- )
1012
- break
1013
- return (t -= e), t === d || (t % d === 0 && t / d >= 0)
1014
1032
  }
1015
- }
1016
- },
1017
- PSEUDO: function (a, b) {
1018
- var c,
1019
- e =
1020
- d.pseudos[a] ||
1021
- d.setFilters[a.toLowerCase()] ||
1022
- ga.error('unsupported pseudo: ' + a)
1023
- return e[u]
1024
- ? e(b)
1025
- : e.length > 1
1026
- ? ((c = [a, a, '', b]),
1027
- d.setFilters.hasOwnProperty(a.toLowerCase())
1028
- ? ia(function (a, c) {
1029
- var d,
1030
- f = e(a, b),
1031
- g = f.length
1032
- while (g--) (d = I(a, f[g])), (a[d] = !(c[d] = f[g]))
1033
- })
1034
- : function (a) {
1035
- return e(a, 0, c)
1036
- })
1037
- : e
1033
+ },
1034
+ PSEUDO: function (a, b) {
1035
+ var c,
1036
+ e =
1037
+ d.pseudos[a] ||
1038
+ d.setFilters[a.toLowerCase()] ||
1039
+ ga.error('unsupported pseudo: ' + a)
1040
+ return e[u]
1041
+ ? e(b)
1042
+ : e.length > 1
1043
+ ? ((c = [a, a, '', b]),
1044
+ d.setFilters.hasOwnProperty(a.toLowerCase())
1045
+ ? ia(function (a, c) {
1046
+ var d,
1047
+ f = e(a, b),
1048
+ g = f.length
1049
+ while (g--) (d = I(a, f[g])), (a[d] = !(c[d] = f[g]))
1050
+ })
1051
+ : function (a) {
1052
+ return e(a, 0, c)
1053
+ })
1054
+ : e
1055
+ },
1038
1056
  },
1039
- },
1040
- pseudos: {
1041
- not: ia(function (a) {
1042
- var b = [],
1043
- c = [],
1044
- d = h(a.replace(P, '$1'))
1045
- return d[u]
1046
- ? ia(function (a, b, c, e) {
1047
- var f,
1048
- g = d(a, null, e, []),
1049
- h = a.length
1050
- while (h--) (f = g[h]) && (a[h] = !(b[h] = f))
1051
- })
1052
- : function (a, e, f) {
1053
- return (b[0] = a), d(b, null, f, c), (b[0] = null), !c.pop()
1054
- }
1055
- }),
1056
- has: ia(function (a) {
1057
- return function (b) {
1058
- return ga(a, b).length > 0
1059
- }
1060
- }),
1061
- contains: ia(function (a) {
1062
- return (
1063
- (a = a.replace(_, aa)),
1064
- function (b) {
1065
- return (b.textContent || b.innerText || e(b)).indexOf(a) > -1
1057
+ pseudos: {
1058
+ not: ia(function (a) {
1059
+ var b = [],
1060
+ c = [],
1061
+ d = h(a.replace(P, '$1'))
1062
+ return d[u]
1063
+ ? ia(function (a, b, c, e) {
1064
+ var f,
1065
+ g = d(a, null, e, []),
1066
+ h = a.length
1067
+ while (h--) (f = g[h]) && (a[h] = !(b[h] = f))
1068
+ })
1069
+ : function (a, e, f) {
1070
+ return (b[0] = a), d(b, null, f, c), (b[0] = null), !c.pop()
1071
+ }
1072
+ }),
1073
+ has: ia(function (a) {
1074
+ return function (b) {
1075
+ return ga(a, b).length > 0
1066
1076
  }
1067
- )
1068
- }),
1069
- lang: ia(function (a) {
1070
- return (
1071
- U.test(a || '') || ga.error('unsupported lang: ' + a),
1072
- (a = a.replace(_, aa).toLowerCase()),
1073
- function (b) {
1074
- var c
1075
- do
1076
- if (
1077
- (c = p
1078
- ? b.lang
1079
- : b.getAttribute('xml:lang') || b.getAttribute('lang'))
1080
- )
1081
- return (
1082
- (c = c.toLowerCase()), c === a || 0 === c.indexOf(a + '-')
1077
+ }),
1078
+ contains: ia(function (a) {
1079
+ return (
1080
+ (a = a.replace(_, aa)),
1081
+ function (b) {
1082
+ return (b.textContent || b.innerText || e(b)).indexOf(a) > -1
1083
+ }
1084
+ )
1085
+ }),
1086
+ lang: ia(function (a) {
1087
+ return (
1088
+ U.test(a || '') || ga.error('unsupported lang: ' + a),
1089
+ (a = a.replace(_, aa).toLowerCase()),
1090
+ function (b) {
1091
+ var c
1092
+ do
1093
+ if (
1094
+ (c = p
1095
+ ? b.lang
1096
+ : b.getAttribute('xml:lang') || b.getAttribute('lang'))
1083
1097
  )
1084
- while ((b = b.parentNode) && 1 === b.nodeType)
1085
- return !1
1086
- }
1087
- )
1088
- }),
1089
- target: function (b) {
1090
- var c = a.location && a.location.hash
1091
- return c && c.slice(1) === b.id
1092
- },
1093
- root: function (a) {
1094
- return a === o
1095
- },
1096
- focus: function (a) {
1097
- return (
1098
- a === n.activeElement &&
1099
- (!n.hasFocus || n.hasFocus()) &&
1100
- !!(a.type || a.href || ~a.tabIndex)
1101
- )
1102
- },
1103
- enabled: oa(!1),
1104
- disabled: oa(!0),
1105
- checked: function (a) {
1106
- var b = a.nodeName.toLowerCase()
1107
- return (
1108
- ('input' === b && !!a.checked) || ('option' === b && !!a.selected)
1109
- )
1110
- },
1111
- selected: function (a) {
1112
- return a.parentNode && a.parentNode.selectedIndex, a.selected === !0
1113
- },
1114
- empty: function (a) {
1115
- for (a = a.firstChild; a; a = a.nextSibling)
1116
- if (a.nodeType < 6) return !1
1117
- return !0
1118
- },
1119
- parent: function (a) {
1120
- return !d.pseudos.empty(a)
1121
- },
1122
- header: function (a) {
1123
- return X.test(a.nodeName)
1124
- },
1125
- input: function (a) {
1126
- return W.test(a.nodeName)
1127
- },
1128
- button: function (a) {
1129
- var b = a.nodeName.toLowerCase()
1130
- return ('input' === b && 'button' === a.type) || 'button' === b
1131
- },
1132
- text: function (a) {
1133
- var b
1134
- return (
1135
- 'input' === a.nodeName.toLowerCase() &&
1136
- 'text' === a.type &&
1137
- (null == (b = a.getAttribute('type')) ||
1138
- 'text' === b.toLowerCase())
1139
- )
1098
+ return (
1099
+ (c = c.toLowerCase()),
1100
+ c === a || 0 === c.indexOf(a + '-')
1101
+ )
1102
+ while ((b = b.parentNode) && 1 === b.nodeType)
1103
+ return !1
1104
+ }
1105
+ )
1106
+ }),
1107
+ target: function (b) {
1108
+ var c = a.location && a.location.hash
1109
+ return c && c.slice(1) === b.id
1110
+ },
1111
+ root: function (a) {
1112
+ return a === o
1113
+ },
1114
+ focus: function (a) {
1115
+ return (
1116
+ a === n.activeElement &&
1117
+ (!n.hasFocus || n.hasFocus()) &&
1118
+ !!(a.type || a.href || ~a.tabIndex)
1119
+ )
1120
+ },
1121
+ enabled: oa(!1),
1122
+ disabled: oa(!0),
1123
+ checked: function (a) {
1124
+ var b = a.nodeName.toLowerCase()
1125
+ return (
1126
+ ('input' === b && !!a.checked) ||
1127
+ ('option' === b && !!a.selected)
1128
+ )
1129
+ },
1130
+ selected: function (a) {
1131
+ return (
1132
+ a.parentNode && a.parentNode.selectedIndex, a.selected === !0
1133
+ )
1134
+ },
1135
+ empty: function (a) {
1136
+ for (a = a.firstChild; a; a = a.nextSibling)
1137
+ if (a.nodeType < 6) return !1
1138
+ return !0
1139
+ },
1140
+ parent: function (a) {
1141
+ return !d.pseudos.empty(a)
1142
+ },
1143
+ header: function (a) {
1144
+ return X.test(a.nodeName)
1145
+ },
1146
+ input: function (a) {
1147
+ return W.test(a.nodeName)
1148
+ },
1149
+ button: function (a) {
1150
+ var b = a.nodeName.toLowerCase()
1151
+ return ('input' === b && 'button' === a.type) || 'button' === b
1152
+ },
1153
+ text: function (a) {
1154
+ var b
1155
+ return (
1156
+ 'input' === a.nodeName.toLowerCase() &&
1157
+ 'text' === a.type &&
1158
+ (null == (b = a.getAttribute('type')) ||
1159
+ 'text' === b.toLowerCase())
1160
+ )
1161
+ },
1162
+ first: pa(function () {
1163
+ return [0]
1164
+ }),
1165
+ last: pa(function (a, b) {
1166
+ return [b - 1]
1167
+ }),
1168
+ eq: pa(function (a, b, c) {
1169
+ return [c < 0 ? c + b : c]
1170
+ }),
1171
+ even: pa(function (a, b) {
1172
+ for (var c = 0; c < b; c += 2) a.push(c)
1173
+ return a
1174
+ }),
1175
+ odd: pa(function (a, b) {
1176
+ for (var c = 1; c < b; c += 2) a.push(c)
1177
+ return a
1178
+ }),
1179
+ lt: pa(function (a, b, c) {
1180
+ for (var d = c < 0 ? c + b : c; --d >= 0; ) a.push(d)
1181
+ return a
1182
+ }),
1183
+ gt: pa(function (a, b, c) {
1184
+ for (var d = c < 0 ? c + b : c; ++d < b; ) a.push(d)
1185
+ return a
1186
+ }),
1140
1187
  },
1141
- first: pa(function () {
1142
- return [0]
1143
- }),
1144
- last: pa(function (a, b) {
1145
- return [b - 1]
1146
- }),
1147
- eq: pa(function (a, b, c) {
1148
- return [c < 0 ? c + b : c]
1149
- }),
1150
- even: pa(function (a, b) {
1151
- for (var c = 0; c < b; c += 2) a.push(c)
1152
- return a
1153
- }),
1154
- odd: pa(function (a, b) {
1155
- for (var c = 1; c < b; c += 2) a.push(c)
1156
- return a
1157
- }),
1158
- lt: pa(function (a, b, c) {
1159
- for (var d = c < 0 ? c + b : c; --d >= 0; ) a.push(d)
1160
- return a
1161
- }),
1162
- gt: pa(function (a, b, c) {
1163
- for (var d = c < 0 ? c + b : c; ++d < b; ) a.push(d)
1164
- return a
1165
- }),
1166
- },
1167
- }),
1188
+ }),
1168
1189
  (d.pseudos.nth = d.pseudos.eq)
1169
1190
  for (b in { radio: !0, checkbox: !0, file: !0, password: !0, image: !0 })
1170
1191
  d.pseudos[b] = ma(b)
@@ -1172,35 +1193,36 @@
1172
1193
  function ra() {}
1173
1194
  ;(ra.prototype = d.filters = d.pseudos),
1174
1195
  (d.setFilters = new ra()),
1175
- (g = ga.tokenize = function (a, b) {
1176
- var c,
1177
- e,
1178
- f,
1179
- g,
1180
- h,
1181
- i,
1182
- j,
1183
- k = z[a + ' ']
1184
- if (k) return b ? 0 : k.slice(0)
1185
- ;(h = a), (i = []), (j = d.preFilter)
1186
- while (h) {
1187
- ;(c && !(e = Q.exec(h))) ||
1188
- (e && (h = h.slice(e[0].length) || h), i.push((f = []))),
1189
- (c = !1),
1190
- (e = R.exec(h)) &&
1191
- ((c = e.shift()),
1192
- f.push({ value: c, type: e[0].replace(P, ' ') }),
1193
- (h = h.slice(c.length)))
1194
- for (g in d.filter)
1195
- !(e = V[g].exec(h)) ||
1196
- (j[g] && !(e = j[g](e))) ||
1197
- ((c = e.shift()),
1198
- f.push({ value: c, type: g, matches: e }),
1199
- (h = h.slice(c.length)))
1200
- if (!c) break
1201
- }
1202
- return b ? h.length : h ? ga.error(a) : z(a, i).slice(0)
1203
- })
1196
+ (g = ga.tokenize =
1197
+ function (a, b) {
1198
+ var c,
1199
+ e,
1200
+ f,
1201
+ g,
1202
+ h,
1203
+ i,
1204
+ j,
1205
+ k = z[a + ' ']
1206
+ if (k) return b ? 0 : k.slice(0)
1207
+ ;(h = a), (i = []), (j = d.preFilter)
1208
+ while (h) {
1209
+ ;(c && !(e = Q.exec(h))) ||
1210
+ (e && (h = h.slice(e[0].length) || h), i.push((f = []))),
1211
+ (c = !1),
1212
+ (e = R.exec(h)) &&
1213
+ ((c = e.shift()),
1214
+ f.push({ value: c, type: e[0].replace(P, ' ') }),
1215
+ (h = h.slice(c.length)))
1216
+ for (g in d.filter)
1217
+ !(e = V[g].exec(h)) ||
1218
+ (j[g] && !(e = j[g](e))) ||
1219
+ ((c = e.shift()),
1220
+ f.push({ value: c, type: g, matches: e }),
1221
+ (h = h.slice(c.length)))
1222
+ if (!c) break
1223
+ }
1224
+ return b ? h.length : h ? ga.error(a) : z(a, i).slice(0)
1225
+ })
1204
1226
  function sa(a) {
1205
1227
  for (var b = 0, c = a.length, d = ''; b < c; b++) d += a[b].value
1206
1228
  return d
@@ -1396,68 +1418,70 @@
1396
1418
  return c ? ia(f) : f
1397
1419
  }
1398
1420
  return (
1399
- (h = ga.compile = function (a, b) {
1400
- var c,
1401
- d = [],
1402
- e = [],
1403
- f = A[a + ' ']
1404
- if (!f) {
1405
- b || (b = g(a)), (c = b.length)
1406
- while (c--) (f = ya(b[c])), f[u] ? d.push(f) : e.push(f)
1407
- ;(f = A(a, za(e, d))), (f.selector = a)
1408
- }
1409
- return f
1410
- }),
1411
- (i = ga.select = function (a, b, c, e) {
1412
- var f,
1413
- i,
1414
- j,
1415
- k,
1416
- l,
1417
- m = 'function' == typeof a && a,
1418
- n = !e && g((a = m.selector || a))
1419
- if (((c = c || []), 1 === n.length)) {
1420
- if (
1421
- ((i = n[0] = n[0].slice(0)),
1422
- i.length > 2 &&
1423
- 'ID' === (j = i[0]).type &&
1424
- 9 === b.nodeType &&
1425
- p &&
1426
- d.relative[i[1].type])
1427
- ) {
1428
- if (
1429
- ((b = (d.find.ID(j.matches[0].replace(_, aa), b) || [])[0]), !b)
1430
- )
1431
- return c
1432
- m && (b = b.parentNode), (a = a.slice(i.shift().value.length))
1421
+ (h = ga.compile =
1422
+ function (a, b) {
1423
+ var c,
1424
+ d = [],
1425
+ e = [],
1426
+ f = A[a + ' ']
1427
+ if (!f) {
1428
+ b || (b = g(a)), (c = b.length)
1429
+ while (c--) (f = ya(b[c])), f[u] ? d.push(f) : e.push(f)
1430
+ ;(f = A(a, za(e, d))), (f.selector = a)
1433
1431
  }
1434
- f = V.needsContext.test(a) ? 0 : i.length
1435
- while (f--) {
1436
- if (((j = i[f]), d.relative[(k = j.type)])) break
1432
+ return f
1433
+ }),
1434
+ (i = ga.select =
1435
+ function (a, b, c, e) {
1436
+ var f,
1437
+ i,
1438
+ j,
1439
+ k,
1440
+ l,
1441
+ m = 'function' == typeof a && a,
1442
+ n = !e && g((a = m.selector || a))
1443
+ if (((c = c || []), 1 === n.length)) {
1437
1444
  if (
1438
- (l = d.find[k]) &&
1439
- (e = l(
1440
- j.matches[0].replace(_, aa),
1441
- ($.test(i[0].type) && qa(b.parentNode)) || b
1442
- ))
1445
+ ((i = n[0] = n[0].slice(0)),
1446
+ i.length > 2 &&
1447
+ 'ID' === (j = i[0]).type &&
1448
+ 9 === b.nodeType &&
1449
+ p &&
1450
+ d.relative[i[1].type])
1443
1451
  ) {
1444
- if ((i.splice(f, 1), (a = e.length && sa(i)), !a))
1445
- return G.apply(c, e), c
1446
- break
1452
+ if (
1453
+ ((b = (d.find.ID(j.matches[0].replace(_, aa), b) || [])[0]), !b)
1454
+ )
1455
+ return c
1456
+ m && (b = b.parentNode), (a = a.slice(i.shift().value.length))
1457
+ }
1458
+ f = V.needsContext.test(a) ? 0 : i.length
1459
+ while (f--) {
1460
+ if (((j = i[f]), d.relative[(k = j.type)])) break
1461
+ if (
1462
+ (l = d.find[k]) &&
1463
+ (e = l(
1464
+ j.matches[0].replace(_, aa),
1465
+ ($.test(i[0].type) && qa(b.parentNode)) || b
1466
+ ))
1467
+ ) {
1468
+ if ((i.splice(f, 1), (a = e.length && sa(i)), !a))
1469
+ return G.apply(c, e), c
1470
+ break
1471
+ }
1447
1472
  }
1448
1473
  }
1449
- }
1450
- return (
1451
- (m || h(a, n))(
1452
- e,
1453
- b,
1454
- !p,
1455
- c,
1456
- !b || ($.test(a) && qa(b.parentNode)) || b
1457
- ),
1458
- c
1459
- )
1460
- }),
1474
+ return (
1475
+ (m || h(a, n))(
1476
+ e,
1477
+ b,
1478
+ !p,
1479
+ c,
1480
+ !b || ($.test(a) && qa(b.parentNode)) || b
1481
+ ),
1482
+ c
1483
+ )
1484
+ }),
1461
1485
  (c.sortStable = u.split('').sort(B).join('') === u),
1462
1486
  (c.detectDuplicates = !!l),
1463
1487
  m(),
@@ -2567,11 +2591,12 @@
2567
2591
  c.guid || (c.guid = r.guid++),
2568
2592
  (i = q.events) || (i = q.events = {}),
2569
2593
  (g = q.handle) ||
2570
- (g = q.handle = function (b) {
2571
- return 'undefined' != typeof r && r.event.triggered !== b.type
2572
- ? r.event.dispatch.apply(a, arguments)
2573
- : void 0
2574
- }),
2594
+ (g = q.handle =
2595
+ function (b) {
2596
+ return 'undefined' != typeof r && r.event.triggered !== b.type
2597
+ ? r.event.dispatch.apply(a, arguments)
2598
+ : void 0
2599
+ }),
2575
2600
  (b = (b || '').match(L) || ['']),
2576
2601
  (j = b.length)
2577
2602
  while (j--)
@@ -2925,7 +2950,8 @@
2925
2950
  )
2926
2951
  },
2927
2952
  })
2928
- var za = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
2953
+ var za =
2954
+ /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
2929
2955
  Aa = /<script|<style|<link/i,
2930
2956
  Ba = /checked\s*(?:[^=]|=\s*.checked.)/i,
2931
2957
  Ca = /^true\/(.*)/,
@@ -3498,13 +3524,14 @@
3498
3524
  c = _a.propHooks[this.prop]
3499
3525
  return (
3500
3526
  this.options.duration
3501
- ? (this.pos = b = r.easing[this.easing](
3502
- a,
3503
- this.options.duration * a,
3504
- 0,
3505
- 1,
3506
- this.options.duration
3507
- ))
3527
+ ? (this.pos = b =
3528
+ r.easing[this.easing](
3529
+ a,
3530
+ this.options.duration * a,
3531
+ 0,
3532
+ 1,
3533
+ this.options.duration
3534
+ ))
3508
3535
  : (this.pos = b = a),
3509
3536
  (this.now = (this.end - this.start) * b + this.start),
3510
3537
  this.options.step &&
@@ -3534,11 +3561,12 @@
3534
3561
  },
3535
3562
  },
3536
3563
  }),
3537
- (_a.propHooks.scrollTop = _a.propHooks.scrollLeft = {
3538
- set: function (a) {
3539
- a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now)
3540
- },
3541
- }),
3564
+ (_a.propHooks.scrollTop = _a.propHooks.scrollLeft =
3565
+ {
3566
+ set: function (a) {
3567
+ a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now)
3568
+ },
3569
+ }),
3542
3570
  (r.easing = {
3543
3571
  linear: function (a) {
3544
3572
  return a
@@ -4953,7 +4981,13 @@
4953
4981
  ;(c = function (a) {
4954
4982
  return function () {
4955
4983
  c &&
4956
- ((c = d = h.onload = h.onerror = h.onabort = h.onreadystatechange = null),
4984
+ ((c =
4985
+ d =
4986
+ h.onload =
4987
+ h.onerror =
4988
+ h.onabort =
4989
+ h.onreadystatechange =
4990
+ null),
4957
4991
  'abort' === a
4958
4992
  ? h.abort()
4959
4993
  : 'error' === a
@@ -5060,9 +5094,10 @@
5060
5094
  'data')
5061
5095
  if (h || 'jsonp' === b.dataTypes[0])
5062
5096
  return (
5063
- (e = b.jsonpCallback = r.isFunction(b.jsonpCallback)
5064
- ? b.jsonpCallback()
5065
- : b.jsonpCallback),
5097
+ (e = b.jsonpCallback =
5098
+ r.isFunction(b.jsonpCallback)
5099
+ ? b.jsonpCallback()
5100
+ : b.jsonpCallback),
5066
5101
  h
5067
5102
  ? (b[h] = b[h].replace(Ub, '$1' + e))
5068
5103
  : b.jsonp !== !1 &&