jquery.min.js 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443
  1. /*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */
  2. !function(a, b) {
  3. "object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function(a) {
  4. if (!a.document)
  5. throw new Error("jQuery requires a window with a document");
  6. return b(a)
  7. }
  8. : b(a)
  9. }("undefined" != typeof window ? window : this, function(a, b) {
  10. var c = []
  11. , d = c.slice
  12. , e = c.concat
  13. , f = c.push
  14. , g = c.indexOf
  15. , h = {}
  16. , i = h.toString
  17. , j = h.hasOwnProperty
  18. , k = {}
  19. , l = "1.11.3"
  20. , m = function(a, b) {
  21. return new m.fn.init(a,b)
  22. }
  23. , n = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g
  24. , o = /^-ms-/
  25. , p = /-([\da-z])/gi
  26. , q = function(a, b) {
  27. return b.toUpperCase()
  28. };
  29. m.fn = m.prototype = {
  30. jquery: l,
  31. constructor: m,
  32. selector: "",
  33. length: 0,
  34. toArray: function() {
  35. return d.call(this)
  36. },
  37. get: function(a) {
  38. return null != a ? 0 > a ? this[a + this.length] : this[a] : d.call(this)
  39. },
  40. pushStack: function(a) {
  41. var b = m.merge(this.constructor(), a);
  42. return b.prevObject = this,
  43. b.context = this.context,
  44. b
  45. },
  46. each: function(a, b) {
  47. return m.each(this, a, b)
  48. },
  49. map: function(a) {
  50. return this.pushStack(m.map(this, function(b, c) {
  51. return a.call(b, c, b)
  52. }))
  53. },
  54. slice: function() {
  55. return this.pushStack(d.apply(this, arguments))
  56. },
  57. first: function() {
  58. return this.eq(0)
  59. },
  60. last: function() {
  61. return this.eq(-1)
  62. },
  63. eq: function(a) {
  64. var b = this.length
  65. , c = +a + (0 > a ? b : 0);
  66. return this.pushStack(c >= 0 && b > c ? [this[c]] : [])
  67. },
  68. end: function() {
  69. return this.prevObject || this.constructor(null)
  70. },
  71. push: f,
  72. sort: c.sort,
  73. splice: c.splice
  74. },
  75. m.extend = m.fn.extend = function() {
  76. var a, b, c, d, e, f, g = arguments[0] || {}, h = 1, i = arguments.length, j = !1;
  77. for ("boolean" == typeof g && (j = g,
  78. g = arguments[h] || {},
  79. h++),
  80. "object" == typeof g || m.isFunction(g) || (g = {}),
  81. h === i && (g = this,
  82. h--); i > h; h++)
  83. if (null != (e = arguments[h]))
  84. for (d in e)
  85. a = g[d],
  86. c = e[d],
  87. g !== c && (j && c && (m.isPlainObject(c) || (b = m.isArray(c))) ? (b ? (b = !1,
  88. f = a && m.isArray(a) ? a : []) : f = a && m.isPlainObject(a) ? a : {},
  89. g[d] = m.extend(j, f, c)) : void 0 !== c && (g[d] = c));
  90. return g
  91. }
  92. ,
  93. m.extend({
  94. expando: "jQuery" + (l + Math.random()).replace(/\D/g, ""),
  95. isReady: !0,
  96. error: function(a) {
  97. throw new Error(a)
  98. },
  99. noop: function() {},
  100. isFunction: function(a) {
  101. return "function" === m.type(a)
  102. },
  103. isArray: Array.isArray || function(a) {
  104. return "array" === m.type(a)
  105. }
  106. ,
  107. isWindow: function(a) {
  108. return null != a && a == a.window
  109. },
  110. isNumeric: function(a) {
  111. return !m.isArray(a) && a - parseFloat(a) + 1 >= 0
  112. },
  113. isEmptyObject: function(a) {
  114. var b;
  115. for (b in a)
  116. return !1;
  117. return !0
  118. },
  119. isPlainObject: function(a) {
  120. var b;
  121. if (!a || "object" !== m.type(a) || a.nodeType || m.isWindow(a))
  122. return !1;
  123. try {
  124. if (a.constructor && !j.call(a, "constructor") && !j.call(a.constructor.prototype, "isPrototypeOf"))
  125. return !1
  126. } catch (c) {
  127. return !1
  128. }
  129. if (k.ownLast)
  130. for (b in a)
  131. return j.call(a, b);
  132. for (b in a)
  133. ;
  134. return void 0 === b || j.call(a, b)
  135. },
  136. type: function(a) {
  137. return null == a ? a + "" : "object" == typeof a || "function" == typeof a ? h[i.call(a)] || "object" : typeof a
  138. },
  139. globalEval: function(b) {
  140. b && m.trim(b) && (a.execScript || function(b) {
  141. a.eval.call(a, b)
  142. }
  143. )(b)
  144. },
  145. camelCase: function(a) {
  146. return a.replace(o, "ms-").replace(p, q)
  147. },
  148. nodeName: function(a, b) {
  149. return a.nodeName && a.nodeName.toLowerCase() === b.toLowerCase()
  150. },
  151. each: function(a, b, c) {
  152. var d, e = 0, f = a.length, g = r(a);
  153. if (c) {
  154. if (g) {
  155. for (; f > e; e++)
  156. if (d = b.apply(a[e], c),
  157. d === !1)
  158. break
  159. } else
  160. for (e in a)
  161. if (d = b.apply(a[e], c),
  162. d === !1)
  163. break
  164. } else if (g) {
  165. for (; f > e; e++)
  166. if (d = b.call(a[e], e, a[e]),
  167. d === !1)
  168. break
  169. } else
  170. for (e in a)
  171. if (d = b.call(a[e], e, a[e]),
  172. d === !1)
  173. break;
  174. return a
  175. },
  176. trim: function(a) {
  177. return null == a ? "" : (a + "").replace(n, "")
  178. },
  179. makeArray: function(a, b) {
  180. var c = b || [];
  181. return null != a && (r(Object(a)) ? m.merge(c, "string" == typeof a ? [a] : a) : f.call(c, a)),
  182. c
  183. },
  184. inArray: function(a, b, c) {
  185. var d;
  186. if (b) {
  187. if (g)
  188. return g.call(b, a, c);
  189. for (d = b.length,
  190. c = c ? 0 > c ? Math.max(0, d + c) : c : 0; d > c; c++)
  191. if (c in b && b[c] === a)
  192. return c
  193. }
  194. return -1
  195. },
  196. merge: function(a, b) {
  197. var c = +b.length
  198. , d = 0
  199. , e = a.length;
  200. while (c > d)
  201. a[e++] = b[d++];
  202. if (c !== c)
  203. while (void 0 !== b[d])
  204. a[e++] = b[d++];
  205. return a.length = e,
  206. a
  207. },
  208. grep: function(a, b, c) {
  209. for (var d, e = [], f = 0, g = a.length, h = !c; g > f; f++)
  210. d = !b(a[f], f),
  211. d !== h && e.push(a[f]);
  212. return e
  213. },
  214. map: function(a, b, c) {
  215. var d, f = 0, g = a.length, h = r(a), i = [];
  216. if (h)
  217. for (; g > f; f++)
  218. d = b(a[f], f, c),
  219. null != d && i.push(d);
  220. else
  221. for (f in a)
  222. d = b(a[f], f, c),
  223. null != d && i.push(d);
  224. return e.apply([], i)
  225. },
  226. guid: 1,
  227. proxy: function(a, b) {
  228. var c, e, f;
  229. return "string" == typeof b && (f = a[b],
  230. b = a,
  231. a = f),
  232. m.isFunction(a) ? (c = d.call(arguments, 2),
  233. e = function() {
  234. return a.apply(b || this, c.concat(d.call(arguments)))
  235. }
  236. ,
  237. e.guid = a.guid = a.guid || m.guid++,
  238. e) : void 0
  239. },
  240. now: function() {
  241. return +new Date
  242. },
  243. support: k
  244. }),
  245. m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(a, b) {
  246. h["[object " + b + "]"] = b.toLowerCase()
  247. });
  248. function r(a) {
  249. var b = "length"in a && a.length
  250. , c = m.type(a);
  251. return "function" === c || m.isWindow(a) ? !1 : 1 === a.nodeType && b ? !0 : "array" === c || 0 === b || "number" == typeof b && b > 0 && b - 1 in a
  252. }
  253. var s = function(a) {
  254. var b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u = "sizzle" + 1 * new Date, v = a.document, w = 0, x = 0, y = ha(), z = ha(), A = ha(), B = function(a, b) {
  255. return a === b && (l = !0),
  256. 0
  257. }, C = 1 << 31, D = {}.hasOwnProperty, E = [], F = E.pop, G = E.push, H = E.push, I = E.slice, J = function(a, b) {
  258. for (var c = 0, d = a.length; d > c; c++)
  259. if (a[c] === b)
  260. return c;
  261. return -1
  262. }, K = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", L = "[\\x20\\t\\r\\n\\f]", M = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", N = M.replace("w", "w#"), O = "\\[" + L + "*(" + M + ")(?:" + L + "*([*^$|!~]?=)" + L + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + N + "))|)" + L + "*\\]", P = ":(" + M + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + O + ")*)|.*)\\)|)", Q = new RegExp(L + "+","g"), R = new RegExp("^" + L + "+|((?:^|[^\\\\])(?:\\\\.)*)" + L + "+$","g"), S = new RegExp("^" + L + "*," + L + "*"), T = new RegExp("^" + L + "*([>+~]|" + L + ")" + L + "*"), U = new RegExp("=" + L + "*([^\\]'\"]*?)" + L + "*\\]","g"), V = new RegExp(P), W = new RegExp("^" + N + "$"), X = {
  263. ID: new RegExp("^#(" + M + ")"),
  264. CLASS: new RegExp("^\\.(" + M + ")"),
  265. TAG: new RegExp("^(" + M.replace("w", "w*") + ")"),
  266. ATTR: new RegExp("^" + O),
  267. PSEUDO: new RegExp("^" + P),
  268. CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + L + "*(even|odd|(([+-]|)(\\d*)n|)" + L + "*(?:([+-]|)" + L + "*(\\d+)|))" + L + "*\\)|)","i"),
  269. bool: new RegExp("^(?:" + K + ")$","i"),
  270. needsContext: new RegExp("^" + L + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + L + "*((?:-\\d)?\\d*)" + L + "*\\)|)(?=[^-]|$)","i")
  271. }, Y = /^(?:input|select|textarea|button)$/i, Z = /^h\d$/i, $ = /^[^{]+\{\s*\[native \w/, _ = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, aa = /[+~]/, ba = /'|\\/g, ca = new RegExp("\\\\([\\da-f]{1,6}" + L + "?|(" + L + ")|.)","ig"), da = function(a, b, c) {
  272. var d = "0x" + b - 65536;
  273. return d !== d || c ? b : 0 > d ? String.fromCharCode(d + 65536) : String.fromCharCode(d >> 10 | 55296, 1023 & d | 56320)
  274. }, ea = function() {
  275. m()
  276. };
  277. try {
  278. H.apply(E = I.call(v.childNodes), v.childNodes),
  279. E[v.childNodes.length].nodeType
  280. } catch (fa) {
  281. H = {
  282. apply: E.length ? function(a, b) {
  283. G.apply(a, I.call(b))
  284. }
  285. : function(a, b) {
  286. var c = a.length
  287. , d = 0;
  288. while (a[c++] = b[d++])
  289. ;
  290. a.length = c - 1
  291. }
  292. }
  293. }
  294. function ga(a, b, d, e) {
  295. var f, h, j, k, l, o, r, s, w, x;
  296. if ((b ? b.ownerDocument || b : v) !== n && m(b),
  297. b = b || n,
  298. d = d || [],
  299. k = b.nodeType,
  300. "string" != typeof a || !a || 1 !== k && 9 !== k && 11 !== k)
  301. return d;
  302. if (!e && p) {
  303. if (11 !== k && (f = _.exec(a)))
  304. if (j = f[1]) {
  305. if (9 === k) {
  306. if (h = b.getElementById(j),
  307. !h || !h.parentNode)
  308. return d;
  309. if (h.id === j)
  310. return d.push(h),
  311. d
  312. } else if (b.ownerDocument && (h = b.ownerDocument.getElementById(j)) && t(b, h) && h.id === j)
  313. return d.push(h),
  314. d
  315. } else {
  316. if (f[2])
  317. return H.apply(d, b.getElementsByTagName(a)),
  318. d;
  319. if ((j = f[3]) && c.getElementsByClassName)
  320. return H.apply(d, b.getElementsByClassName(j)),
  321. d
  322. }
  323. if (c.qsa && (!q || !q.test(a))) {
  324. if (s = r = u,
  325. w = b,
  326. x = 1 !== k && a,
  327. 1 === k && "object" !== b.nodeName.toLowerCase()) {
  328. o = g(a),
  329. (r = b.getAttribute("id")) ? s = r.replace(ba, "\\$&") : b.setAttribute("id", s),
  330. s = "[id='" + s + "'] ",
  331. l = o.length;
  332. while (l--)
  333. o[l] = s + ra(o[l]);
  334. w = aa.test(a) && pa(b.parentNode) || b,
  335. x = o.join(",")
  336. }
  337. if (x)
  338. try {
  339. return H.apply(d, w.querySelectorAll(x)),
  340. d
  341. } catch (y) {} finally {
  342. r || b.removeAttribute("id")
  343. }
  344. }
  345. }
  346. return i(a.replace(R, "$1"), b, d, e)
  347. }
  348. function ha() {
  349. var a = [];
  350. function b(c, e) {
  351. return a.push(c + " ") > d.cacheLength && delete b[a.shift()],
  352. b[c + " "] = e
  353. }
  354. return b
  355. }
  356. function ia(a) {
  357. return a[u] = !0,
  358. a
  359. }
  360. function ja(a) {
  361. var b = n.createElement("div");
  362. try {
  363. return !!a(b)
  364. } catch (c) {
  365. return !1
  366. } finally {
  367. b.parentNode && b.parentNode.removeChild(b),
  368. b = null
  369. }
  370. }
  371. function ka(a, b) {
  372. var c = a.split("|")
  373. , e = a.length;
  374. while (e--)
  375. d.attrHandle[c[e]] = b
  376. }
  377. function la(a, b) {
  378. var c = b && a
  379. , d = c && 1 === a.nodeType && 1 === b.nodeType && (~b.sourceIndex || C) - (~a.sourceIndex || C);
  380. if (d)
  381. return d;
  382. if (c)
  383. while (c = c.nextSibling)
  384. if (c === b)
  385. return -1;
  386. return a ? 1 : -1
  387. }
  388. function ma(a) {
  389. return function(b) {
  390. var c = b.nodeName.toLowerCase();
  391. return "input" === c && b.type === a
  392. }
  393. }
  394. function na(a) {
  395. return function(b) {
  396. var c = b.nodeName.toLowerCase();
  397. return ("input" === c || "button" === c) && b.type === a
  398. }
  399. }
  400. function oa(a) {
  401. return ia(function(b) {
  402. return b = +b,
  403. ia(function(c, d) {
  404. var e, f = a([], c.length, b), g = f.length;
  405. while (g--)
  406. c[e = f[g]] && (c[e] = !(d[e] = c[e]))
  407. })
  408. })
  409. }
  410. function pa(a) {
  411. return a && "undefined" != typeof a.getElementsByTagName && a
  412. }
  413. c = ga.support = {},
  414. f = ga.isXML = function(a) {
  415. var b = a && (a.ownerDocument || a).documentElement;
  416. return b ? "HTML" !== b.nodeName : !1
  417. }
  418. ,
  419. m = ga.setDocument = function(a) {
  420. var b, e, g = a ? a.ownerDocument || a : v;
  421. return g !== n && 9 === g.nodeType && g.documentElement ? (n = g,
  422. o = g.documentElement,
  423. e = g.defaultView,
  424. e && e !== e.top && (e.addEventListener ? e.addEventListener("unload", ea, !1) : e.attachEvent && e.attachEvent("onunload", ea)),
  425. p = !f(g),
  426. c.attributes = ja(function(a) {
  427. return a.className = "i",
  428. !a.getAttribute("className")
  429. }),
  430. c.getElementsByTagName = ja(function(a) {
  431. return a.appendChild(g.createComment("")),
  432. !a.getElementsByTagName("*").length
  433. }),
  434. c.getElementsByClassName = $.test(g.getElementsByClassName),
  435. c.getById = ja(function(a) {
  436. return o.appendChild(a).id = u,
  437. !g.getElementsByName || !g.getElementsByName(u).length
  438. }),
  439. c.getById ? (d.find.ID = function(a, b) {
  440. if ("undefined" != typeof b.getElementById && p) {
  441. var c = b.getElementById(a);
  442. return c && c.parentNode ? [c] : []
  443. }
  444. }
  445. ,
  446. d.filter.ID = function(a) {
  447. var b = a.replace(ca, da);
  448. return function(a) {
  449. return a.getAttribute("id") === b
  450. }
  451. }
  452. ) : (delete d.find.ID,
  453. d.filter.ID = function(a) {
  454. var b = a.replace(ca, da);
  455. return function(a) {
  456. var c = "undefined" != typeof a.getAttributeNode && a.getAttributeNode("id");
  457. return c && c.value === b
  458. }
  459. }
  460. ),
  461. d.find.TAG = c.getElementsByTagName ? function(a, b) {
  462. return "undefined" != typeof b.getElementsByTagName ? b.getElementsByTagName(a) : c.qsa ? b.querySelectorAll(a) : void 0
  463. }
  464. : function(a, b) {
  465. var c, d = [], e = 0, f = b.getElementsByTagName(a);
  466. if ("*" === a) {
  467. while (c = f[e++])
  468. 1 === c.nodeType && d.push(c);
  469. return d
  470. }
  471. return f
  472. }
  473. ,
  474. d.find.CLASS = c.getElementsByClassName && function(a, b) {
  475. return p ? b.getElementsByClassName(a) : void 0
  476. }
  477. ,
  478. r = [],
  479. q = [],
  480. (c.qsa = $.test(g.querySelectorAll)) && (ja(function(a) {
  481. o.appendChild(a).innerHTML = "<a id='" + u + "'></a><select id='" + u + "-\f]' msallowcapture=''><option selected=''></option></select>",
  482. a.querySelectorAll("[msallowcapture^='']").length && q.push("[*^$]=" + L + "*(?:''|\"\")"),
  483. a.querySelectorAll("[selected]").length || q.push("\\[" + L + "*(?:value|" + K + ")"),
  484. a.querySelectorAll("[id~=" + u + "-]").length || q.push("~="),
  485. a.querySelectorAll(":checked").length || q.push(":checked"),
  486. a.querySelectorAll("a#" + u + "+*").length || q.push(".#.+[+~]")
  487. }),
  488. ja(function(a) {
  489. var b = g.createElement("input");
  490. b.setAttribute("type", "hidden"),
  491. a.appendChild(b).setAttribute("name", "D"),
  492. a.querySelectorAll("[name=d]").length && q.push("name" + L + "*[*^$|!~]?="),
  493. a.querySelectorAll(":enabled").length || q.push(":enabled", ":disabled"),
  494. a.querySelectorAll("*,:x"),
  495. q.push(",.*:")
  496. })),
  497. (c.matchesSelector = $.test(s = o.matches || o.webkitMatchesSelector || o.mozMatchesSelector || o.oMatchesSelector || o.msMatchesSelector)) && ja(function(a) {
  498. c.disconnectedMatch = s.call(a, "div"),
  499. s.call(a, "[s!='']:x"),
  500. r.push("!=", P)
  501. }),
  502. q = q.length && new RegExp(q.join("|")),
  503. r = r.length && new RegExp(r.join("|")),
  504. b = $.test(o.compareDocumentPosition),
  505. t = b || $.test(o.contains) ? function(a, b) {
  506. var c = 9 === a.nodeType ? a.documentElement : a
  507. , d = b && b.parentNode;
  508. return a === d || !(!d || 1 !== d.nodeType || !(c.contains ? c.contains(d) : a.compareDocumentPosition && 16 & a.compareDocumentPosition(d)))
  509. }
  510. : function(a, b) {
  511. if (b)
  512. while (b = b.parentNode)
  513. if (b === a)
  514. return !0;
  515. return !1
  516. }
  517. ,
  518. B = b ? function(a, b) {
  519. if (a === b)
  520. return l = !0,
  521. 0;
  522. var d = !a.compareDocumentPosition - !b.compareDocumentPosition;
  523. return d ? d : (d = (a.ownerDocument || a) === (b.ownerDocument || b) ? a.compareDocumentPosition(b) : 1,
  524. 1 & d || !c.sortDetached && b.compareDocumentPosition(a) === d ? a === g || a.ownerDocument === v && t(v, a) ? -1 : b === g || b.ownerDocument === v && t(v, b) ? 1 : k ? J(k, a) - J(k, b) : 0 : 4 & d ? -1 : 1)
  525. }
  526. : function(a, b) {
  527. if (a === b)
  528. return l = !0,
  529. 0;
  530. var c, d = 0, e = a.parentNode, f = b.parentNode, h = [a], i = [b];
  531. if (!e || !f)
  532. return a === g ? -1 : b === g ? 1 : e ? -1 : f ? 1 : k ? J(k, a) - J(k, b) : 0;
  533. if (e === f)
  534. return la(a, b);
  535. c = a;
  536. while (c = c.parentNode)
  537. h.unshift(c);
  538. c = b;
  539. while (c = c.parentNode)
  540. i.unshift(c);
  541. while (h[d] === i[d])
  542. d++;
  543. return d ? la(h[d], i[d]) : h[d] === v ? -1 : i[d] === v ? 1 : 0
  544. }
  545. ,
  546. g) : n
  547. }
  548. ,
  549. ga.matches = function(a, b) {
  550. return ga(a, null, null, b)
  551. }
  552. ,
  553. ga.matchesSelector = function(a, b) {
  554. if ((a.ownerDocument || a) !== n && m(a),
  555. b = b.replace(U, "='$1']"),
  556. !(!c.matchesSelector || !p || r && r.test(b) || q && q.test(b)))
  557. try {
  558. var d = s.call(a, b);
  559. if (d || c.disconnectedMatch || a.document && 11 !== a.document.nodeType)
  560. return d
  561. } catch (e) {}
  562. return ga(b, n, null, [a]).length > 0
  563. }
  564. ,
  565. ga.contains = function(a, b) {
  566. return (a.ownerDocument || a) !== n && m(a),
  567. t(a, b)
  568. }
  569. ,
  570. ga.attr = function(a, b) {
  571. (a.ownerDocument || a) !== n && m(a);
  572. var e = d.attrHandle[b.toLowerCase()]
  573. , f = e && D.call(d.attrHandle, b.toLowerCase()) ? e(a, b, !p) : void 0;
  574. return void 0 !== f ? f : c.attributes || !p ? a.getAttribute(b) : (f = a.getAttributeNode(b)) && f.specified ? f.value : null
  575. }
  576. ,
  577. ga.error = function(a) {
  578. throw new Error("Syntax error, unrecognized expression: " + a)
  579. }
  580. ,
  581. ga.uniqueSort = function(a) {
  582. var b, d = [], e = 0, f = 0;
  583. if (l = !c.detectDuplicates,
  584. k = !c.sortStable && a.slice(0),
  585. a.sort(B),
  586. l) {
  587. while (b = a[f++])
  588. b === a[f] && (e = d.push(f));
  589. while (e--)
  590. a.splice(d[e], 1)
  591. }
  592. return k = null,
  593. a
  594. }
  595. ,
  596. e = ga.getText = function(a) {
  597. var b, c = "", d = 0, f = a.nodeType;
  598. if (f) {
  599. if (1 === f || 9 === f || 11 === f) {
  600. if ("string" == typeof a.textContent)
  601. return a.textContent;
  602. for (a = a.firstChild; a; a = a.nextSibling)
  603. c += e(a)
  604. } else if (3 === f || 4 === f)
  605. return a.nodeValue
  606. } else
  607. while (b = a[d++])
  608. c += e(b);
  609. return c
  610. }
  611. ,
  612. d = ga.selectors = {
  613. cacheLength: 50,
  614. createPseudo: ia,
  615. match: X,
  616. attrHandle: {},
  617. find: {},
  618. relative: {
  619. ">": {
  620. dir: "parentNode",
  621. first: !0
  622. },
  623. " ": {
  624. dir: "parentNode"
  625. },
  626. "+": {
  627. dir: "previousSibling",
  628. first: !0
  629. },
  630. "~": {
  631. dir: "previousSibling"
  632. }
  633. },
  634. preFilter: {
  635. ATTR: function(a) {
  636. return a[1] = a[1].replace(ca, da),
  637. a[3] = (a[3] || a[4] || a[5] || "").replace(ca, da),
  638. "~=" === a[2] && (a[3] = " " + a[3] + " "),
  639. a.slice(0, 4)
  640. },
  641. CHILD: function(a) {
  642. return a[1] = a[1].toLowerCase(),
  643. "nth" === a[1].slice(0, 3) ? (a[3] || ga.error(a[0]),
  644. a[4] = +(a[4] ? a[5] + (a[6] || 1) : 2 * ("even" === a[3] || "odd" === a[3])),
  645. a[5] = +(a[7] + a[8] || "odd" === a[3])) : a[3] && ga.error(a[0]),
  646. a
  647. },
  648. PSEUDO: function(a) {
  649. var b, c = !a[6] && a[2];
  650. return X.CHILD.test(a[0]) ? null : (a[3] ? a[2] = a[4] || a[5] || "" : c && V.test(c) && (b = g(c, !0)) && (b = c.indexOf(")", c.length - b) - c.length) && (a[0] = a[0].slice(0, b),
  651. a[2] = c.slice(0, b)),
  652. a.slice(0, 3))
  653. }
  654. },
  655. filter: {
  656. TAG: function(a) {
  657. var b = a.replace(ca, da).toLowerCase();
  658. return "*" === a ? function() {
  659. return !0
  660. }
  661. : function(a) {
  662. return a.nodeName && a.nodeName.toLowerCase() === b
  663. }
  664. },
  665. CLASS: function(a) {
  666. var b = y[a + " "];
  667. return b || (b = new RegExp("(^|" + L + ")" + a + "(" + L + "|$)")) && y(a, function(a) {
  668. return b.test("string" == typeof a.className && a.className || "undefined" != typeof a.getAttribute && a.getAttribute("class") || "")
  669. })
  670. },
  671. ATTR: function(a, b, c) {
  672. return function(d) {
  673. var e = ga.attr(d, a);
  674. return null == e ? "!=" === b : b ? (e += "",
  675. "=" === b ? e === c : "!=" === b ? e !== c : "^=" === b ? c && 0 === e.indexOf(c) : "*=" === b ? c && e.indexOf(c) > -1 : "$=" === b ? c && e.slice(-c.length) === c : "~=" === b ? (" " + e.replace(Q, " ") + " ").indexOf(c) > -1 : "|=" === b ? e === c || e.slice(0, c.length + 1) === c + "-" : !1) : !0
  676. }
  677. },
  678. CHILD: function(a, b, c, d, e) {
  679. var f = "nth" !== a.slice(0, 3)
  680. , g = "last" !== a.slice(-4)
  681. , h = "of-type" === b;
  682. return 1 === d && 0 === e ? function(a) {
  683. return !!a.parentNode
  684. }
  685. : function(b, c, i) {
  686. var j, k, l, m, n, o, p = f !== g ? "nextSibling" : "previousSibling", q = b.parentNode, r = h && b.nodeName.toLowerCase(), s = !i && !h;
  687. if (q) {
  688. if (f) {
  689. while (p) {
  690. l = b;
  691. while (l = l[p])
  692. if (h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType)
  693. return !1;
  694. o = p = "only" === a && !o && "nextSibling"
  695. }
  696. return !0
  697. }
  698. if (o = [g ? q.firstChild : q.lastChild],
  699. g && s) {
  700. k = q[u] || (q[u] = {}),
  701. j = k[a] || [],
  702. n = j[0] === w && j[1],
  703. m = j[0] === w && j[2],
  704. l = n && q.childNodes[n];
  705. while (l = ++n && l && l[p] || (m = n = 0) || o.pop())
  706. if (1 === l.nodeType && ++m && l === b) {
  707. k[a] = [w, n, m];
  708. break
  709. }
  710. } else if (s && (j = (b[u] || (b[u] = {}))[a]) && j[0] === w)
  711. m = j[1];
  712. else
  713. while (l = ++n && l && l[p] || (m = n = 0) || o.pop())
  714. if ((h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) && ++m && (s && ((l[u] || (l[u] = {}))[a] = [w, m]),
  715. l === b))
  716. break;
  717. return m -= e,
  718. m === d || m % d === 0 && m / d >= 0
  719. }
  720. }
  721. },
  722. PSEUDO: function(a, b) {
  723. var c, e = d.pseudos[a] || d.setFilters[a.toLowerCase()] || ga.error("unsupported pseudo: " + a);
  724. return e[u] ? e(b) : e.length > 1 ? (c = [a, a, "", b],
  725. d.setFilters.hasOwnProperty(a.toLowerCase()) ? ia(function(a, c) {
  726. var d, f = e(a, b), g = f.length;
  727. while (g--)
  728. d = J(a, f[g]),
  729. a[d] = !(c[d] = f[g])
  730. }) : function(a) {
  731. return e(a, 0, c)
  732. }
  733. ) : e
  734. }
  735. },
  736. pseudos: {
  737. not: ia(function(a) {
  738. var b = []
  739. , c = []
  740. , d = h(a.replace(R, "$1"));
  741. return d[u] ? ia(function(a, b, c, e) {
  742. var f, g = d(a, null, e, []), h = a.length;
  743. while (h--)
  744. (f = g[h]) && (a[h] = !(b[h] = f))
  745. }) : function(a, e, f) {
  746. return b[0] = a,
  747. d(b, null, f, c),
  748. b[0] = null,
  749. !c.pop()
  750. }
  751. }),
  752. has: ia(function(a) {
  753. return function(b) {
  754. return ga(a, b).length > 0
  755. }
  756. }),
  757. contains: ia(function(a) {
  758. return a = a.replace(ca, da),
  759. function(b) {
  760. return (b.textContent || b.innerText || e(b)).indexOf(a) > -1
  761. }
  762. }),
  763. lang: ia(function(a) {
  764. return W.test(a || "") || ga.error("unsupported lang: " + a),
  765. a = a.replace(ca, da).toLowerCase(),
  766. function(b) {
  767. var c;
  768. do
  769. if (c = p ? b.lang : b.getAttribute("xml:lang") || b.getAttribute("lang"))
  770. return c = c.toLowerCase(),
  771. c === a || 0 === c.indexOf(a + "-");
  772. while ((b = b.parentNode) && 1 === b.nodeType);
  773. return !1
  774. }
  775. }),
  776. target: function(b) {
  777. var c = a.location && a.location.hash;
  778. return c && c.slice(1) === b.id
  779. },
  780. root: function(a) {
  781. return a === o
  782. },
  783. focus: function(a) {
  784. return a === n.activeElement && (!n.hasFocus || n.hasFocus()) && !!(a.type || a.href || ~a.tabIndex)
  785. },
  786. enabled: function(a) {
  787. return a.disabled === !1
  788. },
  789. disabled: function(a) {
  790. return a.disabled === !0
  791. },
  792. checked: function(a) {
  793. var b = a.nodeName.toLowerCase();
  794. return "input" === b && !!a.checked || "option" === b && !!a.selected
  795. },
  796. selected: function(a) {
  797. return a.parentNode && a.parentNode.selectedIndex,
  798. a.selected === !0
  799. },
  800. empty: function(a) {
  801. for (a = a.firstChild; a; a = a.nextSibling)
  802. if (a.nodeType < 6)
  803. return !1;
  804. return !0
  805. },
  806. parent: function(a) {
  807. return !d.pseudos.empty(a)
  808. },
  809. header: function(a) {
  810. return Z.test(a.nodeName)
  811. },
  812. input: function(a) {
  813. return Y.test(a.nodeName)
  814. },
  815. button: function(a) {
  816. var b = a.nodeName.toLowerCase();
  817. return "input" === b && "button" === a.type || "button" === b
  818. },
  819. text: function(a) {
  820. var b;
  821. return "input" === a.nodeName.toLowerCase() && "text" === a.type && (null == (b = a.getAttribute("type")) || "text" === b.toLowerCase())
  822. },
  823. first: oa(function() {
  824. return [0]
  825. }),
  826. last: oa(function(a, b) {
  827. return [b - 1]
  828. }),
  829. eq: oa(function(a, b, c) {
  830. return [0 > c ? c + b : c]
  831. }),
  832. even: oa(function(a, b) {
  833. for (var c = 0; b > c; c += 2)
  834. a.push(c);
  835. return a
  836. }),
  837. odd: oa(function(a, b) {
  838. for (var c = 1; b > c; c += 2)
  839. a.push(c);
  840. return a
  841. }),
  842. lt: oa(function(a, b, c) {
  843. for (var d = 0 > c ? c + b : c; --d >= 0; )
  844. a.push(d);
  845. return a
  846. }),
  847. gt: oa(function(a, b, c) {
  848. for (var d = 0 > c ? c + b : c; ++d < b; )
  849. a.push(d);
  850. return a
  851. })
  852. }
  853. },
  854. d.pseudos.nth = d.pseudos.eq;
  855. for (b in {
  856. radio: !0,
  857. checkbox: !0,
  858. file: !0,
  859. password: !0,
  860. image: !0
  861. })
  862. d.pseudos[b] = ma(b);
  863. for (b in {
  864. submit: !0,
  865. reset: !0
  866. })
  867. d.pseudos[b] = na(b);
  868. function qa() {}
  869. qa.prototype = d.filters = d.pseudos,
  870. d.setFilters = new qa,
  871. g = ga.tokenize = function(a, b) {
  872. var c, e, f, g, h, i, j, k = z[a + " "];
  873. if (k)
  874. return b ? 0 : k.slice(0);
  875. h = a,
  876. i = [],
  877. j = d.preFilter;
  878. while (h) {
  879. (!c || (e = S.exec(h))) && (e && (h = h.slice(e[0].length) || h),
  880. i.push(f = [])),
  881. c = !1,
  882. (e = T.exec(h)) && (c = e.shift(),
  883. f.push({
  884. value: c,
  885. type: e[0].replace(R, " ")
  886. }),
  887. h = h.slice(c.length));
  888. for (g in d.filter)
  889. !(e = X[g].exec(h)) || j[g] && !(e = j[g](e)) || (c = e.shift(),
  890. f.push({
  891. value: c,
  892. type: g,
  893. matches: e
  894. }),
  895. h = h.slice(c.length));
  896. if (!c)
  897. break
  898. }
  899. return b ? h.length : h ? ga.error(a) : z(a, i).slice(0)
  900. }
  901. ;
  902. function ra(a) {
  903. for (var b = 0, c = a.length, d = ""; c > b; b++)
  904. d += a[b].value;
  905. return d
  906. }
  907. function sa(a, b, c) {
  908. var d = b.dir
  909. , e = c && "parentNode" === d
  910. , f = x++;
  911. return b.first ? function(b, c, f) {
  912. while (b = b[d])
  913. if (1 === b.nodeType || e)
  914. return a(b, c, f)
  915. }
  916. : function(b, c, g) {
  917. var h, i, j = [w, f];
  918. if (g) {
  919. while (b = b[d])
  920. if ((1 === b.nodeType || e) && a(b, c, g))
  921. return !0
  922. } else
  923. while (b = b[d])
  924. if (1 === b.nodeType || e) {
  925. if (i = b[u] || (b[u] = {}),
  926. (h = i[d]) && h[0] === w && h[1] === f)
  927. return j[2] = h[2];
  928. if (i[d] = j,
  929. j[2] = a(b, c, g))
  930. return !0
  931. }
  932. }
  933. }
  934. function ta(a) {
  935. return a.length > 1 ? function(b, c, d) {
  936. var e = a.length;
  937. while (e--)
  938. if (!a[e](b, c, d))
  939. return !1;
  940. return !0
  941. }
  942. : a[0]
  943. }
  944. function ua(a, b, c) {
  945. for (var d = 0, e = b.length; e > d; d++)
  946. ga(a, b[d], c);
  947. return c
  948. }
  949. function va(a, b, c, d, e) {
  950. for (var f, g = [], h = 0, i = a.length, j = null != b; i > h; h++)
  951. (f = a[h]) && (!c || c(f, d, e)) && (g.push(f),
  952. j && b.push(h));
  953. return g
  954. }
  955. function wa(a, b, c, d, e, f) {
  956. return d && !d[u] && (d = wa(d)),
  957. e && !e[u] && (e = wa(e, f)),
  958. ia(function(f, g, h, i) {
  959. var j, k, l, m = [], n = [], o = g.length, p = f || ua(b || "*", h.nodeType ? [h] : h, []), q = !a || !f && b ? p : va(p, m, a, h, i), r = c ? e || (f ? a : o || d) ? [] : g : q;
  960. if (c && c(q, r, h, i),
  961. d) {
  962. j = va(r, n),
  963. d(j, [], h, i),
  964. k = j.length;
  965. while (k--)
  966. (l = j[k]) && (r[n[k]] = !(q[n[k]] = l))
  967. }
  968. if (f) {
  969. if (e || a) {
  970. if (e) {
  971. j = [],
  972. k = r.length;
  973. while (k--)
  974. (l = r[k]) && j.push(q[k] = l);
  975. e(null, r = [], j, i)
  976. }
  977. k = r.length;
  978. while (k--)
  979. (l = r[k]) && (j = e ? J(f, l) : m[k]) > -1 && (f[j] = !(g[j] = l))
  980. }
  981. } else
  982. r = va(r === g ? r.splice(o, r.length) : r),
  983. e ? e(null, g, r, i) : H.apply(g, r)
  984. })
  985. }
  986. function xa(a) {
  987. for (var b, c, e, f = a.length, g = d.relative[a[0].type], h = g || d.relative[" "], i = g ? 1 : 0, k = sa(function(a) {
  988. return a === b
  989. }, h, !0), l = sa(function(a) {
  990. return J(b, a) > -1
  991. }, h, !0), m = [function(a, c, d) {
  992. var e = !g && (d || c !== j) || ((b = c).nodeType ? k(a, c, d) : l(a, c, d));
  993. return b = null,
  994. e
  995. }
  996. ]; f > i; i++)
  997. if (c = d.relative[a[i].type])
  998. m = [sa(ta(m), c)];
  999. else {
  1000. if (c = d.filter[a[i].type].apply(null, a[i].matches),
  1001. c[u]) {
  1002. for (e = ++i; f > e; e++)
  1003. if (d.relative[a[e].type])
  1004. break;
  1005. return wa(i > 1 && ta(m), i > 1 && ra(a.slice(0, i - 1).concat({
  1006. value: " " === a[i - 2].type ? "*" : ""
  1007. })).replace(R, "$1"), c, e > i && xa(a.slice(i, e)), f > e && xa(a = a.slice(e)), f > e && ra(a))
  1008. }
  1009. m.push(c)
  1010. }
  1011. return ta(m)
  1012. }
  1013. function ya(a, b) {
  1014. var c = b.length > 0
  1015. , e = a.length > 0
  1016. , f = function(f, g, h, i, k) {
  1017. var l, m, o, p = 0, q = "0", r = f && [], s = [], t = j, u = f || e && d.find.TAG("*", k), v = w += null == t ? 1 : Math.random() || .1, x = u.length;
  1018. for (k && (j = g !== n && g); q !== x && null != (l = u[q]); q++) {
  1019. if (e && l) {
  1020. m = 0;
  1021. while (o = a[m++])
  1022. if (o(l, g, h)) {
  1023. i.push(l);
  1024. break
  1025. }
  1026. k && (w = v)
  1027. }
  1028. c && ((l = !o && l) && p--,
  1029. f && r.push(l))
  1030. }
  1031. if (p += q,
  1032. c && q !== p) {
  1033. m = 0;
  1034. while (o = b[m++])
  1035. o(r, s, g, h);
  1036. if (f) {
  1037. if (p > 0)
  1038. while (q--)
  1039. r[q] || s[q] || (s[q] = F.call(i));
  1040. s = va(s)
  1041. }
  1042. H.apply(i, s),
  1043. k && !f && s.length > 0 && p + b.length > 1 && ga.uniqueSort(i)
  1044. }
  1045. return k && (w = v,
  1046. j = t),
  1047. r
  1048. };
  1049. return c ? ia(f) : f
  1050. }
  1051. return h = ga.compile = function(a, b) {
  1052. var c, d = [], e = [], f = A[a + " "];
  1053. if (!f) {
  1054. b || (b = g(a)),
  1055. c = b.length;
  1056. while (c--)
  1057. f = xa(b[c]),
  1058. f[u] ? d.push(f) : e.push(f);
  1059. f = A(a, ya(e, d)),
  1060. f.selector = a
  1061. }
  1062. return f
  1063. }
  1064. ,
  1065. i = ga.select = function(a, b, e, f) {
  1066. var i, j, k, l, m, n = "function" == typeof a && a, o = !f && g(a = n.selector || a);
  1067. if (e = e || [],
  1068. 1 === o.length) {
  1069. if (j = o[0] = o[0].slice(0),
  1070. j.length > 2 && "ID" === (k = j[0]).type && c.getById && 9 === b.nodeType && p && d.relative[j[1].type]) {
  1071. if (b = (d.find.ID(k.matches[0].replace(ca, da), b) || [])[0],
  1072. !b)
  1073. return e;
  1074. n && (b = b.parentNode),
  1075. a = a.slice(j.shift().value.length)
  1076. }
  1077. i = X.needsContext.test(a) ? 0 : j.length;
  1078. while (i--) {
  1079. if (k = j[i],
  1080. d.relative[l = k.type])
  1081. break;
  1082. if ((m = d.find[l]) && (f = m(k.matches[0].replace(ca, da), aa.test(j[0].type) && pa(b.parentNode) || b))) {
  1083. if (j.splice(i, 1),
  1084. a = f.length && ra(j),
  1085. !a)
  1086. return H.apply(e, f),
  1087. e;
  1088. break
  1089. }
  1090. }
  1091. }
  1092. return (n || h(a, o))(f, b, !p, e, aa.test(a) && pa(b.parentNode) || b),
  1093. e
  1094. }
  1095. ,
  1096. c.sortStable = u.split("").sort(B).join("") === u,
  1097. c.detectDuplicates = !!l,
  1098. m(),
  1099. c.sortDetached = ja(function(a) {
  1100. return 1 & a.compareDocumentPosition(n.createElement("div"))
  1101. }),
  1102. ja(function(a) {
  1103. return a.innerHTML = "<a href='#'></a>",
  1104. "#" === a.firstChild.getAttribute("href")
  1105. }) || ka("type|href|height|width", function(a, b, c) {
  1106. return c ? void 0 : a.getAttribute(b, "type" === b.toLowerCase() ? 1 : 2)
  1107. }),
  1108. c.attributes && ja(function(a) {
  1109. return a.innerHTML = "<input/>",
  1110. a.firstChild.setAttribute("value", ""),
  1111. "" === a.firstChild.getAttribute("value")
  1112. }) || ka("value", function(a, b, c) {
  1113. return c || "input" !== a.nodeName.toLowerCase() ? void 0 : a.defaultValue
  1114. }),
  1115. ja(function(a) {
  1116. return null == a.getAttribute("disabled")
  1117. }) || ka(K, function(a, b, c) {
  1118. var d;
  1119. return c ? void 0 : a[b] === !0 ? b.toLowerCase() : (d = a.getAttributeNode(b)) && d.specified ? d.value : null
  1120. }),
  1121. ga
  1122. }(a);
  1123. m.find = s,
  1124. m.expr = s.selectors,
  1125. m.expr[":"] = m.expr.pseudos,
  1126. m.unique = s.uniqueSort,
  1127. m.text = s.getText,
  1128. m.isXMLDoc = s.isXML,
  1129. m.contains = s.contains;
  1130. var t = m.expr.match.needsContext
  1131. , u = /^<(\w+)\s*\/?>(?:<\/\1>|)$/
  1132. , v = /^.[^:#\[\.,]*$/;
  1133. function w(a, b, c) {
  1134. if (m.isFunction(b))
  1135. return m.grep(a, function(a, d) {
  1136. return !!b.call(a, d, a) !== c
  1137. });
  1138. if (b.nodeType)
  1139. return m.grep(a, function(a) {
  1140. return a === b !== c
  1141. });
  1142. if ("string" == typeof b) {
  1143. if (v.test(b))
  1144. return m.filter(b, a, c);
  1145. b = m.filter(b, a)
  1146. }
  1147. return m.grep(a, function(a) {
  1148. return m.inArray(a, b) >= 0 !== c
  1149. })
  1150. }
  1151. m.filter = function(a, b, c) {
  1152. var d = b[0];
  1153. return c && (a = ":not(" + a + ")"),
  1154. 1 === b.length && 1 === d.nodeType ? m.find.matchesSelector(d, a) ? [d] : [] : m.find.matches(a, m.grep(b, function(a) {
  1155. return 1 === a.nodeType
  1156. }))
  1157. }
  1158. ,
  1159. m.fn.extend({
  1160. find: function(a) {
  1161. var b, c = [], d = this, e = d.length;
  1162. if ("string" != typeof a)
  1163. return this.pushStack(m(a).filter(function() {
  1164. for (b = 0; e > b; b++)
  1165. if (m.contains(d[b], this))
  1166. return !0
  1167. }));
  1168. for (b = 0; e > b; b++)
  1169. m.find(a, d[b], c);
  1170. return c = this.pushStack(e > 1 ? m.unique(c) : c),
  1171. c.selector = this.selector ? this.selector + " " + a : a,
  1172. c
  1173. },
  1174. filter: function(a) {
  1175. return this.pushStack(w(this, a || [], !1))
  1176. },
  1177. not: function(a) {
  1178. return this.pushStack(w(this, a || [], !0))
  1179. },
  1180. is: function(a) {
  1181. return !!w(this, "string" == typeof a && t.test(a) ? m(a) : a || [], !1).length
  1182. }
  1183. });
  1184. var x, y = a.document, z = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, A = m.fn.init = function(a, b) {
  1185. var c, d;
  1186. if (!a)
  1187. return this;
  1188. if ("string" == typeof a) {
  1189. if (c = "<" === a.charAt(0) && ">" === a.charAt(a.length - 1) && a.length >= 3 ? [null, a, null] : z.exec(a),
  1190. !c || !c[1] && b)
  1191. return !b || b.jquery ? (b || x).find(a) : this.constructor(b).find(a);
  1192. if (c[1]) {
  1193. if (b = b instanceof m ? b[0] : b,
  1194. m.merge(this, m.parseHTML(c[1], b && b.nodeType ? b.ownerDocument || b : y, !0)),
  1195. u.test(c[1]) && m.isPlainObject(b))
  1196. for (c in b)
  1197. m.isFunction(this[c]) ? this[c](b[c]) : this.attr(c, b[c]);
  1198. return this
  1199. }
  1200. if (d = y.getElementById(c[2]),
  1201. d && d.parentNode) {
  1202. if (d.id !== c[2])
  1203. return x.find(a);
  1204. this.length = 1,
  1205. this[0] = d
  1206. }
  1207. return this.context = y,
  1208. this.selector = a,
  1209. this
  1210. }
  1211. return a.nodeType ? (this.context = this[0] = a,
  1212. this.length = 1,
  1213. this) : m.isFunction(a) ? "undefined" != typeof x.ready ? x.ready(a) : a(m) : (void 0 !== a.selector && (this.selector = a.selector,
  1214. this.context = a.context),
  1215. m.makeArray(a, this))
  1216. }
  1217. ;
  1218. A.prototype = m.fn,
  1219. x = m(y);
  1220. var B = /^(?:parents|prev(?:Until|All))/
  1221. , C = {
  1222. children: !0,
  1223. contents: !0,
  1224. next: !0,
  1225. prev: !0
  1226. };
  1227. m.extend({
  1228. dir: function(a, b, c) {
  1229. var d = []
  1230. , e = a[b];
  1231. while (e && 9 !== e.nodeType && (void 0 === c || 1 !== e.nodeType || !m(e).is(c)))
  1232. 1 === e.nodeType && d.push(e),
  1233. e = e[b];
  1234. return d
  1235. },
  1236. sibling: function(a, b) {
  1237. for (var c = []; a; a = a.nextSibling)
  1238. 1 === a.nodeType && a !== b && c.push(a);
  1239. return c
  1240. }
  1241. }),
  1242. m.fn.extend({
  1243. has: function(a) {
  1244. var b, c = m(a, this), d = c.length;
  1245. return this.filter(function() {
  1246. for (b = 0; d > b; b++)
  1247. if (m.contains(this, c[b]))
  1248. return !0
  1249. })
  1250. },
  1251. closest: function(a, b) {
  1252. for (var c, d = 0, e = this.length, f = [], g = t.test(a) || "string" != typeof a ? m(a, b || this.context) : 0; e > d; d++)
  1253. for (c = this[d]; c && c !== b; c = c.parentNode)
  1254. if (c.nodeType < 11 && (g ? g.index(c) > -1 : 1 === c.nodeType && m.find.matchesSelector(c, a))) {
  1255. f.push(c);
  1256. break
  1257. }
  1258. return this.pushStack(f.length > 1 ? m.unique(f) : f)
  1259. },
  1260. index: function(a) {
  1261. return a ? "string" == typeof a ? m.inArray(this[0], m(a)) : m.inArray(a.jquery ? a[0] : a, this) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1
  1262. },
  1263. add: function(a, b) {
  1264. return this.pushStack(m.unique(m.merge(this.get(), m(a, b))))
  1265. },
  1266. addBack: function(a) {
  1267. return this.add(null == a ? this.prevObject : this.prevObject.filter(a))
  1268. }
  1269. });
  1270. function D(a, b) {
  1271. do
  1272. a = a[b];
  1273. while (a && 1 !== a.nodeType);
  1274. return a
  1275. }
  1276. m.each({
  1277. parent: function(a) {
  1278. var b = a.parentNode;
  1279. return b && 11 !== b.nodeType ? b : null
  1280. },
  1281. parents: function(a) {
  1282. return m.dir(a, "parentNode")
  1283. },
  1284. parentsUntil: function(a, b, c) {
  1285. return m.dir(a, "parentNode", c)
  1286. },
  1287. next: function(a) {
  1288. return D(a, "nextSibling")
  1289. },
  1290. prev: function(a) {
  1291. return D(a, "previousSibling")
  1292. },
  1293. nextAll: function(a) {
  1294. return m.dir(a, "nextSibling")
  1295. },
  1296. prevAll: function(a) {
  1297. return m.dir(a, "previousSibling")
  1298. },
  1299. nextUntil: function(a, b, c) {
  1300. return m.dir(a, "nextSibling", c)
  1301. },
  1302. prevUntil: function(a, b, c) {
  1303. return m.dir(a, "previousSibling", c)
  1304. },
  1305. siblings: function(a) {
  1306. return m.sibling((a.parentNode || {}).firstChild, a)
  1307. },
  1308. children: function(a) {
  1309. return m.sibling(a.firstChild)
  1310. },
  1311. contents: function(a) {
  1312. return m.nodeName(a, "iframe") ? a.contentDocument || a.contentWindow.document : m.merge([], a.childNodes)
  1313. }
  1314. }, function(a, b) {
  1315. m.fn[a] = function(c, d) {
  1316. var e = m.map(this, b, c);
  1317. return "Until" !== a.slice(-5) && (d = c),
  1318. d && "string" == typeof d && (e = m.filter(d, e)),
  1319. this.length > 1 && (C[a] || (e = m.unique(e)),
  1320. B.test(a) && (e = e.reverse())),
  1321. this.pushStack(e)
  1322. }
  1323. });
  1324. var E = /\S+/g
  1325. , F = {};
  1326. function G(a) {
  1327. var b = F[a] = {};
  1328. return m.each(a.match(E) || [], function(a, c) {
  1329. b[c] = !0
  1330. }),
  1331. b
  1332. }
  1333. m.Callbacks = function(a) {
  1334. a = "string" == typeof a ? F[a] || G(a) : m.extend({}, a);
  1335. var b, c, d, e, f, g, h = [], i = !a.once && [], j = function(l) {
  1336. for (c = a.memory && l,
  1337. d = !0,
  1338. f = g || 0,
  1339. g = 0,
  1340. e = h.length,
  1341. b = !0; h && e > f; f++)
  1342. if (h[f].apply(l[0], l[1]) === !1 && a.stopOnFalse) {
  1343. c = !1;
  1344. break
  1345. }
  1346. b = !1,
  1347. h && (i ? i.length && j(i.shift()) : c ? h = [] : k.disable())
  1348. }, k = {
  1349. add: function() {
  1350. if (h) {
  1351. var d = h.length;
  1352. !function f(b) {
  1353. m.each(b, function(b, c) {
  1354. var d = m.type(c);
  1355. "function" === d ? a.unique && k.has(c) || h.push(c) : c && c.length && "string" !== d && f(c)
  1356. })
  1357. }(arguments),
  1358. b ? e = h.length : c && (g = d,
  1359. j(c))
  1360. }
  1361. return this
  1362. },
  1363. remove: function() {
  1364. return h && m.each(arguments, function(a, c) {
  1365. var d;
  1366. while ((d = m.inArray(c, h, d)) > -1)
  1367. h.splice(d, 1),
  1368. b && (e >= d && e--,
  1369. f >= d && f--)
  1370. }),
  1371. this
  1372. },
  1373. has: function(a) {
  1374. return a ? m.inArray(a, h) > -1 : !(!h || !h.length)
  1375. },
  1376. empty: function() {
  1377. return h = [],
  1378. e = 0,
  1379. this
  1380. },
  1381. disable: function() {
  1382. return h = i = c = void 0,
  1383. this
  1384. },
  1385. disabled: function() {
  1386. return !h
  1387. },
  1388. lock: function() {
  1389. return i = void 0,
  1390. c || k.disable(),
  1391. this
  1392. },
  1393. locked: function() {
  1394. return !i
  1395. },
  1396. fireWith: function(a, c) {
  1397. return !h || d && !i || (c = c || [],
  1398. c = [a, c.slice ? c.slice() : c],
  1399. b ? i.push(c) : j(c)),
  1400. this
  1401. },
  1402. fire: function() {
  1403. return k.fireWith(this, arguments),
  1404. this
  1405. },
  1406. fired: function() {
  1407. return !!d
  1408. }
  1409. };
  1410. return k
  1411. }
  1412. ,
  1413. m.extend({
  1414. Deferred: function(a) {
  1415. var b = [["resolve", "done", m.Callbacks("once memory"), "resolved"], ["reject", "fail", m.Callbacks("once memory"), "rejected"], ["notify", "progress", m.Callbacks("memory")]]
  1416. , c = "pending"
  1417. , d = {
  1418. state: function() {
  1419. return c
  1420. },
  1421. always: function() {
  1422. return e.done(arguments).fail(arguments),
  1423. this
  1424. },
  1425. then: function() {
  1426. var a = arguments;
  1427. return m.Deferred(function(c) {
  1428. m.each(b, function(b, f) {
  1429. var g = m.isFunction(a[b]) && a[b];
  1430. e[f[1]](function() {
  1431. var a = g && g.apply(this, arguments);
  1432. a && m.isFunction(a.promise) ? a.promise().done(c.resolve).fail(c.reject).progress(c.notify) : c[f[0] + "With"](this === d ? c.promise() : this, g ? [a] : arguments)
  1433. })
  1434. }),
  1435. a = null
  1436. }).promise()
  1437. },
  1438. promise: function(a) {
  1439. return null != a ? m.extend(a, d) : d
  1440. }
  1441. }
  1442. , e = {};
  1443. return d.pipe = d.then,
  1444. m.each(b, function(a, f) {
  1445. var g = f[2]
  1446. , h = f[3];
  1447. d[f[1]] = g.add,
  1448. h && g.add(function() {
  1449. c = h
  1450. }, b[1 ^ a][2].disable, b[2][2].lock),
  1451. e[f[0]] = function() {
  1452. return e[f[0] + "With"](this === e ? d : this, arguments),
  1453. this
  1454. }
  1455. ,
  1456. e[f[0] + "With"] = g.fireWith
  1457. }),
  1458. d.promise(e),
  1459. a && a.call(e, e),
  1460. e
  1461. },
  1462. when: function(a) {
  1463. var b = 0, c = d.call(arguments), e = c.length, f = 1 !== e || a && m.isFunction(a.promise) ? e : 0, g = 1 === f ? a : m.Deferred(), h = function(a, b, c) {
  1464. return function(e) {
  1465. b[a] = this,
  1466. c[a] = arguments.length > 1 ? d.call(arguments) : e,
  1467. c === i ? g.notifyWith(b, c) : --f || g.resolveWith(b, c)
  1468. }
  1469. }, i, j, k;
  1470. if (e > 1)
  1471. for (i = new Array(e),
  1472. j = new Array(e),
  1473. k = new Array(e); e > b; b++)
  1474. c[b] && m.isFunction(c[b].promise) ? c[b].promise().done(h(b, k, c)).fail(g.reject).progress(h(b, j, i)) : --f;
  1475. return f || g.resolveWith(k, c),
  1476. g.promise()
  1477. }
  1478. });
  1479. var H;
  1480. m.fn.ready = function(a) {
  1481. return m.ready.promise().done(a),
  1482. this
  1483. }
  1484. ,
  1485. m.extend({
  1486. isReady: !1,
  1487. readyWait: 1,
  1488. holdReady: function(a) {
  1489. a ? m.readyWait++ : m.ready(!0)
  1490. },
  1491. ready: function(a) {
  1492. if (a === !0 ? !--m.readyWait : !m.isReady) {
  1493. if (!y.body)
  1494. return setTimeout(m.ready);
  1495. m.isReady = !0,
  1496. a !== !0 && --m.readyWait > 0 || (H.resolveWith(y, [m]),
  1497. m.fn.triggerHandler && (m(y).triggerHandler("ready"),
  1498. m(y).off("ready")))
  1499. }
  1500. }
  1501. });
  1502. function I() {
  1503. y.addEventListener ? (y.removeEventListener("DOMContentLoaded", J, !1),
  1504. a.removeEventListener("load", J, !1)) : (y.detachEvent("onreadystatechange", J),
  1505. a.detachEvent("onload", J))
  1506. }
  1507. function J() {
  1508. (y.addEventListener || "load" === event.type || "complete" === y.readyState) && (I(),
  1509. m.ready())
  1510. }
  1511. m.ready.promise = function(b) {
  1512. if (!H)
  1513. if (H = m.Deferred(),
  1514. "complete" === y.readyState)
  1515. setTimeout(m.ready);
  1516. else if (y.addEventListener)
  1517. y.addEventListener("DOMContentLoaded", J, !1),
  1518. a.addEventListener("load", J, !1);
  1519. else {
  1520. y.attachEvent("onreadystatechange", J),
  1521. a.attachEvent("onload", J);
  1522. var c = !1;
  1523. try {
  1524. c = null == a.frameElement && y.documentElement
  1525. } catch (d) {}
  1526. c && c.doScroll && !function e() {
  1527. if (!m.isReady) {
  1528. try {
  1529. c.doScroll("left")
  1530. } catch (a) {
  1531. return setTimeout(e, 50)
  1532. }
  1533. I(),
  1534. m.ready()
  1535. }
  1536. }()
  1537. }
  1538. return H.promise(b)
  1539. }
  1540. ;
  1541. var K = "undefined", L;
  1542. for (L in m(k))
  1543. break;
  1544. k.ownLast = "0" !== L,
  1545. k.inlineBlockNeedsLayout = !1,
  1546. m(function() {
  1547. var a, b, c, d;
  1548. c = y.getElementsByTagName("body")[0],
  1549. c && c.style && (b = y.createElement("div"),
  1550. d = y.createElement("div"),
  1551. d.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px",
  1552. c.appendChild(d).appendChild(b),
  1553. typeof b.style.zoom !== K && (b.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",
  1554. k.inlineBlockNeedsLayout = a = 3 === b.offsetWidth,
  1555. a && (c.style.zoom = 1)),
  1556. c.removeChild(d))
  1557. }),
  1558. function() {
  1559. var a = y.createElement("div");
  1560. if (null == k.deleteExpando) {
  1561. k.deleteExpando = !0;
  1562. try {
  1563. delete a.test
  1564. } catch (b) {
  1565. k.deleteExpando = !1
  1566. }
  1567. }
  1568. a = null
  1569. }(),
  1570. m.acceptData = function(a) {
  1571. var b = m.noData[(a.nodeName + " ").toLowerCase()]
  1572. , c = +a.nodeType || 1;
  1573. return 1 !== c && 9 !== c ? !1 : !b || b !== !0 && a.getAttribute("classid") === b
  1574. }
  1575. ;
  1576. var M = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/
  1577. , N = /([A-Z])/g;
  1578. function O(a, b, c) {
  1579. if (void 0 === c && 1 === a.nodeType) {
  1580. var d = "data-" + b.replace(N, "-$1").toLowerCase();
  1581. if (c = a.getAttribute(d),
  1582. "string" == typeof c) {
  1583. try {
  1584. c = "true" === c ? !0 : "false" === c ? !1 : "null" === c ? null : +c + "" === c ? +c : M.test(c) ? m.parseJSON(c) : c
  1585. } catch (e) {}
  1586. m.data(a, b, c)
  1587. } else
  1588. c = void 0
  1589. }
  1590. return c
  1591. }
  1592. function P(a) {
  1593. var b;
  1594. for (b in a)
  1595. if (("data" !== b || !m.isEmptyObject(a[b])) && "toJSON" !== b)
  1596. return !1;
  1597. return !0
  1598. }
  1599. function Q(a, b, d, e) {
  1600. if (m.acceptData(a)) {
  1601. var f, g, h = m.expando, i = a.nodeType, j = i ? m.cache : a, k = i ? a[h] : a[h] && h;
  1602. if (k && j[k] && (e || j[k].data) || void 0 !== d || "string" != typeof b)
  1603. return k || (k = i ? a[h] = c.pop() || m.guid++ : h),
  1604. j[k] || (j[k] = i ? {} : {
  1605. toJSON: m.noop
  1606. }),
  1607. ("object" == typeof b || "function" == typeof b) && (e ? j[k] = m.extend(j[k], b) : j[k].data = m.extend(j[k].data, b)),
  1608. g = j[k],
  1609. e || (g.data || (g.data = {}),
  1610. g = g.data),
  1611. void 0 !== d && (g[m.camelCase(b)] = d),
  1612. "string" == typeof b ? (f = g[b],
  1613. null == f && (f = g[m.camelCase(b)])) : f = g,
  1614. f
  1615. }
  1616. }
  1617. function R(a, b, c) {
  1618. if (m.acceptData(a)) {
  1619. var d, e, f = a.nodeType, g = f ? m.cache : a, h = f ? a[m.expando] : m.expando;
  1620. if (g[h]) {
  1621. if (b && (d = c ? g[h] : g[h].data)) {
  1622. m.isArray(b) ? b = b.concat(m.map(b, m.camelCase)) : b in d ? b = [b] : (b = m.camelCase(b),
  1623. b = b in d ? [b] : b.split(" ")),
  1624. e = b.length;
  1625. while (e--)
  1626. delete d[b[e]];
  1627. if (c ? !P(d) : !m.isEmptyObject(d))
  1628. return
  1629. }
  1630. (c || (delete g[h].data,
  1631. P(g[h]))) && (f ? m.cleanData([a], !0) : k.deleteExpando || g != g.window ? delete g[h] : g[h] = null)
  1632. }
  1633. }
  1634. }
  1635. m.extend({
  1636. cache: {},
  1637. noData: {
  1638. "applet ": !0,
  1639. "embed ": !0,
  1640. "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  1641. },
  1642. hasData: function(a) {
  1643. return a = a.nodeType ? m.cache[a[m.expando]] : a[m.expando],
  1644. !!a && !P(a)
  1645. },
  1646. data: function(a, b, c) {
  1647. return Q(a, b, c)
  1648. },
  1649. removeData: function(a, b) {
  1650. return R(a, b)
  1651. },
  1652. _data: function(a, b, c) {
  1653. return Q(a, b, c, !0)
  1654. },
  1655. _removeData: function(a, b) {
  1656. return R(a, b, !0)
  1657. }
  1658. }),
  1659. m.fn.extend({
  1660. data: function(a, b) {
  1661. var c, d, e, f = this[0], g = f && f.attributes;
  1662. if (void 0 === a) {
  1663. if (this.length && (e = m.data(f),
  1664. 1 === f.nodeType && !m._data(f, "parsedAttrs"))) {
  1665. c = g.length;
  1666. while (c--)
  1667. g[c] && (d = g[c].name,
  1668. 0 === d.indexOf("data-") && (d = m.camelCase(d.slice(5)),
  1669. O(f, d, e[d])));
  1670. m._data(f, "parsedAttrs", !0)
  1671. }
  1672. return e
  1673. }
  1674. return "object" == typeof a ? this.each(function() {
  1675. m.data(this, a)
  1676. }) : arguments.length > 1 ? this.each(function() {
  1677. m.data(this, a, b)
  1678. }) : f ? O(f, a, m.data(f, a)) : void 0
  1679. },
  1680. removeData: function(a) {
  1681. return this.each(function() {
  1682. m.removeData(this, a)
  1683. })
  1684. }
  1685. }),
  1686. m.extend({
  1687. queue: function(a, b, c) {
  1688. var d;
  1689. return a ? (b = (b || "fx") + "queue",
  1690. d = m._data(a, b),
  1691. c && (!d || m.isArray(c) ? d = m._data(a, b, m.makeArray(c)) : d.push(c)),
  1692. d || []) : void 0
  1693. },
  1694. dequeue: function(a, b) {
  1695. b = b || "fx";
  1696. var c = m.queue(a, b)
  1697. , d = c.length
  1698. , e = c.shift()
  1699. , f = m._queueHooks(a, b)
  1700. , g = function() {
  1701. m.dequeue(a, b)
  1702. };
  1703. "inprogress" === e && (e = c.shift(),
  1704. d--),
  1705. e && ("fx" === b && c.unshift("inprogress"),
  1706. delete f.stop,
  1707. e.call(a, g, f)),
  1708. !d && f && f.empty.fire()
  1709. },
  1710. _queueHooks: function(a, b) {
  1711. var c = b + "queueHooks";
  1712. return m._data(a, c) || m._data(a, c, {
  1713. empty: m.Callbacks("once memory").add(function() {
  1714. m._removeData(a, b + "queue"),
  1715. m._removeData(a, c)
  1716. })
  1717. })
  1718. }
  1719. }),
  1720. m.fn.extend({
  1721. queue: function(a, b) {
  1722. var c = 2;
  1723. return "string" != typeof a && (b = a,
  1724. a = "fx",
  1725. c--),
  1726. arguments.length < c ? m.queue(this[0], a) : void 0 === b ? this : this.each(function() {
  1727. var c = m.queue(this, a, b);
  1728. m._queueHooks(this, a),
  1729. "fx" === a && "inprogress" !== c[0] && m.dequeue(this, a)
  1730. })
  1731. },
  1732. dequeue: function(a) {
  1733. return this.each(function() {
  1734. m.dequeue(this, a)
  1735. })
  1736. },
  1737. clearQueue: function(a) {
  1738. return this.queue(a || "fx", [])
  1739. },
  1740. promise: function(a, b) {
  1741. var c, d = 1, e = m.Deferred(), f = this, g = this.length, h = function() {
  1742. --d || e.resolveWith(f, [f])
  1743. };
  1744. "string" != typeof a && (b = a,
  1745. a = void 0),
  1746. a = a || "fx";
  1747. while (g--)
  1748. c = m._data(f[g], a + "queueHooks"),
  1749. c && c.empty && (d++,
  1750. c.empty.add(h));
  1751. return h(),
  1752. e.promise(b)
  1753. }
  1754. });
  1755. var S = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source
  1756. , T = ["Top", "Right", "Bottom", "Left"]
  1757. , U = function(a, b) {
  1758. return a = b || a,
  1759. "none" === m.css(a, "display") || !m.contains(a.ownerDocument, a)
  1760. }
  1761. , V = m.access = function(a, b, c, d, e, f, g) {
  1762. var h = 0
  1763. , i = a.length
  1764. , j = null == c;
  1765. if ("object" === m.type(c)) {
  1766. e = !0;
  1767. for (h in c)
  1768. m.access(a, b, h, c[h], !0, f, g)
  1769. } else if (void 0 !== d && (e = !0,
  1770. m.isFunction(d) || (g = !0),
  1771. j && (g ? (b.call(a, d),
  1772. b = null) : (j = b,
  1773. b = function(a, b, c) {
  1774. return j.call(m(a), c)
  1775. }
  1776. )),
  1777. b))
  1778. for (; i > h; h++)
  1779. b(a[h], c, g ? d : d.call(a[h], h, b(a[h], c)));
  1780. return e ? a : j ? b.call(a) : i ? b(a[0], c) : f
  1781. }
  1782. , W = /^(?:checkbox|radio)$/i;
  1783. !function() {
  1784. var a = y.createElement("input")
  1785. , b = y.createElement("div")
  1786. , c = y.createDocumentFragment();
  1787. if (b.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",
  1788. k.leadingWhitespace = 3 === b.firstChild.nodeType,
  1789. k.tbody = !b.getElementsByTagName("tbody").length,
  1790. k.htmlSerialize = !!b.getElementsByTagName("link").length,
  1791. k.html5Clone = "<:nav></:nav>" !== y.createElement("nav").cloneNode(!0).outerHTML,
  1792. a.type = "checkbox",
  1793. a.checked = !0,
  1794. c.appendChild(a),
  1795. k.appendChecked = a.checked,
  1796. b.innerHTML = "<textarea>x</textarea>",
  1797. k.noCloneChecked = !!b.cloneNode(!0).lastChild.defaultValue,
  1798. c.appendChild(b),
  1799. b.innerHTML = "<input type='radio' checked='checked' name='t'/>",
  1800. k.checkClone = b.cloneNode(!0).cloneNode(!0).lastChild.checked,
  1801. k.noCloneEvent = !0,
  1802. b.attachEvent && (b.attachEvent("onclick", function() {
  1803. k.noCloneEvent = !1
  1804. }),
  1805. b.cloneNode(!0).click()),
  1806. null == k.deleteExpando) {
  1807. k.deleteExpando = !0;
  1808. try {
  1809. delete b.test
  1810. } catch (d) {
  1811. k.deleteExpando = !1
  1812. }
  1813. }
  1814. }(),
  1815. function() {
  1816. var b, c, d = y.createElement("div");
  1817. for (b in {
  1818. submit: !0,
  1819. change: !0,
  1820. focusin: !0
  1821. })
  1822. c = "on" + b,
  1823. (k[b + "Bubbles"] = c in a) || (d.setAttribute(c, "t"),
  1824. k[b + "Bubbles"] = d.attributes[c].expando === !1);
  1825. d = null
  1826. }();
  1827. var X = /^(?:input|select|textarea)$/i
  1828. , Y = /^key/
  1829. , Z = /^(?:mouse|pointer|contextmenu)|click/
  1830. , $ = /^(?:focusinfocus|focusoutblur)$/
  1831. , _ = /^([^.]*)(?:\.(.+)|)$/;
  1832. function aa() {
  1833. return !0
  1834. }
  1835. function ba() {
  1836. return !1
  1837. }
  1838. function ca() {
  1839. try {
  1840. return y.activeElement
  1841. } catch (a) {}
  1842. }
  1843. m.event = {
  1844. global: {},
  1845. add: function(a, b, c, d, e) {
  1846. var f, g, h, i, j, k, l, n, o, p, q, r = m._data(a);
  1847. if (r) {
  1848. c.handler && (i = c,
  1849. c = i.handler,
  1850. e = i.selector),
  1851. c.guid || (c.guid = m.guid++),
  1852. (g = r.events) || (g = r.events = {}),
  1853. (k = r.handle) || (k = r.handle = function(a) {
  1854. return typeof m === K || a && m.event.triggered === a.type ? void 0 : m.event.dispatch.apply(k.elem, arguments)
  1855. }
  1856. ,
  1857. k.elem = a),
  1858. b = (b || "").match(E) || [""],
  1859. h = b.length;
  1860. while (h--)
  1861. f = _.exec(b[h]) || [],
  1862. o = q = f[1],
  1863. p = (f[2] || "").split(".").sort(),
  1864. o && (j = m.event.special[o] || {},
  1865. o = (e ? j.delegateType : j.bindType) || o,
  1866. j = m.event.special[o] || {},
  1867. l = m.extend({
  1868. type: o,
  1869. origType: q,
  1870. data: d,
  1871. handler: c,
  1872. guid: c.guid,
  1873. selector: e,
  1874. needsContext: e && m.expr.match.needsContext.test(e),
  1875. namespace: p.join(".")
  1876. }, i),
  1877. (n = g[o]) || (n = g[o] = [],
  1878. n.delegateCount = 0,
  1879. j.setup && j.setup.call(a, d, p, k) !== !1 || (a.addEventListener ? a.addEventListener(o, k, !1) : a.attachEvent && a.attachEvent("on" + o, k))),
  1880. j.add && (j.add.call(a, l),
  1881. l.handler.guid || (l.handler.guid = c.guid)),
  1882. e ? n.splice(n.delegateCount++, 0, l) : n.push(l),
  1883. m.event.global[o] = !0);
  1884. a = null
  1885. }
  1886. },
  1887. remove: function(a, b, c, d, e) {
  1888. var f, g, h, i, j, k, l, n, o, p, q, r = m.hasData(a) && m._data(a);
  1889. if (r && (k = r.events)) {
  1890. b = (b || "").match(E) || [""],
  1891. j = b.length;
  1892. while (j--)
  1893. if (h = _.exec(b[j]) || [],
  1894. o = q = h[1],
  1895. p = (h[2] || "").split(".").sort(),
  1896. o) {
  1897. l = m.event.special[o] || {},
  1898. o = (d ? l.delegateType : l.bindType) || o,
  1899. n = k[o] || [],
  1900. h = h[2] && new RegExp("(^|\\.)" + p.join("\\.(?:.*\\.|)") + "(\\.|$)"),
  1901. i = f = n.length;
  1902. while (f--)
  1903. g = n[f],
  1904. !e && q !== g.origType || c && c.guid !== g.guid || h && !h.test(g.namespace) || d && d !== g.selector && ("**" !== d || !g.selector) || (n.splice(f, 1),
  1905. g.selector && n.delegateCount--,
  1906. l.remove && l.remove.call(a, g));
  1907. i && !n.length && (l.teardown && l.teardown.call(a, p, r.handle) !== !1 || m.removeEvent(a, o, r.handle),
  1908. delete k[o])
  1909. } else
  1910. for (o in k)
  1911. m.event.remove(a, o + b[j], c, d, !0);
  1912. m.isEmptyObject(k) && (delete r.handle,
  1913. m._removeData(a, "events"))
  1914. }
  1915. },
  1916. trigger: function(b, c, d, e) {
  1917. var f, g, h, i, k, l, n, o = [d || y], p = j.call(b, "type") ? b.type : b, q = j.call(b, "namespace") ? b.namespace.split(".") : [];
  1918. if (h = l = d = d || y,
  1919. 3 !== d.nodeType && 8 !== d.nodeType && !$.test(p + m.event.triggered) && (p.indexOf(".") >= 0 && (q = p.split("."),
  1920. p = q.shift(),
  1921. q.sort()),
  1922. g = p.indexOf(":") < 0 && "on" + p,
  1923. b = b[m.expando] ? b : new m.Event(p,"object" == typeof b && b),
  1924. b.isTrigger = e ? 2 : 3,
  1925. b.namespace = q.join("."),
  1926. b.namespace_re = b.namespace ? new RegExp("(^|\\.)" + q.join("\\.(?:.*\\.|)") + "(\\.|$)") : null,
  1927. b.result = void 0,
  1928. b.target || (b.target = d),
  1929. c = null == c ? [b] : m.makeArray(c, [b]),
  1930. k = m.event.special[p] || {},
  1931. e || !k.trigger || k.trigger.apply(d, c) !== !1)) {
  1932. if (!e && !k.noBubble && !m.isWindow(d)) {
  1933. for (i = k.delegateType || p,
  1934. $.test(i + p) || (h = h.parentNode); h; h = h.parentNode)
  1935. o.push(h),
  1936. l = h;
  1937. l === (d.ownerDocument || y) && o.push(l.defaultView || l.parentWindow || a)
  1938. }
  1939. n = 0;
  1940. while ((h = o[n++]) && !b.isPropagationStopped())
  1941. b.type = n > 1 ? i : k.bindType || p,
  1942. f = (m._data(h, "events") || {})[b.type] && m._data(h, "handle"),
  1943. f && f.apply(h, c),
  1944. f = g && h[g],
  1945. f && f.apply && m.acceptData(h) && (b.result = f.apply(h, c),
  1946. b.result === !1 && b.preventDefault());
  1947. if (b.type = p,
  1948. !e && !b.isDefaultPrevented() && (!k._default || k._default.apply(o.pop(), c) === !1) && m.acceptData(d) && g && d[p] && !m.isWindow(d)) {
  1949. l = d[g],
  1950. l && (d[g] = null),
  1951. m.event.triggered = p;
  1952. try {
  1953. d[p]()
  1954. } catch (r) {}
  1955. m.event.triggered = void 0,
  1956. l && (d[g] = l)
  1957. }
  1958. return b.result
  1959. }
  1960. },
  1961. dispatch: function(a) {
  1962. a = m.event.fix(a);
  1963. var b, c, e, f, g, h = [], i = d.call(arguments), j = (m._data(this, "events") || {})[a.type] || [], k = m.event.special[a.type] || {};
  1964. if (i[0] = a,
  1965. a.delegateTarget = this,
  1966. !k.preDispatch || k.preDispatch.call(this, a) !== !1) {
  1967. h = m.event.handlers.call(this, a, j),
  1968. b = 0;
  1969. while ((f = h[b++]) && !a.isPropagationStopped()) {
  1970. a.currentTarget = f.elem,
  1971. g = 0;
  1972. while ((e = f.handlers[g++]) && !a.isImmediatePropagationStopped())
  1973. (!a.namespace_re || a.namespace_re.test(e.namespace)) && (a.handleObj = e,
  1974. a.data = e.data,
  1975. c = ((m.event.special[e.origType] || {}).handle || e.handler).apply(f.elem, i),
  1976. void 0 !== c && (a.result = c) === !1 && (a.preventDefault(),
  1977. a.stopPropagation()))
  1978. }
  1979. return k.postDispatch && k.postDispatch.call(this, a),
  1980. a.result
  1981. }
  1982. },
  1983. handlers: function(a, b) {
  1984. var c, d, e, f, g = [], h = b.delegateCount, i = a.target;
  1985. if (h && i.nodeType && (!a.button || "click" !== a.type))
  1986. for (; i != this; i = i.parentNode || this)
  1987. if (1 === i.nodeType && (i.disabled !== !0 || "click" !== a.type)) {
  1988. for (e = [],
  1989. f = 0; h > f; f++)
  1990. d = b[f],
  1991. c = d.selector + " ",
  1992. void 0 === e[c] && (e[c] = d.needsContext ? m(c, this).index(i) >= 0 : m.find(c, this, null, [i]).length),
  1993. e[c] && e.push(d);
  1994. e.length && g.push({
  1995. elem: i,
  1996. handlers: e
  1997. })
  1998. }
  1999. return h < b.length && g.push({
  2000. elem: this,
  2001. handlers: b.slice(h)
  2002. }),
  2003. g
  2004. },
  2005. fix: function(a) {
  2006. if (a[m.expando])
  2007. return a;
  2008. var b, c, d, e = a.type, f = a, g = this.fixHooks[e];
  2009. g || (this.fixHooks[e] = g = Z.test(e) ? this.mouseHooks : Y.test(e) ? this.keyHooks : {}),
  2010. d = g.props ? this.props.concat(g.props) : this.props,
  2011. a = new m.Event(f),
  2012. b = d.length;
  2013. while (b--)
  2014. c = d[b],
  2015. a[c] = f[c];
  2016. return a.target || (a.target = f.srcElement || y),
  2017. 3 === a.target.nodeType && (a.target = a.target.parentNode),
  2018. a.metaKey = !!a.metaKey,
  2019. g.filter ? g.filter(a, f) : a
  2020. },
  2021. props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
  2022. fixHooks: {},
  2023. keyHooks: {
  2024. props: "char charCode key keyCode".split(" "),
  2025. filter: function(a, b) {
  2026. return null == a.which && (a.which = null != b.charCode ? b.charCode : b.keyCode),
  2027. a
  2028. }
  2029. },
  2030. mouseHooks: {
  2031. props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
  2032. filter: function(a, b) {
  2033. var c, d, e, f = b.button, g = b.fromElement;
  2034. return null == a.pageX && null != b.clientX && (d = a.target.ownerDocument || y,
  2035. e = d.documentElement,
  2036. c = d.body,
  2037. a.pageX = b.clientX + (e && e.scrollLeft || c && c.scrollLeft || 0) - (e && e.clientLeft || c && c.clientLeft || 0),
  2038. a.pageY = b.clientY + (e && e.scrollTop || c && c.scrollTop || 0) - (e && e.clientTop || c && c.clientTop || 0)),
  2039. !a.relatedTarget && g && (a.relatedTarget = g === a.target ? b.toElement : g),
  2040. a.which || void 0 === f || (a.which = 1 & f ? 1 : 2 & f ? 3 : 4 & f ? 2 : 0),
  2041. a
  2042. }
  2043. },
  2044. special: {
  2045. load: {
  2046. noBubble: !0
  2047. },
  2048. focus: {
  2049. trigger: function() {
  2050. if (this !== ca() && this.focus)
  2051. try {
  2052. return this.focus(),
  2053. !1
  2054. } catch (a) {}
  2055. },
  2056. delegateType: "focusin"
  2057. },
  2058. blur: {
  2059. trigger: function() {
  2060. return this === ca() && this.blur ? (this.blur(),
  2061. !1) : void 0
  2062. },
  2063. delegateType: "focusout"
  2064. },
  2065. click: {
  2066. trigger: function() {
  2067. return m.nodeName(this, "input") && "checkbox" === this.type && this.click ? (this.click(),
  2068. !1) : void 0
  2069. },
  2070. _default: function(a) {
  2071. return m.nodeName(a.target, "a")
  2072. }
  2073. },
  2074. beforeunload: {
  2075. postDispatch: function(a) {
  2076. void 0 !== a.result && a.originalEvent && (a.originalEvent.returnValue = a.result)
  2077. }
  2078. }
  2079. },
  2080. simulate: function(a, b, c, d) {
  2081. var e = m.extend(new m.Event, c, {
  2082. type: a,
  2083. isSimulated: !0,
  2084. originalEvent: {}
  2085. });
  2086. d ? m.event.trigger(e, null, b) : m.event.dispatch.call(b, e),
  2087. e.isDefaultPrevented() && c.preventDefault()
  2088. }
  2089. },
  2090. m.removeEvent = y.removeEventListener ? function(a, b, c) {
  2091. a.removeEventListener && a.removeEventListener(b, c, !1)
  2092. }
  2093. : function(a, b, c) {
  2094. var d = "on" + b;
  2095. a.detachEvent && (typeof a[d] === K && (a[d] = null),
  2096. a.detachEvent(d, c))
  2097. }
  2098. ,
  2099. m.Event = function(a, b) {
  2100. return this instanceof m.Event ? (a && a.type ? (this.originalEvent = a,
  2101. this.type = a.type,
  2102. this.isDefaultPrevented = a.defaultPrevented || void 0 === a.defaultPrevented && a.returnValue === !1 ? aa : ba) : this.type = a,
  2103. b && m.extend(this, b),
  2104. this.timeStamp = a && a.timeStamp || m.now(),
  2105. void (this[m.expando] = !0)) : new m.Event(a,b)
  2106. }
  2107. ,
  2108. m.Event.prototype = {
  2109. isDefaultPrevented: ba,
  2110. isPropagationStopped: ba,
  2111. isImmediatePropagationStopped: ba,
  2112. preventDefault: function() {
  2113. var a = this.originalEvent;
  2114. this.isDefaultPrevented = aa,
  2115. a && (a.preventDefault ? a.preventDefault() : a.returnValue = !1)
  2116. },
  2117. stopPropagation: function() {
  2118. var a = this.originalEvent;
  2119. this.isPropagationStopped = aa,
  2120. a && (a.stopPropagation && a.stopPropagation(),
  2121. a.cancelBubble = !0)
  2122. },
  2123. stopImmediatePropagation: function() {
  2124. var a = this.originalEvent;
  2125. this.isImmediatePropagationStopped = aa,
  2126. a && a.stopImmediatePropagation && a.stopImmediatePropagation(),
  2127. this.stopPropagation()
  2128. }
  2129. },
  2130. m.each({
  2131. mouseenter: "mouseover",
  2132. mouseleave: "mouseout",
  2133. pointerenter: "pointerover",
  2134. pointerleave: "pointerout"
  2135. }, function(a, b) {
  2136. m.event.special[a] = {
  2137. delegateType: b,
  2138. bindType: b,
  2139. handle: function(a) {
  2140. var c, d = this, e = a.relatedTarget, f = a.handleObj;
  2141. return (!e || e !== d && !m.contains(d, e)) && (a.type = f.origType,
  2142. c = f.handler.apply(this, arguments),
  2143. a.type = b),
  2144. c
  2145. }
  2146. }
  2147. }),
  2148. k.submitBubbles || (m.event.special.submit = {
  2149. setup: function() {
  2150. return m.nodeName(this, "form") ? !1 : void m.event.add(this, "click._submit keypress._submit", function(a) {
  2151. var b = a.target
  2152. , c = m.nodeName(b, "input") || m.nodeName(b, "button") ? b.form : void 0;
  2153. c && !m._data(c, "submitBubbles") && (m.event.add(c, "submit._submit", function(a) {
  2154. a._submit_bubble = !0
  2155. }),
  2156. m._data(c, "submitBubbles", !0))
  2157. })
  2158. },
  2159. postDispatch: function(a) {
  2160. a._submit_bubble && (delete a._submit_bubble,
  2161. this.parentNode && !a.isTrigger && m.event.simulate("submit", this.parentNode, a, !0))
  2162. },
  2163. teardown: function() {
  2164. return m.nodeName(this, "form") ? !1 : void m.event.remove(this, "._submit")
  2165. }
  2166. }),
  2167. k.changeBubbles || (m.event.special.change = {
  2168. setup: function() {
  2169. return X.test(this.nodeName) ? (("checkbox" === this.type || "radio" === this.type) && (m.event.add(this, "propertychange._change", function(a) {
  2170. "checked" === a.originalEvent.propertyName && (this._just_changed = !0)
  2171. }),
  2172. m.event.add(this, "click._change", function(a) {
  2173. this._just_changed && !a.isTrigger && (this._just_changed = !1),
  2174. m.event.simulate("change", this, a, !0)
  2175. })),
  2176. !1) : void m.event.add(this, "beforeactivate._change", function(a) {
  2177. var b = a.target;
  2178. X.test(b.nodeName) && !m._data(b, "changeBubbles") && (m.event.add(b, "change._change", function(a) {
  2179. !this.parentNode || a.isSimulated || a.isTrigger || m.event.simulate("change", this.parentNode, a, !0)
  2180. }),
  2181. m._data(b, "changeBubbles", !0))
  2182. })
  2183. },
  2184. handle: function(a) {
  2185. var b = a.target;
  2186. return this !== b || a.isSimulated || a.isTrigger || "radio" !== b.type && "checkbox" !== b.type ? a.handleObj.handler.apply(this, arguments) : void 0
  2187. },
  2188. teardown: function() {
  2189. return m.event.remove(this, "._change"),
  2190. !X.test(this.nodeName)
  2191. }
  2192. }),
  2193. k.focusinBubbles || m.each({
  2194. focus: "focusin",
  2195. blur: "focusout"
  2196. }, function(a, b) {
  2197. var c = function(a) {
  2198. m.event.simulate(b, a.target, m.event.fix(a), !0)
  2199. };
  2200. m.event.special[b] = {
  2201. setup: function() {
  2202. var d = this.ownerDocument || this
  2203. , e = m._data(d, b);
  2204. e || d.addEventListener(a, c, !0),
  2205. m._data(d, b, (e || 0) + 1)
  2206. },
  2207. teardown: function() {
  2208. var d = this.ownerDocument || this
  2209. , e = m._data(d, b) - 1;
  2210. e ? m._data(d, b, e) : (d.removeEventListener(a, c, !0),
  2211. m._removeData(d, b))
  2212. }
  2213. }
  2214. }),
  2215. m.fn.extend({
  2216. on: function(a, b, c, d, e) {
  2217. var f, g;
  2218. if ("object" == typeof a) {
  2219. "string" != typeof b && (c = c || b,
  2220. b = void 0);
  2221. for (f in a)
  2222. this.on(f, b, c, a[f], e);
  2223. return this
  2224. }
  2225. if (null == c && null == d ? (d = b,
  2226. c = b = void 0) : null == d && ("string" == typeof b ? (d = c,
  2227. c = void 0) : (d = c,
  2228. c = b,
  2229. b = void 0)),
  2230. d === !1)
  2231. d = ba;
  2232. else if (!d)
  2233. return this;
  2234. return 1 === e && (g = d,
  2235. d = function(a) {
  2236. return m().off(a),
  2237. g.apply(this, arguments)
  2238. }
  2239. ,
  2240. d.guid = g.guid || (g.guid = m.guid++)),
  2241. this.each(function() {
  2242. m.event.add(this, a, d, c, b)
  2243. })
  2244. },
  2245. one: function(a, b, c, d) {
  2246. return this.on(a, b, c, d, 1)
  2247. },
  2248. off: function(a, b, c) {
  2249. var d, e;
  2250. if (a && a.preventDefault && a.handleObj)
  2251. return d = a.handleObj,
  2252. m(a.delegateTarget).off(d.namespace ? d.origType + "." + d.namespace : d.origType, d.selector, d.handler),
  2253. this;
  2254. if ("object" == typeof a) {
  2255. for (e in a)
  2256. this.off(e, b, a[e]);
  2257. return this
  2258. }
  2259. return (b === !1 || "function" == typeof b) && (c = b,
  2260. b = void 0),
  2261. c === !1 && (c = ba),
  2262. this.each(function() {
  2263. m.event.remove(this, a, c, b)
  2264. })
  2265. },
  2266. trigger: function(a, b) {
  2267. return this.each(function() {
  2268. m.event.trigger(a, b, this)
  2269. })
  2270. },
  2271. triggerHandler: function(a, b) {
  2272. var c = this[0];
  2273. return c ? m.event.trigger(a, b, c, !0) : void 0
  2274. }
  2275. });
  2276. function da(a) {
  2277. var b = ea.split("|")
  2278. , c = a.createDocumentFragment();
  2279. if (c.createElement)
  2280. while (b.length)
  2281. c.createElement(b.pop());
  2282. return c
  2283. }
  2284. var ea = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video"
  2285. , fa = / jQuery\d+="(?:null|\d+)"/g
  2286. , ga = new RegExp("<(?:" + ea + ")[\\s/>]","i")
  2287. , ha = /^\s+/
  2288. , ia = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi
  2289. , ja = /<([\w:]+)/
  2290. , ka = /<tbody/i
  2291. , la = /<|&#?\w+;/
  2292. , ma = /<(?:script|style|link)/i
  2293. , na = /checked\s*(?:[^=]|=\s*.checked.)/i
  2294. , oa = /^$|\/(?:java|ecma)script/i
  2295. , pa = /^true\/(.*)/
  2296. , qa = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g
  2297. , ra = {
  2298. option: [1, "<select multiple='multiple'>", "</select>"],
  2299. legend: [1, "<fieldset>", "</fieldset>"],
  2300. area: [1, "<map>", "</map>"],
  2301. param: [1, "<object>", "</object>"],
  2302. thead: [1, "<table>", "</table>"],
  2303. tr: [2, "<table><tbody>", "</tbody></table>"],
  2304. col: [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"],
  2305. td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
  2306. _default: k.htmlSerialize ? [0, "", ""] : [1, "X<div>", "</div>"]
  2307. }
  2308. , sa = da(y)
  2309. , ta = sa.appendChild(y.createElement("div"));
  2310. ra.optgroup = ra.option,
  2311. ra.tbody = ra.tfoot = ra.colgroup = ra.caption = ra.thead,
  2312. ra.th = ra.td;
  2313. function ua(a, b) {
  2314. var c, d, e = 0, f = typeof a.getElementsByTagName !== K ? a.getElementsByTagName(b || "*") : typeof a.querySelectorAll !== K ? a.querySelectorAll(b || "*") : void 0;
  2315. if (!f)
  2316. for (f = [],
  2317. c = a.childNodes || a; null != (d = c[e]); e++)
  2318. !b || m.nodeName(d, b) ? f.push(d) : m.merge(f, ua(d, b));
  2319. return void 0 === b || b && m.nodeName(a, b) ? m.merge([a], f) : f
  2320. }
  2321. function va(a) {
  2322. W.test(a.type) && (a.defaultChecked = a.checked)
  2323. }
  2324. function wa(a, b) {
  2325. return m.nodeName(a, "table") && m.nodeName(11 !== b.nodeType ? b : b.firstChild, "tr") ? a.getElementsByTagName("tbody")[0] || a.appendChild(a.ownerDocument.createElement("tbody")) : a
  2326. }
  2327. function xa(a) {
  2328. return a.type = (null !== m.find.attr(a, "type")) + "/" + a.type,
  2329. a
  2330. }
  2331. function ya(a) {
  2332. var b = pa.exec(a.type);
  2333. return b ? a.type = b[1] : a.removeAttribute("type"),
  2334. a
  2335. }
  2336. function za(a, b) {
  2337. for (var c, d = 0; null != (c = a[d]); d++)
  2338. m._data(c, "globalEval", !b || m._data(b[d], "globalEval"))
  2339. }
  2340. function Aa(a, b) {
  2341. if (1 === b.nodeType && m.hasData(a)) {
  2342. var c, d, e, f = m._data(a), g = m._data(b, f), h = f.events;
  2343. if (h) {
  2344. delete g.handle,
  2345. g.events = {};
  2346. for (c in h)
  2347. for (d = 0,
  2348. e = h[c].length; e > d; d++)
  2349. m.event.add(b, c, h[c][d])
  2350. }
  2351. g.data && (g.data = m.extend({}, g.data))
  2352. }
  2353. }
  2354. function Ba(a, b) {
  2355. var c, d, e;
  2356. if (1 === b.nodeType) {
  2357. if (c = b.nodeName.toLowerCase(),
  2358. !k.noCloneEvent && b[m.expando]) {
  2359. e = m._data(b);
  2360. for (d in e.events)
  2361. m.removeEvent(b, d, e.handle);
  2362. b.removeAttribute(m.expando)
  2363. }
  2364. "script" === c && b.text !== a.text ? (xa(b).text = a.text,
  2365. ya(b)) : "object" === c ? (b.parentNode && (b.outerHTML = a.outerHTML),
  2366. k.html5Clone && a.innerHTML && !m.trim(b.innerHTML) && (b.innerHTML = a.innerHTML)) : "input" === c && W.test(a.type) ? (b.defaultChecked = b.checked = a.checked,
  2367. b.value !== a.value && (b.value = a.value)) : "option" === c ? b.defaultSelected = b.selected = a.defaultSelected : ("input" === c || "textarea" === c) && (b.defaultValue = a.defaultValue)
  2368. }
  2369. }
  2370. m.extend({
  2371. clone: function(a, b, c) {
  2372. var d, e, f, g, h, i = m.contains(a.ownerDocument, a);
  2373. if (k.html5Clone || m.isXMLDoc(a) || !ga.test("<" + a.nodeName + ">") ? f = a.cloneNode(!0) : (ta.innerHTML = a.outerHTML,
  2374. ta.removeChild(f = ta.firstChild)),
  2375. !(k.noCloneEvent && k.noCloneChecked || 1 !== a.nodeType && 11 !== a.nodeType || m.isXMLDoc(a)))
  2376. for (d = ua(f),
  2377. h = ua(a),
  2378. g = 0; null != (e = h[g]); ++g)
  2379. d[g] && Ba(e, d[g]);
  2380. if (b)
  2381. if (c)
  2382. for (h = h || ua(a),
  2383. d = d || ua(f),
  2384. g = 0; null != (e = h[g]); g++)
  2385. Aa(e, d[g]);
  2386. else
  2387. Aa(a, f);
  2388. return d = ua(f, "script"),
  2389. d.length > 0 && za(d, !i && ua(a, "script")),
  2390. d = h = e = null,
  2391. f
  2392. },
  2393. buildFragment: function(a, b, c, d) {
  2394. for (var e, f, g, h, i, j, l, n = a.length, o = da(b), p = [], q = 0; n > q; q++)
  2395. if (f = a[q],
  2396. f || 0 === f)
  2397. if ("object" === m.type(f))
  2398. m.merge(p, f.nodeType ? [f] : f);
  2399. else if (la.test(f)) {
  2400. h = h || o.appendChild(b.createElement("div")),
  2401. i = (ja.exec(f) || ["", ""])[1].toLowerCase(),
  2402. l = ra[i] || ra._default,
  2403. h.innerHTML = l[1] + f.replace(ia, "<$1></$2>") + l[2],
  2404. e = l[0];
  2405. while (e--)
  2406. h = h.lastChild;
  2407. if (!k.leadingWhitespace && ha.test(f) && p.push(b.createTextNode(ha.exec(f)[0])),
  2408. !k.tbody) {
  2409. f = "table" !== i || ka.test(f) ? "<table>" !== l[1] || ka.test(f) ? 0 : h : h.firstChild,
  2410. e = f && f.childNodes.length;
  2411. while (e--)
  2412. m.nodeName(j = f.childNodes[e], "tbody") && !j.childNodes.length && f.removeChild(j)
  2413. }
  2414. m.merge(p, h.childNodes),
  2415. h.textContent = "";
  2416. while (h.firstChild)
  2417. h.removeChild(h.firstChild);
  2418. h = o.lastChild
  2419. } else
  2420. p.push(b.createTextNode(f));
  2421. h && o.removeChild(h),
  2422. k.appendChecked || m.grep(ua(p, "input"), va),
  2423. q = 0;
  2424. while (f = p[q++])
  2425. if ((!d || -1 === m.inArray(f, d)) && (g = m.contains(f.ownerDocument, f),
  2426. h = ua(o.appendChild(f), "script"),
  2427. g && za(h),
  2428. c)) {
  2429. e = 0;
  2430. while (f = h[e++])
  2431. oa.test(f.type || "") && c.push(f)
  2432. }
  2433. return h = null,
  2434. o
  2435. },
  2436. cleanData: function(a, b) {
  2437. for (var d, e, f, g, h = 0, i = m.expando, j = m.cache, l = k.deleteExpando, n = m.event.special; null != (d = a[h]); h++)
  2438. if ((b || m.acceptData(d)) && (f = d[i],
  2439. g = f && j[f])) {
  2440. if (g.events)
  2441. for (e in g.events)
  2442. n[e] ? m.event.remove(d, e) : m.removeEvent(d, e, g.handle);
  2443. j[f] && (delete j[f],
  2444. l ? delete d[i] : typeof d.removeAttribute !== K ? d.removeAttribute(i) : d[i] = null,
  2445. c.push(f))
  2446. }
  2447. }
  2448. }),
  2449. m.fn.extend({
  2450. text: function(a) {
  2451. return V(this, function(a) {
  2452. return void 0 === a ? m.text(this) : this.empty().append((this[0] && this[0].ownerDocument || y).createTextNode(a))
  2453. }, null, a, arguments.length)
  2454. },
  2455. append: function() {
  2456. return this.domManip(arguments, function(a) {
  2457. if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
  2458. var b = wa(this, a);
  2459. b.appendChild(a)
  2460. }
  2461. })
  2462. },
  2463. prepend: function() {
  2464. return this.domManip(arguments, function(a) {
  2465. if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
  2466. var b = wa(this, a);
  2467. b.insertBefore(a, b.firstChild)
  2468. }
  2469. })
  2470. },
  2471. before: function() {
  2472. return this.domManip(arguments, function(a) {
  2473. this.parentNode && this.parentNode.insertBefore(a, this)
  2474. })
  2475. },
  2476. after: function() {
  2477. return this.domManip(arguments, function(a) {
  2478. this.parentNode && this.parentNode.insertBefore(a, this.nextSibling)
  2479. })
  2480. },
  2481. remove: function(a, b) {
  2482. for (var c, d = a ? m.filter(a, this) : this, e = 0; null != (c = d[e]); e++)
  2483. b || 1 !== c.nodeType || m.cleanData(ua(c)),
  2484. c.parentNode && (b && m.contains(c.ownerDocument, c) && za(ua(c, "script")),
  2485. c.parentNode.removeChild(c));
  2486. return this
  2487. },
  2488. empty: function() {
  2489. for (var a, b = 0; null != (a = this[b]); b++) {
  2490. 1 === a.nodeType && m.cleanData(ua(a, !1));
  2491. while (a.firstChild)
  2492. a.removeChild(a.firstChild);
  2493. a.options && m.nodeName(a, "select") && (a.options.length = 0)
  2494. }
  2495. return this
  2496. },
  2497. clone: function(a, b) {
  2498. return a = null == a ? !1 : a,
  2499. b = null == b ? a : b,
  2500. this.map(function() {
  2501. return m.clone(this, a, b)
  2502. })
  2503. },
  2504. html: function(a) {
  2505. return V(this, function(a) {
  2506. var b = this[0] || {}
  2507. , c = 0
  2508. , d = this.length;
  2509. if (void 0 === a)
  2510. return 1 === b.nodeType ? b.innerHTML.replace(fa, "") : void 0;
  2511. if (!("string" != typeof a || ma.test(a) || !k.htmlSerialize && ga.test(a) || !k.leadingWhitespace && ha.test(a) || ra[(ja.exec(a) || ["", ""])[1].toLowerCase()])) {
  2512. a = a.replace(ia, "<$1></$2>");
  2513. try {
  2514. for (; d > c; c++)
  2515. b = this[c] || {},
  2516. 1 === b.nodeType && (m.cleanData(ua(b, !1)),
  2517. b.innerHTML = a);
  2518. b = 0
  2519. } catch (e) {}
  2520. }
  2521. b && this.empty().append(a)
  2522. }, null, a, arguments.length)
  2523. },
  2524. replaceWith: function() {
  2525. var a = arguments[0];
  2526. return this.domManip(arguments, function(b) {
  2527. a = this.parentNode,
  2528. m.cleanData(ua(this)),
  2529. a && a.replaceChild(b, this)
  2530. }),
  2531. a && (a.length || a.nodeType) ? this : this.remove()
  2532. },
  2533. detach: function(a) {
  2534. return this.remove(a, !0)
  2535. },
  2536. domManip: function(a, b) {
  2537. a = e.apply([], a);
  2538. var c, d, f, g, h, i, j = 0, l = this.length, n = this, o = l - 1, p = a[0], q = m.isFunction(p);
  2539. if (q || l > 1 && "string" == typeof p && !k.checkClone && na.test(p))
  2540. return this.each(function(c) {
  2541. var d = n.eq(c);
  2542. q && (a[0] = p.call(this, c, d.html())),
  2543. d.domManip(a, b)
  2544. });
  2545. if (l && (i = m.buildFragment(a, this[0].ownerDocument, !1, this),
  2546. c = i.firstChild,
  2547. 1 === i.childNodes.length && (i = c),
  2548. c)) {
  2549. for (g = m.map(ua(i, "script"), xa),
  2550. f = g.length; l > j; j++)
  2551. d = i,
  2552. j !== o && (d = m.clone(d, !0, !0),
  2553. f && m.merge(g, ua(d, "script"))),
  2554. b.call(this[j], d, j);
  2555. if (f)
  2556. for (h = g[g.length - 1].ownerDocument,
  2557. m.map(g, ya),
  2558. j = 0; f > j; j++)
  2559. d = g[j],
  2560. oa.test(d.type || "") && !m._data(d, "globalEval") && m.contains(h, d) && (d.src ? m._evalUrl && m._evalUrl(d.src) : m.globalEval((d.text || d.textContent || d.innerHTML || "").replace(qa, "")));
  2561. i = c = null
  2562. }
  2563. return this
  2564. }
  2565. }),
  2566. m.each({
  2567. appendTo: "append",
  2568. prependTo: "prepend",
  2569. insertBefore: "before",
  2570. insertAfter: "after",
  2571. replaceAll: "replaceWith"
  2572. }, function(a, b) {
  2573. m.fn[a] = function(a) {
  2574. for (var c, d = 0, e = [], g = m(a), h = g.length - 1; h >= d; d++)
  2575. c = d === h ? this : this.clone(!0),
  2576. m(g[d])[b](c),
  2577. f.apply(e, c.get());
  2578. return this.pushStack(e)
  2579. }
  2580. });
  2581. var Ca, Da = {};
  2582. function Ea(b, c) {
  2583. var d, e = m(c.createElement(b)).appendTo(c.body), f = a.getDefaultComputedStyle && (d = a.getDefaultComputedStyle(e[0])) ? d.display : m.css(e[0], "display");
  2584. return e.detach(),
  2585. f
  2586. }
  2587. function Fa(a) {
  2588. var b = y
  2589. , c = Da[a];
  2590. return c || (c = Ea(a, b),
  2591. "none" !== c && c || (Ca = (Ca || m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),
  2592. b = (Ca[0].contentWindow || Ca[0].contentDocument).document,
  2593. b.write(),
  2594. b.close(),
  2595. c = Ea(a, b),
  2596. Ca.detach()),
  2597. Da[a] = c),
  2598. c
  2599. }
  2600. !function() {
  2601. var a;
  2602. k.shrinkWrapBlocks = function() {
  2603. if (null != a)
  2604. return a;
  2605. a = !1;
  2606. var b, c, d;
  2607. return c = y.getElementsByTagName("body")[0],
  2608. c && c.style ? (b = y.createElement("div"),
  2609. d = y.createElement("div"),
  2610. d.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px",
  2611. c.appendChild(d).appendChild(b),
  2612. typeof b.style.zoom !== K && (b.style.cssText = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",
  2613. b.appendChild(y.createElement("div")).style.width = "5px",
  2614. a = 3 !== b.offsetWidth),
  2615. c.removeChild(d),
  2616. a) : void 0
  2617. }
  2618. }();
  2619. var Ga = /^margin/, Ha = new RegExp("^(" + S + ")(?!px)[a-z%]+$","i"), Ia, Ja, Ka = /^(top|right|bottom|left)$/;
  2620. a.getComputedStyle ? (Ia = function(b) {
  2621. return b.ownerDocument.defaultView.opener ? b.ownerDocument.defaultView.getComputedStyle(b, null) : a.getComputedStyle(b, null)
  2622. }
  2623. ,
  2624. Ja = function(a, b, c) {
  2625. var d, e, f, g, h = a.style;
  2626. return c = c || Ia(a),
  2627. g = c ? c.getPropertyValue(b) || c[b] : void 0,
  2628. c && ("" !== g || m.contains(a.ownerDocument, a) || (g = m.style(a, b)),
  2629. Ha.test(g) && Ga.test(b) && (d = h.width,
  2630. e = h.minWidth,
  2631. f = h.maxWidth,
  2632. h.minWidth = h.maxWidth = h.width = g,
  2633. g = c.width,
  2634. h.width = d,
  2635. h.minWidth = e,
  2636. h.maxWidth = f)),
  2637. void 0 === g ? g : g + ""
  2638. }
  2639. ) : y.documentElement.currentStyle && (Ia = function(a) {
  2640. return a.currentStyle
  2641. }
  2642. ,
  2643. Ja = function(a, b, c) {
  2644. var d, e, f, g, h = a.style;
  2645. return c = c || Ia(a),
  2646. g = c ? c[b] : void 0,
  2647. null == g && h && h[b] && (g = h[b]),
  2648. Ha.test(g) && !Ka.test(b) && (d = h.left,
  2649. e = a.runtimeStyle,
  2650. f = e && e.left,
  2651. f && (e.left = a.currentStyle.left),
  2652. h.left = "fontSize" === b ? "1em" : g,
  2653. g = h.pixelLeft + "px",
  2654. h.left = d,
  2655. f && (e.left = f)),
  2656. void 0 === g ? g : g + "" || "auto"
  2657. }
  2658. );
  2659. function La(a, b) {
  2660. return {
  2661. get: function() {
  2662. var c = a();
  2663. if (null != c)
  2664. return c ? void delete this.get : (this.get = b).apply(this, arguments)
  2665. }
  2666. }
  2667. }
  2668. !function() {
  2669. var b, c, d, e, f, g, h;
  2670. if (b = y.createElement("div"),
  2671. b.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",
  2672. d = b.getElementsByTagName("a")[0],
  2673. c = d && d.style) {
  2674. c.cssText = "float:left;opacity:.5",
  2675. k.opacity = "0.5" === c.opacity,
  2676. k.cssFloat = !!c.cssFloat,
  2677. b.style.backgroundClip = "content-box",
  2678. b.cloneNode(!0).style.backgroundClip = "",
  2679. k.clearCloneStyle = "content-box" === b.style.backgroundClip,
  2680. k.boxSizing = "" === c.boxSizing || "" === c.MozBoxSizing || "" === c.WebkitBoxSizing,
  2681. m.extend(k, {
  2682. reliableHiddenOffsets: function() {
  2683. return null == g && i(),
  2684. g
  2685. },
  2686. boxSizingReliable: function() {
  2687. return null == f && i(),
  2688. f
  2689. },
  2690. pixelPosition: function() {
  2691. return null == e && i(),
  2692. e
  2693. },
  2694. reliableMarginRight: function() {
  2695. return null == h && i(),
  2696. h
  2697. }
  2698. });
  2699. function i() {
  2700. var b, c, d, i;
  2701. c = y.getElementsByTagName("body")[0],
  2702. c && c.style && (b = y.createElement("div"),
  2703. d = y.createElement("div"),
  2704. d.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px",
  2705. c.appendChild(d).appendChild(b),
  2706. b.style.cssText = "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",
  2707. e = f = !1,
  2708. h = !0,
  2709. a.getComputedStyle && (e = "1%" !== (a.getComputedStyle(b, null) || {}).top,
  2710. f = "4px" === (a.getComputedStyle(b, null) || {
  2711. width: "4px"
  2712. }).width,
  2713. i = b.appendChild(y.createElement("div")),
  2714. i.style.cssText = b.style.cssText = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",
  2715. i.style.marginRight = i.style.width = "0",
  2716. b.style.width = "1px",
  2717. h = !parseFloat((a.getComputedStyle(i, null) || {}).marginRight),
  2718. b.removeChild(i)),
  2719. b.innerHTML = "<table><tr><td></td><td>t</td></tr></table>",
  2720. i = b.getElementsByTagName("td"),
  2721. i[0].style.cssText = "margin:0;border:0;padding:0;display:none",
  2722. g = 0 === i[0].offsetHeight,
  2723. g && (i[0].style.display = "",
  2724. i[1].style.display = "none",
  2725. g = 0 === i[0].offsetHeight),
  2726. c.removeChild(d))
  2727. }
  2728. }
  2729. }(),
  2730. m.swap = function(a, b, c, d) {
  2731. var e, f, g = {};
  2732. for (f in b)
  2733. g[f] = a.style[f],
  2734. a.style[f] = b[f];
  2735. e = c.apply(a, d || []);
  2736. for (f in b)
  2737. a.style[f] = g[f];
  2738. return e
  2739. }
  2740. ;
  2741. var Ma = /alpha\([^)]*\)/i
  2742. , Na = /opacity\s*=\s*([^)]*)/
  2743. , Oa = /^(none|table(?!-c[ea]).+)/
  2744. , Pa = new RegExp("^(" + S + ")(.*)$","i")
  2745. , Qa = new RegExp("^([+-])=(" + S + ")","i")
  2746. , Ra = {
  2747. position: "absolute",
  2748. visibility: "hidden",
  2749. display: "block"
  2750. }
  2751. , Sa = {
  2752. letterSpacing: "0",
  2753. fontWeight: "400"
  2754. }
  2755. , Ta = ["Webkit", "O", "Moz", "ms"];
  2756. function Ua(a, b) {
  2757. if (b in a)
  2758. return b;
  2759. var c = b.charAt(0).toUpperCase() + b.slice(1)
  2760. , d = b
  2761. , e = Ta.length;
  2762. while (e--)
  2763. if (b = Ta[e] + c,
  2764. b in a)
  2765. return b;
  2766. return d
  2767. }
  2768. function Va(a, b) {
  2769. for (var c, d, e, f = [], g = 0, h = a.length; h > g; g++)
  2770. d = a[g],
  2771. d.style && (f[g] = m._data(d, "olddisplay"),
  2772. c = d.style.display,
  2773. b ? (f[g] || "none" !== c || (d.style.display = ""),
  2774. "" === d.style.display && U(d) && (f[g] = m._data(d, "olddisplay", Fa(d.nodeName)))) : (e = U(d),
  2775. (c && "none" !== c || !e) && m._data(d, "olddisplay", e ? c : m.css(d, "display"))));
  2776. for (g = 0; h > g; g++)
  2777. d = a[g],
  2778. d.style && (b && "none" !== d.style.display && "" !== d.style.display || (d.style.display = b ? f[g] || "" : "none"));
  2779. return a
  2780. }
  2781. function Wa(a, b, c) {
  2782. var d = Pa.exec(b);
  2783. return d ? Math.max(0, d[1] - (c || 0)) + (d[2] || "px") : b
  2784. }
  2785. function Xa(a, b, c, d, e) {
  2786. for (var f = c === (d ? "border" : "content") ? 4 : "width" === b ? 1 : 0, g = 0; 4 > f; f += 2)
  2787. "margin" === c && (g += m.css(a, c + T[f], !0, e)),
  2788. d ? ("content" === c && (g -= m.css(a, "padding" + T[f], !0, e)),
  2789. "margin" !== c && (g -= m.css(a, "border" + T[f] + "Width", !0, e))) : (g += m.css(a, "padding" + T[f], !0, e),
  2790. "padding" !== c && (g += m.css(a, "border" + T[f] + "Width", !0, e)));
  2791. return g
  2792. }
  2793. function Ya(a, b, c) {
  2794. var d = !0
  2795. , e = "width" === b ? a.offsetWidth : a.offsetHeight
  2796. , f = Ia(a)
  2797. , g = k.boxSizing && "border-box" === m.css(a, "boxSizing", !1, f);
  2798. if (0 >= e || null == e) {
  2799. if (e = Ja(a, b, f),
  2800. (0 > e || null == e) && (e = a.style[b]),
  2801. Ha.test(e))
  2802. return e;
  2803. d = g && (k.boxSizingReliable() || e === a.style[b]),
  2804. e = parseFloat(e) || 0
  2805. }
  2806. return e + Xa(a, b, c || (g ? "border" : "content"), d, f) + "px"
  2807. }
  2808. m.extend({
  2809. cssHooks: {
  2810. opacity: {
  2811. get: function(a, b) {
  2812. if (b) {
  2813. var c = Ja(a, "opacity");
  2814. return "" === c ? "1" : c
  2815. }
  2816. }
  2817. }
  2818. },
  2819. cssNumber: {
  2820. columnCount: !0,
  2821. fillOpacity: !0,
  2822. flexGrow: !0,
  2823. flexShrink: !0,
  2824. fontWeight: !0,
  2825. lineHeight: !0,
  2826. opacity: !0,
  2827. order: !0,
  2828. orphans: !0,
  2829. widows: !0,
  2830. zIndex: !0,
  2831. zoom: !0
  2832. },
  2833. cssProps: {
  2834. "float": k.cssFloat ? "cssFloat" : "styleFloat"
  2835. },
  2836. style: function(a, b, c, d) {
  2837. if (a && 3 !== a.nodeType && 8 !== a.nodeType && a.style) {
  2838. var e, f, g, h = m.camelCase(b), i = a.style;
  2839. if (b = m.cssProps[h] || (m.cssProps[h] = Ua(i, h)),
  2840. g = m.cssHooks[b] || m.cssHooks[h],
  2841. void 0 === c)
  2842. return g && "get"in g && void 0 !== (e = g.get(a, !1, d)) ? e : i[b];
  2843. if (f = typeof c,
  2844. "string" === f && (e = Qa.exec(c)) && (c = (e[1] + 1) * e[2] + parseFloat(m.css(a, b)),
  2845. f = "number"),
  2846. null != c && c === c && ("number" !== f || m.cssNumber[h] || (c += "px"),
  2847. k.clearCloneStyle || "" !== c || 0 !== b.indexOf("background") || (i[b] = "inherit"),
  2848. !(g && "set"in g && void 0 === (c = g.set(a, c, d)))))
  2849. try {
  2850. i[b] = c
  2851. } catch (j) {}
  2852. }
  2853. },
  2854. css: function(a, b, c, d) {
  2855. var e, f, g, h = m.camelCase(b);
  2856. return b = m.cssProps[h] || (m.cssProps[h] = Ua(a.style, h)),
  2857. g = m.cssHooks[b] || m.cssHooks[h],
  2858. g && "get"in g && (f = g.get(a, !0, c)),
  2859. void 0 === f && (f = Ja(a, b, d)),
  2860. "normal" === f && b in Sa && (f = Sa[b]),
  2861. "" === c || c ? (e = parseFloat(f),
  2862. c === !0 || m.isNumeric(e) ? e || 0 : f) : f
  2863. }
  2864. }),
  2865. m.each(["height", "width"], function(a, b) {
  2866. m.cssHooks[b] = {
  2867. get: function(a, c, d) {
  2868. return c ? Oa.test(m.css(a, "display")) && 0 === a.offsetWidth ? m.swap(a, Ra, function() {
  2869. return Ya(a, b, d)
  2870. }) : Ya(a, b, d) : void 0
  2871. },
  2872. set: function(a, c, d) {
  2873. var e = d && Ia(a);
  2874. return Wa(a, c, d ? Xa(a, b, d, k.boxSizing && "border-box" === m.css(a, "boxSizing", !1, e), e) : 0)
  2875. }
  2876. }
  2877. }),
  2878. k.opacity || (m.cssHooks.opacity = {
  2879. get: function(a, b) {
  2880. return Na.test((b && a.currentStyle ? a.currentStyle.filter : a.style.filter) || "") ? .01 * parseFloat(RegExp.$1) + "" : b ? "1" : ""
  2881. },
  2882. set: function(a, b) {
  2883. var c = a.style
  2884. , d = a.currentStyle
  2885. , e = m.isNumeric(b) ? "alpha(opacity=" + 100 * b + ")" : ""
  2886. , f = d && d.filter || c.filter || "";
  2887. c.zoom = 1,
  2888. (b >= 1 || "" === b) && "" === m.trim(f.replace(Ma, "")) && c.removeAttribute && (c.removeAttribute("filter"),
  2889. "" === b || d && !d.filter) || (c.filter = Ma.test(f) ? f.replace(Ma, e) : f + " " + e)
  2890. }
  2891. }),
  2892. m.cssHooks.marginRight = La(k.reliableMarginRight, function(a, b) {
  2893. return b ? m.swap(a, {
  2894. display: "inline-block"
  2895. }, Ja, [a, "marginRight"]) : void 0
  2896. }),
  2897. m.each({
  2898. margin: "",
  2899. padding: "",
  2900. border: "Width"
  2901. }, function(a, b) {
  2902. m.cssHooks[a + b] = {
  2903. expand: function(c) {
  2904. for (var d = 0, e = {}, f = "string" == typeof c ? c.split(" ") : [c]; 4 > d; d++)
  2905. e[a + T[d] + b] = f[d] || f[d - 2] || f[0];
  2906. return e
  2907. }
  2908. },
  2909. Ga.test(a) || (m.cssHooks[a + b].set = Wa)
  2910. }),
  2911. m.fn.extend({
  2912. css: function(a, b) {
  2913. return V(this, function(a, b, c) {
  2914. var d, e, f = {}, g = 0;
  2915. if (m.isArray(b)) {
  2916. for (d = Ia(a),
  2917. e = b.length; e > g; g++)
  2918. f[b[g]] = m.css(a, b[g], !1, d);
  2919. return f
  2920. }
  2921. return void 0 !== c ? m.style(a, b, c) : m.css(a, b)
  2922. }, a, b, arguments.length > 1)
  2923. },
  2924. show: function() {
  2925. return Va(this, !0)
  2926. },
  2927. hide: function() {
  2928. return Va(this)
  2929. },
  2930. toggle: function(a) {
  2931. return "boolean" == typeof a ? a ? this.show() : this.hide() : this.each(function() {
  2932. U(this) ? m(this).show() : m(this).hide()
  2933. })
  2934. }
  2935. });
  2936. function Za(a, b, c, d, e) {
  2937. return new Za.prototype.init(a,b,c,d,e)
  2938. }
  2939. m.Tween = Za,
  2940. Za.prototype = {
  2941. constructor: Za,
  2942. init: function(a, b, c, d, e, f) {
  2943. this.elem = a,
  2944. this.prop = c,
  2945. this.easing = e || "swing",
  2946. this.options = b,
  2947. this.start = this.now = this.cur(),
  2948. this.end = d,
  2949. this.unit = f || (m.cssNumber[c] ? "" : "px")
  2950. },
  2951. cur: function() {
  2952. var a = Za.propHooks[this.prop];
  2953. return a && a.get ? a.get(this) : Za.propHooks._default.get(this)
  2954. },
  2955. run: function(a) {
  2956. var b, c = Za.propHooks[this.prop];
  2957. return this.options.duration ? this.pos = b = m.easing[this.easing](a, this.options.duration * a, 0, 1, this.options.duration) : this.pos = b = a,
  2958. this.now = (this.end - this.start) * b + this.start,
  2959. this.options.step && this.options.step.call(this.elem, this.now, this),
  2960. c && c.set ? c.set(this) : Za.propHooks._default.set(this),
  2961. this
  2962. }
  2963. },
  2964. Za.prototype.init.prototype = Za.prototype,
  2965. Za.propHooks = {
  2966. _default: {
  2967. get: function(a) {
  2968. var b;
  2969. return null == a.elem[a.prop] || a.elem.style && null != a.elem.style[a.prop] ? (b = m.css(a.elem, a.prop, ""),
  2970. b && "auto" !== b ? b : 0) : a.elem[a.prop]
  2971. },
  2972. set: function(a) {
  2973. m.fx.step[a.prop] ? m.fx.step[a.prop](a) : a.elem.style && (null != a.elem.style[m.cssProps[a.prop]] || m.cssHooks[a.prop]) ? m.style(a.elem, a.prop, a.now + a.unit) : a.elem[a.prop] = a.now
  2974. }
  2975. }
  2976. },
  2977. Za.propHooks.scrollTop = Za.propHooks.scrollLeft = {
  2978. set: function(a) {
  2979. a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now)
  2980. }
  2981. },
  2982. m.easing = {
  2983. linear: function(a) {
  2984. return a
  2985. },
  2986. swing: function(a) {
  2987. return .5 - Math.cos(a * Math.PI) / 2
  2988. }
  2989. },
  2990. m.fx = Za.prototype.init,
  2991. m.fx.step = {};
  2992. var $a, _a, ab = /^(?:toggle|show|hide)$/, bb = new RegExp("^(?:([+-])=|)(" + S + ")([a-z%]*)$","i"), cb = /queueHooks$/, db = [ib], eb = {
  2993. "*": [function(a, b) {
  2994. var c = this.createTween(a, b)
  2995. , d = c.cur()
  2996. , e = bb.exec(b)
  2997. , f = e && e[3] || (m.cssNumber[a] ? "" : "px")
  2998. , g = (m.cssNumber[a] || "px" !== f && +d) && bb.exec(m.css(c.elem, a))
  2999. , h = 1
  3000. , i = 20;
  3001. if (g && g[3] !== f) {
  3002. f = f || g[3],
  3003. e = e || [],
  3004. g = +d || 1;
  3005. do
  3006. h = h || ".5",
  3007. g /= h,
  3008. m.style(c.elem, a, g + f);
  3009. while (h !== (h = c.cur() / d) && 1 !== h && --i)
  3010. }
  3011. return e && (g = c.start = +g || +d || 0,
  3012. c.unit = f,
  3013. c.end = e[1] ? g + (e[1] + 1) * e[2] : +e[2]),
  3014. c
  3015. }
  3016. ]
  3017. };
  3018. function fb() {
  3019. return setTimeout(function() {
  3020. $a = void 0
  3021. }),
  3022. $a = m.now()
  3023. }
  3024. function gb(a, b) {
  3025. var c, d = {
  3026. height: a
  3027. }, e = 0;
  3028. for (b = b ? 1 : 0; 4 > e; e += 2 - b)
  3029. c = T[e],
  3030. d["margin" + c] = d["padding" + c] = a;
  3031. return b && (d.opacity = d.width = a),
  3032. d
  3033. }
  3034. function hb(a, b, c) {
  3035. for (var d, e = (eb[b] || []).concat(eb["*"]), f = 0, g = e.length; g > f; f++)
  3036. if (d = e[f].call(c, b, a))
  3037. return d
  3038. }
  3039. function ib(a, b, c) {
  3040. var d, e, f, g, h, i, j, l, n = this, o = {}, p = a.style, q = a.nodeType && U(a), r = m._data(a, "fxshow");
  3041. c.queue || (h = m._queueHooks(a, "fx"),
  3042. null == h.unqueued && (h.unqueued = 0,
  3043. i = h.empty.fire,
  3044. h.empty.fire = function() {
  3045. h.unqueued || i()
  3046. }
  3047. ),
  3048. h.unqueued++,
  3049. n.always(function() {
  3050. n.always(function() {
  3051. h.unqueued--,
  3052. m.queue(a, "fx").length || h.empty.fire()
  3053. })
  3054. })),
  3055. 1 === a.nodeType && ("height"in b || "width"in b) && (c.overflow = [p.overflow, p.overflowX, p.overflowY],
  3056. j = m.css(a, "display"),
  3057. l = "none" === j ? m._data(a, "olddisplay") || Fa(a.nodeName) : j,
  3058. "inline" === l && "none" === m.css(a, "float") && (k.inlineBlockNeedsLayout && "inline" !== Fa(a.nodeName) ? p.zoom = 1 : p.display = "inline-block")),
  3059. c.overflow && (p.overflow = "hidden",
  3060. k.shrinkWrapBlocks() || n.always(function() {
  3061. p.overflow = c.overflow[0],
  3062. p.overflowX = c.overflow[1],
  3063. p.overflowY = c.overflow[2]
  3064. }));
  3065. for (d in b)
  3066. if (e = b[d],
  3067. ab.exec(e)) {
  3068. if (delete b[d],
  3069. f = f || "toggle" === e,
  3070. e === (q ? "hide" : "show")) {
  3071. if ("show" !== e || !r || void 0 === r[d])
  3072. continue;
  3073. q = !0
  3074. }
  3075. o[d] = r && r[d] || m.style(a, d)
  3076. } else
  3077. j = void 0;
  3078. if (m.isEmptyObject(o))
  3079. "inline" === ("none" === j ? Fa(a.nodeName) : j) && (p.display = j);
  3080. else {
  3081. r ? "hidden"in r && (q = r.hidden) : r = m._data(a, "fxshow", {}),
  3082. f && (r.hidden = !q),
  3083. q ? m(a).show() : n.done(function() {
  3084. m(a).hide()
  3085. }),
  3086. n.done(function() {
  3087. var b;
  3088. m._removeData(a, "fxshow");
  3089. for (b in o)
  3090. m.style(a, b, o[b])
  3091. });
  3092. for (d in o)
  3093. g = hb(q ? r[d] : 0, d, n),
  3094. d in r || (r[d] = g.start,
  3095. q && (g.end = g.start,
  3096. g.start = "width" === d || "height" === d ? 1 : 0))
  3097. }
  3098. }
  3099. function jb(a, b) {
  3100. var c, d, e, f, g;
  3101. for (c in a)
  3102. if (d = m.camelCase(c),
  3103. e = b[d],
  3104. f = a[c],
  3105. m.isArray(f) && (e = f[1],
  3106. f = a[c] = f[0]),
  3107. c !== d && (a[d] = f,
  3108. delete a[c]),
  3109. g = m.cssHooks[d],
  3110. g && "expand"in g) {
  3111. f = g.expand(f),
  3112. delete a[d];
  3113. for (c in f)
  3114. c in a || (a[c] = f[c],
  3115. b[c] = e)
  3116. } else
  3117. b[d] = e
  3118. }
  3119. function kb(a, b, c) {
  3120. var d, e, f = 0, g = db.length, h = m.Deferred().always(function() {
  3121. delete i.elem
  3122. }), i = function() {
  3123. if (e)
  3124. return !1;
  3125. for (var b = $a || fb(), c = Math.max(0, j.startTime + j.duration - b), d = c / j.duration || 0, f = 1 - d, g = 0, i = j.tweens.length; i > g; g++)
  3126. j.tweens[g].run(f);
  3127. return h.notifyWith(a, [j, f, c]),
  3128. 1 > f && i ? c : (h.resolveWith(a, [j]),
  3129. !1)
  3130. }, j = h.promise({
  3131. elem: a,
  3132. props: m.extend({}, b),
  3133. opts: m.extend(!0, {
  3134. specialEasing: {}
  3135. }, c),
  3136. originalProperties: b,
  3137. originalOptions: c,
  3138. startTime: $a || fb(),
  3139. duration: c.duration,
  3140. tweens: [],
  3141. createTween: function(b, c) {
  3142. var d = m.Tween(a, j.opts, b, c, j.opts.specialEasing[b] || j.opts.easing);
  3143. return j.tweens.push(d),
  3144. d
  3145. },
  3146. stop: function(b) {
  3147. var c = 0
  3148. , d = b ? j.tweens.length : 0;
  3149. if (e)
  3150. return this;
  3151. for (e = !0; d > c; c++)
  3152. j.tweens[c].run(1);
  3153. return b ? h.resolveWith(a, [j, b]) : h.rejectWith(a, [j, b]),
  3154. this
  3155. }
  3156. }), k = j.props;
  3157. for (jb(k, j.opts.specialEasing); g > f; f++)
  3158. if (d = db[f].call(j, a, k, j.opts))
  3159. return d;
  3160. return m.map(k, hb, j),
  3161. m.isFunction(j.opts.start) && j.opts.start.call(a, j),
  3162. m.fx.timer(m.extend(i, {
  3163. elem: a,
  3164. anim: j,
  3165. queue: j.opts.queue
  3166. })),
  3167. j.progress(j.opts.progress).done(j.opts.done, j.opts.complete).fail(j.opts.fail).always(j.opts.always)
  3168. }
  3169. m.Animation = m.extend(kb, {
  3170. tweener: function(a, b) {
  3171. m.isFunction(a) ? (b = a,
  3172. a = ["*"]) : a = a.split(" ");
  3173. for (var c, d = 0, e = a.length; e > d; d++)
  3174. c = a[d],
  3175. eb[c] = eb[c] || [],
  3176. eb[c].unshift(b)
  3177. },
  3178. prefilter: function(a, b) {
  3179. b ? db.unshift(a) : db.push(a)
  3180. }
  3181. }),
  3182. m.speed = function(a, b, c) {
  3183. var d = a && "object" == typeof a ? m.extend({}, a) : {
  3184. complete: c || !c && b || m.isFunction(a) && a,
  3185. duration: a,
  3186. easing: c && b || b && !m.isFunction(b) && b
  3187. };
  3188. return d.duration = m.fx.off ? 0 : "number" == typeof d.duration ? d.duration : d.duration in m.fx.speeds ? m.fx.speeds[d.duration] : m.fx.speeds._default,
  3189. (null == d.queue || d.queue === !0) && (d.queue = "fx"),
  3190. d.old = d.complete,
  3191. d.complete = function() {
  3192. m.isFunction(d.old) && d.old.call(this),
  3193. d.queue && m.dequeue(this, d.queue)
  3194. }
  3195. ,
  3196. d
  3197. }
  3198. ,
  3199. m.fn.extend({
  3200. fadeTo: function(a, b, c, d) {
  3201. return this.filter(U).css("opacity", 0).show().end().animate({
  3202. opacity: b
  3203. }, a, c, d)
  3204. },
  3205. animate: function(a, b, c, d) {
  3206. var e = m.isEmptyObject(a)
  3207. , f = m.speed(b, c, d)
  3208. , g = function() {
  3209. var b = kb(this, m.extend({}, a), f);
  3210. (e || m._data(this, "finish")) && b.stop(!0)
  3211. };
  3212. return g.finish = g,
  3213. e || f.queue === !1 ? this.each(g) : this.queue(f.queue, g)
  3214. },
  3215. stop: function(a, b, c) {
  3216. var d = function(a) {
  3217. var b = a.stop;
  3218. delete a.stop,
  3219. b(c)
  3220. };
  3221. return "string" != typeof a && (c = b,
  3222. b = a,
  3223. a = void 0),
  3224. b && a !== !1 && this.queue(a || "fx", []),
  3225. this.each(function() {
  3226. var b = !0
  3227. , e = null != a && a + "queueHooks"
  3228. , f = m.timers
  3229. , g = m._data(this);
  3230. if (e)
  3231. g[e] && g[e].stop && d(g[e]);
  3232. else
  3233. for (e in g)
  3234. g[e] && g[e].stop && cb.test(e) && d(g[e]);
  3235. for (e = f.length; e--; )
  3236. f[e].elem !== this || null != a && f[e].queue !== a || (f[e].anim.stop(c),
  3237. b = !1,
  3238. f.splice(e, 1));
  3239. (b || !c) && m.dequeue(this, a)
  3240. })
  3241. },
  3242. finish: function(a) {
  3243. return a !== !1 && (a = a || "fx"),
  3244. this.each(function() {
  3245. var b, c = m._data(this), d = c[a + "queue"], e = c[a + "queueHooks"], f = m.timers, g = d ? d.length : 0;
  3246. for (c.finish = !0,
  3247. m.queue(this, a, []),
  3248. e && e.stop && e.stop.call(this, !0),
  3249. b = f.length; b--; )
  3250. f[b].elem === this && f[b].queue === a && (f[b].anim.stop(!0),
  3251. f.splice(b, 1));
  3252. for (b = 0; g > b; b++)
  3253. d[b] && d[b].finish && d[b].finish.call(this);
  3254. delete c.finish
  3255. })
  3256. }
  3257. }),
  3258. m.each(["toggle", "show", "hide"], function(a, b) {
  3259. var c = m.fn[b];
  3260. m.fn[b] = function(a, d, e) {
  3261. return null == a || "boolean" == typeof a ? c.apply(this, arguments) : this.animate(gb(b, !0), a, d, e)
  3262. }
  3263. }),
  3264. m.each({
  3265. slideDown: gb("show"),
  3266. slideUp: gb("hide"),
  3267. slideToggle: gb("toggle"),
  3268. fadeIn: {
  3269. opacity: "show"
  3270. },
  3271. fadeOut: {
  3272. opacity: "hide"
  3273. },
  3274. fadeToggle: {
  3275. opacity: "toggle"
  3276. }
  3277. }, function(a, b) {
  3278. m.fn[a] = function(a, c, d) {
  3279. return this.animate(b, a, c, d)
  3280. }
  3281. }),
  3282. m.timers = [],
  3283. m.fx.tick = function() {
  3284. var a, b = m.timers, c = 0;
  3285. for ($a = m.now(); c < b.length; c++)
  3286. a = b[c],
  3287. a() || b[c] !== a || b.splice(c--, 1);
  3288. b.length || m.fx.stop(),
  3289. $a = void 0
  3290. }
  3291. ,
  3292. m.fx.timer = function(a) {
  3293. m.timers.push(a),
  3294. a() ? m.fx.start() : m.timers.pop()
  3295. }
  3296. ,
  3297. m.fx.interval = 13,
  3298. m.fx.start = function() {
  3299. _a || (_a = setInterval(m.fx.tick, m.fx.interval))
  3300. }
  3301. ,
  3302. m.fx.stop = function() {
  3303. clearInterval(_a),
  3304. _a = null
  3305. }
  3306. ,
  3307. m.fx.speeds = {
  3308. slow: 600,
  3309. fast: 200,
  3310. _default: 400
  3311. },
  3312. m.fn.delay = function(a, b) {
  3313. return a = m.fx ? m.fx.speeds[a] || a : a,
  3314. b = b || "fx",
  3315. this.queue(b, function(b, c) {
  3316. var d = setTimeout(b, a);
  3317. c.stop = function() {
  3318. clearTimeout(d)
  3319. }
  3320. })
  3321. }
  3322. ,
  3323. function() {
  3324. var a, b, c, d, e;
  3325. b = y.createElement("div"),
  3326. b.setAttribute("className", "t"),
  3327. b.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",
  3328. d = b.getElementsByTagName("a")[0],
  3329. c = y.createElement("select"),
  3330. e = c.appendChild(y.createElement("option")),
  3331. a = b.getElementsByTagName("input")[0],
  3332. d.style.cssText = "top:1px",
  3333. k.getSetAttribute = "t" !== b.className,
  3334. k.style = /top/.test(d.getAttribute("style")),
  3335. k.hrefNormalized = "/a" === d.getAttribute("href"),
  3336. k.checkOn = !!a.value,
  3337. k.optSelected = e.selected,
  3338. k.enctype = !!y.createElement("form").enctype,
  3339. c.disabled = !0,
  3340. k.optDisabled = !e.disabled,
  3341. a = y.createElement("input"),
  3342. a.setAttribute("value", ""),
  3343. k.input = "" === a.getAttribute("value"),
  3344. a.value = "t",
  3345. a.setAttribute("type", "radio"),
  3346. k.radioValue = "t" === a.value
  3347. }();
  3348. var lb = /\r/g;
  3349. m.fn.extend({
  3350. val: function(a) {
  3351. var b, c, d, e = this[0];
  3352. {
  3353. if (arguments.length)
  3354. return d = m.isFunction(a),
  3355. this.each(function(c) {
  3356. var e;
  3357. 1 === this.nodeType && (e = d ? a.call(this, c, m(this).val()) : a,
  3358. null == e ? e = "" : "number" == typeof e ? e += "" : m.isArray(e) && (e = m.map(e, function(a) {
  3359. return null == a ? "" : a + ""
  3360. })),
  3361. b = m.valHooks[this.type] || m.valHooks[this.nodeName.toLowerCase()],
  3362. b && "set"in b && void 0 !== b.set(this, e, "value") || (this.value = e))
  3363. });
  3364. if (e)
  3365. return b = m.valHooks[e.type] || m.valHooks[e.nodeName.toLowerCase()],
  3366. b && "get"in b && void 0 !== (c = b.get(e, "value")) ? c : (c = e.value,
  3367. "string" == typeof c ? c.replace(lb, "") : null == c ? "" : c)
  3368. }
  3369. }
  3370. }),
  3371. m.extend({
  3372. valHooks: {
  3373. option: {
  3374. get: function(a) {
  3375. var b = m.find.attr(a, "value");
  3376. return null != b ? b : m.trim(m.text(a))
  3377. }
  3378. },
  3379. select: {
  3380. get: function(a) {
  3381. for (var b, c, d = a.options, e = a.selectedIndex, f = "select-one" === a.type || 0 > e, g = f ? null : [], h = f ? e + 1 : d.length, i = 0 > e ? h : f ? e : 0; h > i; i++)
  3382. if (c = d[i],
  3383. !(!c.selected && i !== e || (k.optDisabled ? c.disabled : null !== c.getAttribute("disabled")) || c.parentNode.disabled && m.nodeName(c.parentNode, "optgroup"))) {
  3384. if (b = m(c).val(),
  3385. f)
  3386. return b;
  3387. g.push(b)
  3388. }
  3389. return g
  3390. },
  3391. set: function(a, b) {
  3392. var c, d, e = a.options, f = m.makeArray(b), g = e.length;
  3393. while (g--)
  3394. if (d = e[g],
  3395. m.inArray(m.valHooks.option.get(d), f) >= 0)
  3396. try {
  3397. d.selected = c = !0
  3398. } catch (h) {
  3399. d.scrollHeight
  3400. }
  3401. else
  3402. d.selected = !1;
  3403. return c || (a.selectedIndex = -1),
  3404. e
  3405. }
  3406. }
  3407. }
  3408. }),
  3409. m.each(["radio", "checkbox"], function() {
  3410. m.valHooks[this] = {
  3411. set: function(a, b) {
  3412. return m.isArray(b) ? a.checked = m.inArray(m(a).val(), b) >= 0 : void 0
  3413. }
  3414. },
  3415. k.checkOn || (m.valHooks[this].get = function(a) {
  3416. return null === a.getAttribute("value") ? "on" : a.value
  3417. }
  3418. )
  3419. });
  3420. var mb, nb, ob = m.expr.attrHandle, pb = /^(?:checked|selected)$/i, qb = k.getSetAttribute, rb = k.input;
  3421. m.fn.extend({
  3422. attr: function(a, b) {
  3423. return V(this, m.attr, a, b, arguments.length > 1)
  3424. },
  3425. removeAttr: function(a) {
  3426. return this.each(function() {
  3427. m.removeAttr(this, a)
  3428. })
  3429. }
  3430. }),
  3431. m.extend({
  3432. attr: function(a, b, c) {
  3433. var d, e, f = a.nodeType;
  3434. if (a && 3 !== f && 8 !== f && 2 !== f)
  3435. return typeof a.getAttribute === K ? m.prop(a, b, c) : (1 === f && m.isXMLDoc(a) || (b = b.toLowerCase(),
  3436. d = m.attrHooks[b] || (m.expr.match.bool.test(b) ? nb : mb)),
  3437. void 0 === c ? d && "get"in d && null !== (e = d.get(a, b)) ? e : (e = m.find.attr(a, b),
  3438. null == e ? void 0 : e) : null !== c ? d && "set"in d && void 0 !== (e = d.set(a, c, b)) ? e : (a.setAttribute(b, c + ""),
  3439. c) : void m.removeAttr(a, b))
  3440. },
  3441. removeAttr: function(a, b) {
  3442. var c, d, e = 0, f = b && b.match(E);
  3443. if (f && 1 === a.nodeType)
  3444. while (c = f[e++])
  3445. d = m.propFix[c] || c,
  3446. m.expr.match.bool.test(c) ? rb && qb || !pb.test(c) ? a[d] = !1 : a[m.camelCase("default-" + c)] = a[d] = !1 : m.attr(a, c, ""),
  3447. a.removeAttribute(qb ? c : d)
  3448. },
  3449. attrHooks: {
  3450. type: {
  3451. set: function(a, b) {
  3452. if (!k.radioValue && "radio" === b && m.nodeName(a, "input")) {
  3453. var c = a.value;
  3454. return a.setAttribute("type", b),
  3455. c && (a.value = c),
  3456. b
  3457. }
  3458. }
  3459. }
  3460. }
  3461. }),
  3462. nb = {
  3463. set: function(a, b, c) {
  3464. return b === !1 ? m.removeAttr(a, c) : rb && qb || !pb.test(c) ? a.setAttribute(!qb && m.propFix[c] || c, c) : a[m.camelCase("default-" + c)] = a[c] = !0,
  3465. c
  3466. }
  3467. },
  3468. m.each(m.expr.match.bool.source.match(/\w+/g), function(a, b) {
  3469. var c = ob[b] || m.find.attr;
  3470. ob[b] = rb && qb || !pb.test(b) ? function(a, b, d) {
  3471. var e, f;
  3472. return d || (f = ob[b],
  3473. ob[b] = e,
  3474. e = null != c(a, b, d) ? b.toLowerCase() : null,
  3475. ob[b] = f),
  3476. e
  3477. }
  3478. : function(a, b, c) {
  3479. return c ? void 0 : a[m.camelCase("default-" + b)] ? b.toLowerCase() : null
  3480. }
  3481. }),
  3482. rb && qb || (m.attrHooks.value = {
  3483. set: function(a, b, c) {
  3484. return m.nodeName(a, "input") ? void (a.defaultValue = b) : mb && mb.set(a, b, c)
  3485. }
  3486. }),
  3487. qb || (mb = {
  3488. set: function(a, b, c) {
  3489. var d = a.getAttributeNode(c);
  3490. return d || a.setAttributeNode(d = a.ownerDocument.createAttribute(c)),
  3491. d.value = b += "",
  3492. "value" === c || b === a.getAttribute(c) ? b : void 0
  3493. }
  3494. },
  3495. ob.id = ob.name = ob.coords = function(a, b, c) {
  3496. var d;
  3497. return c ? void 0 : (d = a.getAttributeNode(b)) && "" !== d.value ? d.value : null
  3498. }
  3499. ,
  3500. m.valHooks.button = {
  3501. get: function(a, b) {
  3502. var c = a.getAttributeNode(b);
  3503. return c && c.specified ? c.value : void 0
  3504. },
  3505. set: mb.set
  3506. },
  3507. m.attrHooks.contenteditable = {
  3508. set: function(a, b, c) {
  3509. mb.set(a, "" === b ? !1 : b, c)
  3510. }
  3511. },
  3512. m.each(["width", "height"], function(a, b) {
  3513. m.attrHooks[b] = {
  3514. set: function(a, c) {
  3515. return "" === c ? (a.setAttribute(b, "auto"),
  3516. c) : void 0
  3517. }
  3518. }
  3519. })),
  3520. k.style || (m.attrHooks.style = {
  3521. get: function(a) {
  3522. return a.style.cssText || void 0
  3523. },
  3524. set: function(a, b) {
  3525. return a.style.cssText = b + ""
  3526. }
  3527. });
  3528. var sb = /^(?:input|select|textarea|button|object)$/i
  3529. , tb = /^(?:a|area)$/i;
  3530. m.fn.extend({
  3531. prop: function(a, b) {
  3532. return V(this, m.prop, a, b, arguments.length > 1)
  3533. },
  3534. removeProp: function(a) {
  3535. return a = m.propFix[a] || a,
  3536. this.each(function() {
  3537. try {
  3538. this[a] = void 0,
  3539. delete this[a]
  3540. } catch (b) {}
  3541. })
  3542. }
  3543. }),
  3544. m.extend({
  3545. propFix: {
  3546. "for": "htmlFor",
  3547. "class": "className"
  3548. },
  3549. prop: function(a, b, c) {
  3550. var d, e, f, g = a.nodeType;
  3551. if (a && 3 !== g && 8 !== g && 2 !== g)
  3552. return f = 1 !== g || !m.isXMLDoc(a),
  3553. f && (b = m.propFix[b] || b,
  3554. e = m.propHooks[b]),
  3555. void 0 !== c ? e && "set"in e && void 0 !== (d = e.set(a, c, b)) ? d : a[b] = c : e && "get"in e && null !== (d = e.get(a, b)) ? d : a[b]
  3556. },
  3557. propHooks: {
  3558. tabIndex: {
  3559. get: function(a) {
  3560. var b = m.find.attr(a, "tabindex");
  3561. return b ? parseInt(b, 10) : sb.test(a.nodeName) || tb.test(a.nodeName) && a.href ? 0 : -1
  3562. }
  3563. }
  3564. }
  3565. }),
  3566. k.hrefNormalized || m.each(["href", "src"], function(a, b) {
  3567. m.propHooks[b] = {
  3568. get: function(a) {
  3569. return a.getAttribute(b, 4)
  3570. }
  3571. }
  3572. }),
  3573. k.optSelected || (m.propHooks.selected = {
  3574. get: function(a) {
  3575. var b = a.parentNode;
  3576. return b && (b.selectedIndex,
  3577. b.parentNode && b.parentNode.selectedIndex),
  3578. null
  3579. }
  3580. }),
  3581. m.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function() {
  3582. m.propFix[this.toLowerCase()] = this
  3583. }),
  3584. k.enctype || (m.propFix.enctype = "encoding");
  3585. var ub = /[\t\r\n\f]/g;
  3586. m.fn.extend({
  3587. addClass: function(a) {
  3588. var b, c, d, e, f, g, h = 0, i = this.length, j = "string" == typeof a && a;
  3589. if (m.isFunction(a))
  3590. return this.each(function(b) {
  3591. m(this).addClass(a.call(this, b, this.className))
  3592. });
  3593. if (j)
  3594. for (b = (a || "").match(E) || []; i > h; h++)
  3595. if (c = this[h],
  3596. d = 1 === c.nodeType && (c.className ? (" " + c.className + " ").replace(ub, " ") : " ")) {
  3597. f = 0;
  3598. while (e = b[f++])
  3599. d.indexOf(" " + e + " ") < 0 && (d += e + " ");
  3600. g = m.trim(d),
  3601. c.className !== g && (c.className = g)
  3602. }
  3603. return this
  3604. },
  3605. removeClass: function(a) {
  3606. var b, c, d, e, f, g, h = 0, i = this.length, j = 0 === arguments.length || "string" == typeof a && a;
  3607. if (m.isFunction(a))
  3608. return this.each(function(b) {
  3609. m(this).removeClass(a.call(this, b, this.className))
  3610. });
  3611. if (j)
  3612. for (b = (a || "").match(E) || []; i > h; h++)
  3613. if (c = this[h],
  3614. d = 1 === c.nodeType && (c.className ? (" " + c.className + " ").replace(ub, " ") : "")) {
  3615. f = 0;
  3616. while (e = b[f++])
  3617. while (d.indexOf(" " + e + " ") >= 0)
  3618. d = d.replace(" " + e + " ", " ");
  3619. g = a ? m.trim(d) : "",
  3620. c.className !== g && (c.className = g)
  3621. }
  3622. return this
  3623. },
  3624. toggleClass: function(a, b) {
  3625. var c = typeof a;
  3626. return "boolean" == typeof b && "string" === c ? b ? this.addClass(a) : this.removeClass(a) : this.each(m.isFunction(a) ? function(c) {
  3627. m(this).toggleClass(a.call(this, c, this.className, b), b)
  3628. }
  3629. : function() {
  3630. if ("string" === c) {
  3631. var b, d = 0, e = m(this), f = a.match(E) || [];
  3632. while (b = f[d++])
  3633. e.hasClass(b) ? e.removeClass(b) : e.addClass(b)
  3634. } else
  3635. (c === K || "boolean" === c) && (this.className && m._data(this, "__className__", this.className),
  3636. this.className = this.className || a === !1 ? "" : m._data(this, "__className__") || "")
  3637. }
  3638. )
  3639. },
  3640. hasClass: function(a) {
  3641. for (var b = " " + a + " ", c = 0, d = this.length; d > c; c++)
  3642. if (1 === this[c].nodeType && (" " + this[c].className + " ").replace(ub, " ").indexOf(b) >= 0)
  3643. return !0;
  3644. return !1
  3645. }
  3646. }),
  3647. m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "), function(a, b) {
  3648. m.fn[b] = function(a, c) {
  3649. return arguments.length > 0 ? this.on(b, null, a, c) : this.trigger(b)
  3650. }
  3651. }),
  3652. m.fn.extend({
  3653. hover: function(a, b) {
  3654. return this.mouseenter(a).mouseleave(b || a)
  3655. },
  3656. bind: function(a, b, c) {
  3657. return this.on(a, null, b, c)
  3658. },
  3659. unbind: function(a, b) {
  3660. return this.off(a, null, b)
  3661. },
  3662. delegate: function(a, b, c, d) {
  3663. return this.on(b, a, c, d)
  3664. },
  3665. undelegate: function(a, b, c) {
  3666. return 1 === arguments.length ? this.off(a, "**") : this.off(b, a || "**", c)
  3667. }
  3668. });
  3669. var vb = m.now()
  3670. , wb = /\?/
  3671. , xb = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
  3672. m.parseJSON = function(b) {
  3673. if (a.JSON && a.JSON.parse)
  3674. return a.JSON.parse(b + "");
  3675. var c, d = null, e = m.trim(b + "");
  3676. return e && !m.trim(e.replace(xb, function(a, b, e, f) {
  3677. return c && b && (d = 0),
  3678. 0 === d ? a : (c = e || b,
  3679. d += !f - !e,
  3680. "")
  3681. })) ? Function("return " + e)() : m.error("Invalid JSON: " + b)
  3682. }
  3683. ,
  3684. m.parseXML = function(b) {
  3685. var c, d;
  3686. if (!b || "string" != typeof b)
  3687. return null;
  3688. try {
  3689. a.DOMParser ? (d = new DOMParser,
  3690. c = d.parseFromString(b, "text/xml")) : (c = new ActiveXObject("Microsoft.XMLDOM"),
  3691. c.async = "false",
  3692. c.loadXML(b))
  3693. } catch (e) {
  3694. c = void 0
  3695. }
  3696. return c && c.documentElement && !c.getElementsByTagName("parsererror").length || m.error("Invalid XML: " + b),
  3697. c
  3698. }
  3699. ;
  3700. var yb, zb, Ab = /#.*$/, Bb = /([?&])_=[^&]*/, Cb = /^(.*?):[ \t]*([^\r\n]*)\r?$/gm, Db = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, Eb = /^(?:GET|HEAD)$/, Fb = /^\/\//, Gb = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/, Hb = {}, Ib = {}, Jb = "*/".concat("*");
  3701. try {
  3702. zb = location.href
  3703. } catch (Kb) {
  3704. zb = y.createElement("a"),
  3705. zb.href = "",
  3706. zb = zb.href
  3707. }
  3708. yb = Gb.exec(zb.toLowerCase()) || [];
  3709. function Lb(a) {
  3710. return function(b, c) {
  3711. "string" != typeof b && (c = b,
  3712. b = "*");
  3713. var d, e = 0, f = b.toLowerCase().match(E) || [];
  3714. if (m.isFunction(c))
  3715. while (d = f[e++])
  3716. "+" === d.charAt(0) ? (d = d.slice(1) || "*",
  3717. (a[d] = a[d] || []).unshift(c)) : (a[d] = a[d] || []).push(c)
  3718. }
  3719. }
  3720. function Mb(a, b, c, d) {
  3721. var e = {}
  3722. , f = a === Ib;
  3723. function g(h) {
  3724. var i;
  3725. return e[h] = !0,
  3726. m.each(a[h] || [], function(a, h) {
  3727. var j = h(b, c, d);
  3728. return "string" != typeof j || f || e[j] ? f ? !(i = j) : void 0 : (b.dataTypes.unshift(j),
  3729. g(j),
  3730. !1)
  3731. }),
  3732. i
  3733. }
  3734. return g(b.dataTypes[0]) || !e["*"] && g("*")
  3735. }
  3736. function Nb(a, b) {
  3737. var c, d, e = m.ajaxSettings.flatOptions || {};
  3738. for (d in b)
  3739. void 0 !== b[d] && ((e[d] ? a : c || (c = {}))[d] = b[d]);
  3740. return c && m.extend(!0, a, c),
  3741. a
  3742. }
  3743. function Ob(a, b, c) {
  3744. var d, e, f, g, h = a.contents, i = a.dataTypes;
  3745. while ("*" === i[0])
  3746. i.shift(),
  3747. void 0 === e && (e = a.mimeType || b.getResponseHeader("Content-Type"));
  3748. if (e)
  3749. for (g in h)
  3750. if (h[g] && h[g].test(e)) {
  3751. i.unshift(g);
  3752. break
  3753. }
  3754. if (i[0]in c)
  3755. f = i[0];
  3756. else {
  3757. for (g in c) {
  3758. if (!i[0] || a.converters[g + " " + i[0]]) {
  3759. f = g;
  3760. break
  3761. }
  3762. d || (d = g)
  3763. }
  3764. f = f || d
  3765. }
  3766. return f ? (f !== i[0] && i.unshift(f),
  3767. c[f]) : void 0
  3768. }
  3769. function Pb(a, b, c, d) {
  3770. var e, f, g, h, i, j = {}, k = a.dataTypes.slice();
  3771. if (k[1])
  3772. for (g in a.converters)
  3773. j[g.toLowerCase()] = a.converters[g];
  3774. f = k.shift();
  3775. while (f)
  3776. if (a.responseFields[f] && (c[a.responseFields[f]] = b),
  3777. !i && d && a.dataFilter && (b = a.dataFilter(b, a.dataType)),
  3778. i = f,
  3779. f = k.shift())
  3780. if ("*" === f)
  3781. f = i;
  3782. else if ("*" !== i && i !== f) {
  3783. if (g = j[i + " " + f] || j["* " + f],
  3784. !g)
  3785. for (e in j)
  3786. if (h = e.split(" "),
  3787. h[1] === f && (g = j[i + " " + h[0]] || j["* " + h[0]])) {
  3788. g === !0 ? g = j[e] : j[e] !== !0 && (f = h[0],
  3789. k.unshift(h[1]));
  3790. break
  3791. }
  3792. if (g !== !0)
  3793. if (g && a["throws"])
  3794. b = g(b);
  3795. else
  3796. try {
  3797. b = g(b)
  3798. } catch (l) {
  3799. return {
  3800. state: "parsererror",
  3801. error: g ? l : "No conversion from " + i + " to " + f
  3802. }
  3803. }
  3804. }
  3805. return {
  3806. state: "success",
  3807. data: b
  3808. }
  3809. }
  3810. m.extend({
  3811. active: 0,
  3812. lastModified: {},
  3813. etag: {},
  3814. ajaxSettings: {
  3815. url: zb,
  3816. type: "GET",
  3817. isLocal: Db.test(yb[1]),
  3818. global: !0,
  3819. processData: !0,
  3820. async: !0,
  3821. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  3822. accepts: {
  3823. "*": Jb,
  3824. text: "text/plain",
  3825. html: "text/html",
  3826. xml: "application/xml, text/xml",
  3827. json: "application/json, text/javascript"
  3828. },
  3829. contents: {
  3830. xml: /xml/,
  3831. html: /html/,
  3832. json: /json/
  3833. },
  3834. responseFields: {
  3835. xml: "responseXML",
  3836. text: "responseText",
  3837. json: "responseJSON"
  3838. },
  3839. converters: {
  3840. "* text": String,
  3841. "text html": !0,
  3842. "text json": m.parseJSON,
  3843. "text xml": m.parseXML
  3844. },
  3845. flatOptions: {
  3846. url: !0,
  3847. context: !0
  3848. }
  3849. },
  3850. ajaxSetup: function(a, b) {
  3851. return b ? Nb(Nb(a, m.ajaxSettings), b) : Nb(m.ajaxSettings, a)
  3852. },
  3853. ajaxPrefilter: Lb(Hb),
  3854. ajaxTransport: Lb(Ib),
  3855. ajax: function(a, b) {
  3856. "object" == typeof a && (b = a,
  3857. a = void 0),
  3858. b = b || {};
  3859. var c, d, e, f, g, h, i, j, k = m.ajaxSetup({}, b), l = k.context || k, n = k.context && (l.nodeType || l.jquery) ? m(l) : m.event, o = m.Deferred(), p = m.Callbacks("once memory"), q = k.statusCode || {}, r = {}, s = {}, t = 0, u = "canceled", v = {
  3860. readyState: 0,
  3861. getResponseHeader: function(a) {
  3862. var b;
  3863. if (2 === t) {
  3864. if (!j) {
  3865. j = {};
  3866. while (b = Cb.exec(f))
  3867. j[b[1].toLowerCase()] = b[2]
  3868. }
  3869. b = j[a.toLowerCase()]
  3870. }
  3871. return null == b ? null : b
  3872. },
  3873. getAllResponseHeaders: function() {
  3874. return 2 === t ? f : null
  3875. },
  3876. setRequestHeader: function(a, b) {
  3877. var c = a.toLowerCase();
  3878. return t || (a = s[c] = s[c] || a,
  3879. r[a] = b),
  3880. this
  3881. },
  3882. overrideMimeType: function(a) {
  3883. return t || (k.mimeType = a),
  3884. this
  3885. },
  3886. statusCode: function(a) {
  3887. var b;
  3888. if (a)
  3889. if (2 > t)
  3890. for (b in a)
  3891. q[b] = [q[b], a[b]];
  3892. else
  3893. v.always(a[v.status]);
  3894. return this
  3895. },
  3896. abort: function(a) {
  3897. var b = a || u;
  3898. return i && i.abort(b),
  3899. x(0, b),
  3900. this
  3901. }
  3902. };
  3903. if (o.promise(v).complete = p.add,
  3904. v.success = v.done,
  3905. v.error = v.fail,
  3906. k.url = ((a || k.url || zb) + "").replace(Ab, "").replace(Fb, yb[1] + "//"),
  3907. k.type = b.method || b.type || k.method || k.type,
  3908. k.dataTypes = m.trim(k.dataType || "*").toLowerCase().match(E) || [""],
  3909. null == k.crossDomain && (c = Gb.exec(k.url.toLowerCase()),
  3910. k.crossDomain = !(!c || c[1] === yb[1] && c[2] === yb[2] && (c[3] || ("http:" === c[1] ? "80" : "443")) === (yb[3] || ("http:" === yb[1] ? "80" : "443")))),
  3911. k.data && k.processData && "string" != typeof k.data && (k.data = m.param(k.data, k.traditional)),
  3912. Mb(Hb, k, b, v),
  3913. 2 === t)
  3914. return v;
  3915. h = m.event && k.global,
  3916. h && 0 === m.active++ && m.event.trigger("ajaxStart"),
  3917. k.type = k.type.toUpperCase(),
  3918. k.hasContent = !Eb.test(k.type),
  3919. e = k.url,
  3920. k.hasContent || (k.data && (e = k.url += (wb.test(e) ? "&" : "?") + k.data,
  3921. delete k.data),
  3922. k.cache === !1 && (k.url = Bb.test(e) ? e.replace(Bb, "$1_=" + vb++) : e + (wb.test(e) ? "&" : "?") + "_=" + vb++)),
  3923. k.ifModified && (m.lastModified[e] && v.setRequestHeader("If-Modified-Since", m.lastModified[e]),
  3924. m.etag[e] && v.setRequestHeader("If-None-Match", m.etag[e])),
  3925. (k.data && k.hasContent && k.contentType !== !1 || b.contentType) && v.setRequestHeader("Content-Type", k.contentType),
  3926. v.setRequestHeader("Accept", k.dataTypes[0] && k.accepts[k.dataTypes[0]] ? k.accepts[k.dataTypes[0]] + ("*" !== k.dataTypes[0] ? ", " + Jb + "; q=0.01" : "") : k.accepts["*"]);
  3927. for (d in k.headers)
  3928. v.setRequestHeader(d, k.headers[d]);
  3929. if (k.beforeSend && (k.beforeSend.call(l, v, k) === !1 || 2 === t))
  3930. return v.abort();
  3931. u = "abort";
  3932. for (d in {
  3933. success: 1,
  3934. error: 1,
  3935. complete: 1
  3936. })
  3937. v[d](k[d]);
  3938. if (i = Mb(Ib, k, b, v)) {
  3939. v.readyState = 1,
  3940. h && n.trigger("ajaxSend", [v, k]),
  3941. k.async && k.timeout > 0 && (g = setTimeout(function() {
  3942. v.abort("timeout")
  3943. }, k.timeout));
  3944. try {
  3945. t = 1,
  3946. i.send(r, x)
  3947. } catch (w) {
  3948. if (!(2 > t))
  3949. throw w;
  3950. x(-1, w)
  3951. }
  3952. } else
  3953. x(-1, "No Transport");
  3954. function x(a, b, c, d) {
  3955. var j, r, s, u, w, x = b;
  3956. 2 !== t && (t = 2,
  3957. g && clearTimeout(g),
  3958. i = void 0,
  3959. f = d || "",
  3960. v.readyState = a > 0 ? 4 : 0,
  3961. j = a >= 200 && 300 > a || 304 === a,
  3962. c && (u = Ob(k, v, c)),
  3963. u = Pb(k, u, v, j),
  3964. j ? (k.ifModified && (w = v.getResponseHeader("Last-Modified"),
  3965. w && (m.lastModified[e] = w),
  3966. w = v.getResponseHeader("etag"),
  3967. w && (m.etag[e] = w)),
  3968. 204 === a || "HEAD" === k.type ? x = "nocontent" : 304 === a ? x = "notmodified" : (x = u.state,
  3969. r = u.data,
  3970. s = u.error,
  3971. j = !s)) : (s = x,
  3972. (a || !x) && (x = "error",
  3973. 0 > a && (a = 0))),
  3974. v.status = a,
  3975. v.statusText = (b || x) + "",
  3976. j ? o.resolveWith(l, [r, x, v]) : o.rejectWith(l, [v, x, s]),
  3977. v.statusCode(q),
  3978. q = void 0,
  3979. h && n.trigger(j ? "ajaxSuccess" : "ajaxError", [v, k, j ? r : s]),
  3980. p.fireWith(l, [v, x]),
  3981. h && (n.trigger("ajaxComplete", [v, k]),
  3982. --m.active || m.event.trigger("ajaxStop")))
  3983. }
  3984. return v
  3985. },
  3986. getJSON: function(a, b, c) {
  3987. return m.get(a, b, c, "json")
  3988. },
  3989. getScript: function(a, b) {
  3990. return m.get(a, void 0, b, "script")
  3991. }
  3992. }),
  3993. m.each(["get", "post"], function(a, b) {
  3994. m[b] = function(a, c, d, e) {
  3995. return m.isFunction(c) && (e = e || d,
  3996. d = c,
  3997. c = void 0),
  3998. m.ajax({
  3999. url: a,
  4000. type: b,
  4001. dataType: e,
  4002. data: c,
  4003. success: d
  4004. })
  4005. }
  4006. }),
  4007. m._evalUrl = function(a) {
  4008. return m.ajax({
  4009. url: a,
  4010. type: "GET",
  4011. dataType: "script",
  4012. async: !1,
  4013. global: !1,
  4014. "throws": !0
  4015. })
  4016. }
  4017. ,
  4018. m.fn.extend({
  4019. wrapAll: function(a) {
  4020. if (m.isFunction(a))
  4021. return this.each(function(b) {
  4022. m(this).wrapAll(a.call(this, b))
  4023. });
  4024. if (this[0]) {
  4025. var b = m(a, this[0].ownerDocument).eq(0).clone(!0);
  4026. this[0].parentNode && b.insertBefore(this[0]),
  4027. b.map(function() {
  4028. var a = this;
  4029. while (a.firstChild && 1 === a.firstChild.nodeType)
  4030. a = a.firstChild;
  4031. return a
  4032. }).append(this)
  4033. }
  4034. return this
  4035. },
  4036. wrapInner: function(a) {
  4037. return this.each(m.isFunction(a) ? function(b) {
  4038. m(this).wrapInner(a.call(this, b))
  4039. }
  4040. : function() {
  4041. var b = m(this)
  4042. , c = b.contents();
  4043. c.length ? c.wrapAll(a) : b.append(a)
  4044. }
  4045. )
  4046. },
  4047. wrap: function(a) {
  4048. var b = m.isFunction(a);
  4049. return this.each(function(c) {
  4050. m(this).wrapAll(b ? a.call(this, c) : a)
  4051. })
  4052. },
  4053. unwrap: function() {
  4054. return this.parent().each(function() {
  4055. m.nodeName(this, "body") || m(this).replaceWith(this.childNodes)
  4056. }).end()
  4057. }
  4058. }),
  4059. m.expr.filters.hidden = function(a) {
  4060. return a.offsetWidth <= 0 && a.offsetHeight <= 0 || !k.reliableHiddenOffsets() && "none" === (a.style && a.style.display || m.css(a, "display"))
  4061. }
  4062. ,
  4063. m.expr.filters.visible = function(a) {
  4064. return !m.expr.filters.hidden(a)
  4065. }
  4066. ;
  4067. var Qb = /%20/g
  4068. , Rb = /\[\]$/
  4069. , Sb = /\r?\n/g
  4070. , Tb = /^(?:submit|button|image|reset|file)$/i
  4071. , Ub = /^(?:input|select|textarea|keygen)/i;
  4072. function Vb(a, b, c, d) {
  4073. var e;
  4074. if (m.isArray(b))
  4075. m.each(b, function(b, e) {
  4076. c || Rb.test(a) ? d(a, e) : Vb(a + "[" + ("object" == typeof e ? b : "") + "]", e, c, d)
  4077. });
  4078. else if (c || "object" !== m.type(b))
  4079. d(a, b);
  4080. else
  4081. for (e in b)
  4082. Vb(a + "[" + e + "]", b[e], c, d)
  4083. }
  4084. m.param = function(a, b) {
  4085. var c, d = [], e = function(a, b) {
  4086. b = m.isFunction(b) ? b() : null == b ? "" : b,
  4087. d[d.length] = encodeURIComponent(a) + "=" + encodeURIComponent(b)
  4088. };
  4089. if (void 0 === b && (b = m.ajaxSettings && m.ajaxSettings.traditional),
  4090. m.isArray(a) || a.jquery && !m.isPlainObject(a))
  4091. m.each(a, function() {
  4092. e(this.name, this.value)
  4093. });
  4094. else
  4095. for (c in a)
  4096. Vb(c, a[c], b, e);
  4097. return d.join("&").replace(Qb, "+")
  4098. }
  4099. ,
  4100. m.fn.extend({
  4101. serialize: function() {
  4102. return m.param(this.serializeArray())
  4103. },
  4104. serializeArray: function() {
  4105. return this.map(function() {
  4106. var a = m.prop(this, "elements");
  4107. return a ? m.makeArray(a) : this
  4108. }).filter(function() {
  4109. var a = this.type;
  4110. return this.name && !m(this).is(":disabled") && Ub.test(this.nodeName) && !Tb.test(a) && (this.checked || !W.test(a))
  4111. }).map(function(a, b) {
  4112. var c = m(this).val();
  4113. return null == c ? null : m.isArray(c) ? m.map(c, function(a) {
  4114. return {
  4115. name: b.name,
  4116. value: a.replace(Sb, "\r\n")
  4117. }
  4118. }) : {
  4119. name: b.name,
  4120. value: c.replace(Sb, "\r\n")
  4121. }
  4122. }).get()
  4123. }
  4124. }),
  4125. m.ajaxSettings.xhr = void 0 !== a.ActiveXObject ? function() {
  4126. return !this.isLocal && /^(get|post|head|put|delete|options)$/i.test(this.type) && Zb() || $b()
  4127. }
  4128. : Zb;
  4129. var Wb = 0
  4130. , Xb = {}
  4131. , Yb = m.ajaxSettings.xhr();
  4132. a.attachEvent && a.attachEvent("onunload", function() {
  4133. for (var a in Xb)
  4134. Xb[a](void 0, !0)
  4135. }),
  4136. k.cors = !!Yb && "withCredentials"in Yb,
  4137. Yb = k.ajax = !!Yb,
  4138. Yb && m.ajaxTransport(function(a) {
  4139. if (!a.crossDomain || k.cors) {
  4140. var b;
  4141. return {
  4142. send: function(c, d) {
  4143. var e, f = a.xhr(), g = ++Wb;
  4144. if (f.open(a.type, a.url, a.async, a.username, a.password),
  4145. a.xhrFields)
  4146. for (e in a.xhrFields)
  4147. f[e] = a.xhrFields[e];
  4148. a.mimeType && f.overrideMimeType && f.overrideMimeType(a.mimeType),
  4149. a.crossDomain || c["X-Requested-With"] || (c["X-Requested-With"] = "XMLHttpRequest");
  4150. for (e in c)
  4151. void 0 !== c[e] && f.setRequestHeader(e, c[e] + "");
  4152. f.send(a.hasContent && a.data || null),
  4153. b = function(c, e) {
  4154. var h, i, j;
  4155. if (b && (e || 4 === f.readyState))
  4156. if (delete Xb[g],
  4157. b = void 0,
  4158. f.onreadystatechange = m.noop,
  4159. e)
  4160. 4 !== f.readyState && f.abort();
  4161. else {
  4162. j = {},
  4163. h = f.status,
  4164. "string" == typeof f.responseText && (j.text = f.responseText);
  4165. try {
  4166. i = f.statusText
  4167. } catch (k) {
  4168. i = ""
  4169. }
  4170. h || !a.isLocal || a.crossDomain ? 1223 === h && (h = 204) : h = j.text ? 200 : 404
  4171. }
  4172. j && d(h, i, j, f.getAllResponseHeaders())
  4173. }
  4174. ,
  4175. a.async ? 4 === f.readyState ? setTimeout(b) : f.onreadystatechange = Xb[g] = b : b()
  4176. },
  4177. abort: function() {
  4178. b && b(void 0, !0)
  4179. }
  4180. }
  4181. }
  4182. });
  4183. function Zb() {
  4184. try {
  4185. return new a.XMLHttpRequest
  4186. } catch (b) {}
  4187. }
  4188. function $b() {
  4189. try {
  4190. return new a.ActiveXObject("Microsoft.XMLHTTP")
  4191. } catch (b) {}
  4192. }
  4193. m.ajaxSetup({
  4194. accepts: {
  4195. script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
  4196. },
  4197. contents: {
  4198. script: /(?:java|ecma)script/
  4199. },
  4200. converters: {
  4201. "text script": function(a) {
  4202. return m.globalEval(a),
  4203. a
  4204. }
  4205. }
  4206. }),
  4207. m.ajaxPrefilter("script", function(a) {
  4208. void 0 === a.cache && (a.cache = !1),
  4209. a.crossDomain && (a.type = "GET",
  4210. a.global = !1)
  4211. }),
  4212. m.ajaxTransport("script", function(a) {
  4213. if (a.crossDomain) {
  4214. var b, c = y.head || m("head")[0] || y.documentElement;
  4215. return {
  4216. send: function(d, e) {
  4217. b = y.createElement("script"),
  4218. b.async = !0,
  4219. a.scriptCharset && (b.charset = a.scriptCharset),
  4220. b.src = a.url,
  4221. b.onload = b.onreadystatechange = function(a, c) {
  4222. (c || !b.readyState || /loaded|complete/.test(b.readyState)) && (b.onload = b.onreadystatechange = null,
  4223. b.parentNode && b.parentNode.removeChild(b),
  4224. b = null,
  4225. c || e(200, "success"))
  4226. }
  4227. ,
  4228. c.insertBefore(b, c.firstChild)
  4229. },
  4230. abort: function() {
  4231. b && b.onload(void 0, !0)
  4232. }
  4233. }
  4234. }
  4235. });
  4236. var _b = []
  4237. , ac = /(=)\?(?=&|$)|\?\?/;
  4238. m.ajaxSetup({
  4239. jsonp: "callback",
  4240. jsonpCallback: function() {
  4241. var a = _b.pop() || m.expando + "_" + vb++;
  4242. return this[a] = !0,
  4243. a
  4244. }
  4245. }),
  4246. m.ajaxPrefilter("json jsonp", function(b, c, d) {
  4247. var e, f, g, h = b.jsonp !== !1 && (ac.test(b.url) ? "url" : "string" == typeof b.data && !(b.contentType || "").indexOf("application/x-www-form-urlencoded") && ac.test(b.data) && "data");
  4248. return h || "jsonp" === b.dataTypes[0] ? (e = b.jsonpCallback = m.isFunction(b.jsonpCallback) ? b.jsonpCallback() : b.jsonpCallback,
  4249. h ? b[h] = b[h].replace(ac, "$1" + e) : b.jsonp !== !1 && (b.url += (wb.test(b.url) ? "&" : "?") + b.jsonp + "=" + e),
  4250. b.converters["script json"] = function() {
  4251. return g || m.error(e + " was not called"),
  4252. g[0]
  4253. }
  4254. ,
  4255. b.dataTypes[0] = "json",
  4256. f = a[e],
  4257. a[e] = function() {
  4258. g = arguments
  4259. }
  4260. ,
  4261. d.always(function() {
  4262. a[e] = f,
  4263. b[e] && (b.jsonpCallback = c.jsonpCallback,
  4264. _b.push(e)),
  4265. g && m.isFunction(f) && f(g[0]),
  4266. g = f = void 0
  4267. }),
  4268. "script") : void 0
  4269. }),
  4270. m.parseHTML = function(a, b, c) {
  4271. if (!a || "string" != typeof a)
  4272. return null;
  4273. "boolean" == typeof b && (c = b,
  4274. b = !1),
  4275. b = b || y;
  4276. var d = u.exec(a)
  4277. , e = !c && [];
  4278. return d ? [b.createElement(d[1])] : (d = m.buildFragment([a], b, e),
  4279. e && e.length && m(e).remove(),
  4280. m.merge([], d.childNodes))
  4281. }
  4282. ;
  4283. var bc = m.fn.load;
  4284. m.fn.load = function(a, b, c) {
  4285. if ("string" != typeof a && bc)
  4286. return bc.apply(this, arguments);
  4287. var d, e, f, g = this, h = a.indexOf(" ");
  4288. return h >= 0 && (d = m.trim(a.slice(h, a.length)),
  4289. a = a.slice(0, h)),
  4290. m.isFunction(b) ? (c = b,
  4291. b = void 0) : b && "object" == typeof b && (f = "POST"),
  4292. g.length > 0 && m.ajax({
  4293. url: a,
  4294. type: f,
  4295. dataType: "html",
  4296. data: b
  4297. }).done(function(a) {
  4298. e = arguments,
  4299. g.html(d ? m("<div>").append(m.parseHTML(a)).find(d) : a)
  4300. }).complete(c && function(a, b) {
  4301. g.each(c, e || [a.responseText, b, a])
  4302. }
  4303. ),
  4304. this
  4305. }
  4306. ,
  4307. m.each(["ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend"], function(a, b) {
  4308. m.fn[b] = function(a) {
  4309. return this.on(b, a)
  4310. }
  4311. }),
  4312. m.expr.filters.animated = function(a) {
  4313. return m.grep(m.timers, function(b) {
  4314. return a === b.elem
  4315. }).length
  4316. }
  4317. ;
  4318. var cc = a.document.documentElement;
  4319. function dc(a) {
  4320. return m.isWindow(a) ? a : 9 === a.nodeType ? a.defaultView || a.parentWindow : !1
  4321. }
  4322. m.offset = {
  4323. setOffset: function(a, b, c) {
  4324. var d, e, f, g, h, i, j, k = m.css(a, "position"), l = m(a), n = {};
  4325. "static" === k && (a.style.position = "relative"),
  4326. h = l.offset(),
  4327. f = m.css(a, "top"),
  4328. i = m.css(a, "left"),
  4329. j = ("absolute" === k || "fixed" === k) && m.inArray("auto", [f, i]) > -1,
  4330. j ? (d = l.position(),
  4331. g = d.top,
  4332. e = d.left) : (g = parseFloat(f) || 0,
  4333. e = parseFloat(i) || 0),
  4334. m.isFunction(b) && (b = b.call(a, c, h)),
  4335. null != b.top && (n.top = b.top - h.top + g),
  4336. null != b.left && (n.left = b.left - h.left + e),
  4337. "using"in b ? b.using.call(a, n) : l.css(n)
  4338. }
  4339. },
  4340. m.fn.extend({
  4341. offset: function(a) {
  4342. if (arguments.length)
  4343. return void 0 === a ? this : this.each(function(b) {
  4344. m.offset.setOffset(this, a, b)
  4345. });
  4346. var b, c, d = {
  4347. top: 0,
  4348. left: 0
  4349. }, e = this[0], f = e && e.ownerDocument;
  4350. if (f)
  4351. return b = f.documentElement,
  4352. m.contains(b, e) ? (typeof e.getBoundingClientRect !== K && (d = e.getBoundingClientRect()),
  4353. c = dc(f),
  4354. {
  4355. top: d.top + (c.pageYOffset || b.scrollTop) - (b.clientTop || 0),
  4356. left: d.left + (c.pageXOffset || b.scrollLeft) - (b.clientLeft || 0)
  4357. }) : d
  4358. },
  4359. position: function() {
  4360. if (this[0]) {
  4361. var a, b, c = {
  4362. top: 0,
  4363. left: 0
  4364. }, d = this[0];
  4365. return "fixed" === m.css(d, "position") ? b = d.getBoundingClientRect() : (a = this.offsetParent(),
  4366. b = this.offset(),
  4367. m.nodeName(a[0], "html") || (c = a.offset()),
  4368. c.top += m.css(a[0], "borderTopWidth", !0),
  4369. c.left += m.css(a[0], "borderLeftWidth", !0)),
  4370. {
  4371. top: b.top - c.top - m.css(d, "marginTop", !0),
  4372. left: b.left - c.left - m.css(d, "marginLeft", !0)
  4373. }
  4374. }
  4375. },
  4376. offsetParent: function() {
  4377. return this.map(function() {
  4378. var a = this.offsetParent || cc;
  4379. while (a && !m.nodeName(a, "html") && "static" === m.css(a, "position"))
  4380. a = a.offsetParent;
  4381. return a || cc
  4382. })
  4383. }
  4384. }),
  4385. m.each({
  4386. scrollLeft: "pageXOffset",
  4387. scrollTop: "pageYOffset"
  4388. }, function(a, b) {
  4389. var c = /Y/.test(b);
  4390. m.fn[a] = function(d) {
  4391. return V(this, function(a, d, e) {
  4392. var f = dc(a);
  4393. return void 0 === e ? f ? b in f ? f[b] : f.document.documentElement[d] : a[d] : void (f ? f.scrollTo(c ? m(f).scrollLeft() : e, c ? e : m(f).scrollTop()) : a[d] = e)
  4394. }, a, d, arguments.length, null)
  4395. }
  4396. }),
  4397. m.each(["top", "left"], function(a, b) {
  4398. m.cssHooks[b] = La(k.pixelPosition, function(a, c) {
  4399. return c ? (c = Ja(a, b),
  4400. Ha.test(c) ? m(a).position()[b] + "px" : c) : void 0
  4401. })
  4402. }),
  4403. m.each({
  4404. Height: "height",
  4405. Width: "width"
  4406. }, function(a, b) {
  4407. m.each({
  4408. padding: "inner" + a,
  4409. content: b,
  4410. "": "outer" + a
  4411. }, function(c, d) {
  4412. m.fn[d] = function(d, e) {
  4413. var f = arguments.length && (c || "boolean" != typeof d)
  4414. , g = c || (d === !0 || e === !0 ? "margin" : "border");
  4415. return V(this, function(b, c, d) {
  4416. var e;
  4417. return m.isWindow(b) ? b.document.documentElement["client" + a] : 9 === b.nodeType ? (e = b.documentElement,
  4418. Math.max(b.body["scroll" + a], e["scroll" + a], b.body["offset" + a], e["offset" + a], e["client" + a])) : void 0 === d ? m.css(b, c, g) : m.style(b, c, d, g)
  4419. }, b, f ? d : void 0, f, null)
  4420. }
  4421. })
  4422. }),
  4423. m.fn.size = function() {
  4424. return this.length
  4425. }
  4426. ,
  4427. m.fn.andSelf = m.fn.addBack,
  4428. "function" == typeof define && define.amd && define("jquery", [], function() {
  4429. return m
  4430. });
  4431. var ec = a.jQuery
  4432. , fc = a.$;
  4433. return m.noConflict = function(b) {
  4434. return a.$ === m && (a.$ = fc),
  4435. b && a.jQuery === m && (a.jQuery = ec),
  4436. m
  4437. }
  4438. ,
  4439. typeof b === K && (a.jQuery = a.$ = m),
  4440. m
  4441. });
  4442. //# sourceMappingURL=jquery.min.map