From 86887ba60c695af14685210bdcb275653052e0b9 Mon Sep 17 00:00:00 2001 From: Jason Long Date: Wed, 12 Sep 2012 15:20:53 -0400 Subject: [PATCH] derp, adding new files --- css/application.css | 287 ++++++++++++++++++++++++++++++++ images/bg.jpg | Bin 0 -> 10909 bytes images/blue-dot@2x.png | Bin 0 -> 1245 bytes images/circular@2x.png | Bin 0 -> 2322 bytes images/green-dot@2x.png | Bin 0 -> 1245 bytes images/lightbulb@2x.png | Bin 0 -> 3489 bytes images/red-dot@2x.png | Bin 0 -> 1251 bytes images/three-arrows@2x.png | Bin 0 -> 2973 bytes javascripts/jquery-1.7.1.min.js | 5 + javascripts/modernizr.js | 5 + javascripts/selectivizr-min.js | 6 + license-types.html | 247 +++++++++++++++++++++++++++ license.html | 48 ++++++ 13 files changed, 598 insertions(+) create mode 100644 css/application.css create mode 100644 images/bg.jpg create mode 100644 images/blue-dot@2x.png create mode 100644 images/circular@2x.png create mode 100644 images/green-dot@2x.png create mode 100644 images/lightbulb@2x.png create mode 100644 images/red-dot@2x.png create mode 100644 images/three-arrows@2x.png create mode 100644 javascripts/jquery-1.7.1.min.js create mode 100644 javascripts/modernizr.js create mode 100644 javascripts/selectivizr-min.js create mode 100644 license-types.html create mode 100644 license.html diff --git a/css/application.css b/css/application.css new file mode 100644 index 0000000..b33496c --- /dev/null +++ b/css/application.css @@ -0,0 +1,287 @@ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font: inherit; + font-size: 100%; + vertical-align: baseline; +} + +html { + line-height: 1; +} + +ol, ul { + list-style: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +caption, th, td { + text-align: left; + font-weight: normal; + vertical-align: middle; +} + +q, blockquote { + quotes: none; +} +q:before, q:after, blockquote:before, blockquote:after { + content: ""; + content: none; +} + +a img { + border: none; +} + +article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { + display: block; +} + +body { + background: #f5f1ec url(/images/bg.jpg); + color: #7e7974; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.4; +} + +a { + color: #149ad4; + font-weight: bold; + text-decoration: none; +} +a:hover { + text-decoration: underline; +} + +a.button { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + border-color: #ceccc9 #b6b4b1 #a6a4a2 #b6b4b1; + border-style: solid; + border-width: 1px; + color: #443b34; + -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px, rgba(255, 255, 255, 0.8) 0 1px 0 0 inset; + -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px, rgba(255, 255, 255, 0.8) 0 1px 0 0 inset; + box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px, rgba(255, 255, 255, 0.8) 0 1px 0 0 inset; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e5e0), color-stop(100%, #d5d3cf)); + background-image: -webkit-linear-gradient(#e7e5e0, #d5d3cf); + background-image: -moz-linear-gradient(#e7e5e0, #d5d3cf); + background-image: -o-linear-gradient(#e7e5e0, #d5d3cf); + background-image: linear-gradient(#e7e5e0, #d5d3cf); + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + font-size: 12px; + font-weight: normal; + padding: 5px 10px; + text-align: center; +} +a.button:hover { + text-decoration: none; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e5e0), color-stop(100%, #d0ceca)); + background-image: -webkit-linear-gradient(#e7e5e0, #d0ceca); + background-image: -moz-linear-gradient(#e7e5e0, #d0ceca); + background-image: -o-linear-gradient(#e7e5e0, #d0ceca); + background-image: linear-gradient(#e7e5e0, #d0ceca); +} + +h1 { + color: #443a33; + font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; + font-size: 40px; + font-weight: 900; + line-height: 1.1; + margin-bottom: 25px; +} + +h5 { + color: #443a33; + font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; + font-size: 14px; + font-weight: 900; + line-height: 1.1; + margin-bottom: 15px; +} + +p { + margin-bottom: 1em; +} + +strong { + color: #443b34; + font-weight: bold; +} + +#container { + margin: 40px auto; + width: 780px; +} + +#home { + padding-top: 20px; + text-align: center; +} +#home h1 { + font-size: 63px; + line-height: 1.1; + margin-bottom: 25px; +} +#home h2 { + color: #149ad4; + font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; + font-size: 27px; + font-weight: 900; + line-height: 70px; + margin-bottom: 45px; + vertical-align: middle; +} +#home h2 span { + color: #e9e6e2; + font-size: 70px; + padding: 0 5px; + position: relative; + top: 10px; +} + +ul#situations li { + width: 240px; + float: left; + margin-left: 27px; + text-align: center; +} +ul#situations li.whatever { + margin-left: 0; + margin-top: 16px; +} +ul#situations li.reciprocity { + margin-top: 3px; +} +ul#situations li h3 { + color: #443a33; + font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; + font-size: 22px; + font-weight: 900; + line-height: 1.1; + margin: 0 auto 20px auto; + width: 200px; +} +ul#situations li a.button { + margin-top: 20px; +} + +table.license { + font-size: 13px; + line-height: 1.3; + margin-bottom: 40px; +} +table.license th { + border-bottom: solid 1px #d9d7d2; + padding: 5px 10px; +} +table.license th.name { + border-right: solid 1px #d9d7d2; + width: 150px; +} +table.license th.name a { + font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; + font-size: 28px; + font-weight: 900; +} +table.license th.summary { + color: #7e7974; +} +table.license td { + border-bottom: solid 1px #e9e6e2; + padding: 4px 10px; +} +table.license td.label { + border-right: solid 1px #d9d7d2; + font-weight: bold; +} +table.license td ul li { + background-position: 0 1px; + background-repeat: no-repeat; + background-size: 12px 12px; + float: left; + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + margin-right: 15px; + padding-left: 16px; +} +table.license td ul.required li { + background-image: url(/images/blue-dot@2x.png); +} +table.license td ul.permitted li { + background-image: url(/images/green-dot@2x.png); +} +table.license td ul.forbidden li { + background-image: url(/images/red-dot@2x.png); +} +table.license tr:nth-child(2n) td { + background-color: rgba(0, 0, 0, 0.02); +} + +div.license { + font-size: 16px; + float: left; + width: 540px; +} + +div.sidebar { + float: right; + width: 220px; +} +div.sidebar a.button { + margin-top: -110px; + width: 100%; +} +div.sidebar .how-to-apply { + background-color: rgba(255, 255, 255, 0.33); + border: solid 1px #e9e6e1; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + color: #7e7974; + font-size: 12px; + margin-top: -15px; + padding: 16px; +} +div.sidebar .how-to-apply p { + line-height: 1.5; +} +div.sidebar .how-to-apply p:last-child { + margin-bottom: 0; +} diff --git a/images/bg.jpg b/images/bg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1506e27ac42846ecb9c90eabbca1e9a140d89521 GIT binary patch literal 10909 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 Bpeg_W literal 0 HcmV?d00001 diff --git a/images/circular@2x.png b/images/circular@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..2b9173b3dcd2195ed5d20ec0caf17ebc6f401cec GIT binary patch literal 2322 zcmaJ@dsGu=7M~;rD6fEm2x=H7J`g1@UJ?U@%>;rPzjUYUw!A!-Q_Ay%eHz-T#=CJ{;y zarUMT2^#ROQe)j5i5qOm8&o|0IoN@j z-$BsyQ0Pym5(RM}SE-hOfmDA#5uL#RgMz4xfWV+2#$u33XE14W><#i`1h4{wSj=GX z{R3gv)Z$c@5RQCr3!8;PQWRCOXtb=XENYfNRjE#+F+xH@tQt(FABOPLWGhfa>!;9A zCKX_bMx>UhP?=HzS{0ELWd<4wVV?eZ1i9*itU~iXOjy8ZT0})-Q0dkqO#%gi{|}YR zKcF?JQ1a2=|0%3V$W}>cLWxG1p%!6@OQl#%saRaK1VNSR1f_E0WEA71N>r(lDpepi zJ_z&?AR?KNvg5J{rpPzckY%4A|zP(T1T0%kHI1L*z?29L3XNe_t# zqz5et;qfAQfxJmBtQ2L)B?@$sEB?r3ev)e~2Du8e3`^9qOo=#Bt(1fB4$YE%(icYL zC-vTQ#h>zVmpk-KEp#i8EOgc)D$*w9cv@MAB@a*-EjhR;u(0B_co^HwG&)gZwWxa1Mrl2jh- z;vNy4@yvE^V)rT-{Vt+u#p?8|HixYP1yzs7?suL;mUeZr{k!~!E3)r;zq)fO?a{Na zuA=g^+=>jJTc>Hz?)F;K3xofvpDpzMy9a+L%`_~+!8SIod7LSr&>I4_*>MbEFknyU zR;<qa;06K3Lj9UOxd+n?6qCED%~W7I zdXQo~ZH6lAN51vNnSH7Gw7eET4_Y7X;r_}*eO#q4|tJmGukRE!w^7-zXrIz8PmNBnzp`}YScCJNx7-q<^e8&JKXM%Ox`H=cJyFj{hPU%SU*IJmoGj*g zbZ|~Cx0Uk8XNh28C6%hUj%)CLl3X|!)m zUG9BsD#l2OYUnY(Un|JTZuE$+UOdTfQ@;+?lz5%usgZd@H#+sb&@_ zkFPvLZzF)FqO`JwWWe>nC~pYR`>>VM+v16b9ZZzYc>keOHip4QaH8<^7xT$wd2Zy< z@bN9p>$1x(%I|L?K2F*7NHcKhO!cB)l)Wwe_-k#ijuXk@Lyhujd*z&G+4xq`w7C4V zV2!&od2Qage&zGb!izTG;Hz&|mT52H@uY>0{QJF*Wac`2tnNOgwQtTUoKRbz*y4Zw znvUqxJX~Hd))+m`=6XAWx3xW)rHl~-I8m79r)|L-1~=B}jf6ugV4gONNMaDDkoPT} z2rC~i9GR6)7NR8aw5|+ChHDu0Ln` zYkR4naR9gXp695mi`HfVY23z+y?uX_;prCq`LEJcOlr;*BM;3_BWn6{<{Q>8D`VaK z-SYbFwIiQ(`C2AA>*^L4jTLpcZ_|k%uAP1O-`ZwJa^+=j)B23O zWLr{4yRL!e!+FBpaebF-_ro0{{Q;aOBR@Dnl^uI>jW32hx>CznPD{WK$1)Gj4M@Il3O`|cMYNBL^cF>6=ej+N4TZ_9%YU~n!5gQlI_*x z`BYSt{Op^Drx2HmNiGSq1 zp8e)v?s0kqs{bd22W-=q*i3RO4!Yp%U_&ma y;sK$3*#LIAxfHL#VV4^SjS}!H37Vul95Ch`#-AGYTe9^pC7Krl|M<5J`Tqq4Bc1gC literal 0 HcmV?d00001 diff --git a/images/green-dot@2x.png b/images/green-dot@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..315376d6954666dd989bb6dc1f64069f34ad9750 GIT binary patch literal 1245 zcmaJ>TWs4@7rKDT1rU6h(JPdoRh|FeW~p( zX*ag4FQux)%2iB4VwxCCLt{|-Pzhn;!kYuS;a+UgBiZ({lKA+FjaJ!ud;nZhjgD*Q}y|i|5I2`&!~`0L0y^F z1k|`fujxu$3vOlW@0?bhI;!`A3S8O^(f z2K#+(K7?VGr{Y{FUH&n*!WOPo+SV;oJ361hKkn{a#D7=7F}!-RQVw)p#Op^^?b#}C zS+5-eFSq6jw!dn7zkgLbcXnT;W6`!3T(VbbZr4Noz4%KP!!Iu0ob!X9+p9GUjxX*0q>|~mHFp^N22by)+3K;ktf}k6 zXS~B$F1lpB$Gz8`vaEmIzGS^*UuhWu+l^xJME5%0)$<(qq8b#i<(k9s&2j5;t;gY9 zwJm2!hx3OoTb<*7f4inGoq9aj?QgBWG4N6L;m%*?&z?B|?j4MNei@%)HNNfqLh8ib zz)pMHsaHBK9D4ezV@Yaf@Ppt1J87+7Ssh=AU;pgn+qFOO3xy*cH?BT^`u2AkF?us_ z?oMd-&90x$uicpJn!lYaK6)G*AG%i99;{ffXa3m#>w;@$hk4<|qa)mh;q2T$QNW&D literal 0 HcmV?d00001 diff --git a/images/lightbulb@2x.png b/images/lightbulb@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0d7c4a26ea6f35f0d592f46acf62b732e83a29b8 GIT binary patch literal 3489 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 literal 0 HcmV?d00001 diff --git a/images/red-dot@2x.png b/images/red-dot@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..21e1e2fcdf99e88b9d9af3750ae26af168c20460 GIT binary patch literal 1251 zcmaJ>ZD<>19KT$fG@Z$au$3(z*2k+KCTntcX_Gc*Vw&Uu|*{h%RWzsV2;hsgA~w(0!PdfeUf zJb!+_-~W~8Ok(J1>kj)448yFkK{kojJ^E)hp?|&PzmJx^S|qIv%XzKDsSpe1R;3=909*>jmb$dK?H*it3i=@!&anQYt+rzl}z{W!$Z)z^j zB-!YOFLd$~1x-^Jk}Q=<&Qgz4R>w%%>-FjyE|&u#9K|U~0S~w8>>TPgyTg0-??WeZok|-EbZ|#3t-87;3 z(YKp}iw>Kk4<$73DjMw7{GU|}GmOO8V5B3*W7J6a! z?u-xoY_6TOyxX!5JdfAzRJ+Y>jrRVNk?u@uL(08#+wz*Rv63*pj?eAAUP;?mW{!hZ zIKQuMYDC{OCYJ{FSp3>NXS`{-(J}-c(F%pr9gFy*_EGS8ZGguX z>Q?JFFB%u>cB`XmTF8)A$B$pMI*$JH?QLc5!hwMfUu)xy-j6bm*?xKH@}+~|!J)`! zx9|zS%C)_JCVBdPV7I01!Yl1p4?p|msRXrq;DdpK7ShdSwaM}HfccOR*7-d&?hofZ4p>npe|gYA4fFyfO9 P`Zb2dB17zlq0G#`2b!W9 literal 0 HcmV?d00001 diff --git a/images/three-arrows@2x.png b/images/three-arrows@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..383873c35ed68839b8c51e71aff1b63e3ca45b4d GIT binary patch literal 2973 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 literal 0 HcmV?d00001 diff --git a/javascripts/jquery-1.7.1.min.js b/javascripts/jquery-1.7.1.min.js new file mode 100644 index 0000000..ec06da0 --- /dev/null +++ b/javascripts/jquery-1.7.1.min.js @@ -0,0 +1,5 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ + +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
"+""+"
",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
t
",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); diff --git a/javascripts/modernizr.js b/javascripts/modernizr.js new file mode 100644 index 0000000..a8bf6a0 --- /dev/null +++ b/javascripts/modernizr.js @@ -0,0 +1,5 @@ +/* Modernizr 2.5.3 (Custom Build) | MIT & BSD + * Build: http://www.modernizr.com/download/#-fontface-input-inputtypes-shiv-cssclasses-addtest-teststyles-load + */ + +;window.Modernizr=function(a,b,c){function w(a){j.cssText=a}function x(a,b){return w(prefixes.join(a+";")+(b||""))}function y(a,b){return typeof a===b}function z(a,b){return!!~(""+a).indexOf(b)}function A(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:y(f,"function")?f.bind(d||b):f}return!1}function C(){e.input=function(c){for(var d=0,e=c.length;d",a,""].join(""),k.id=h,(l?k:m).innerHTML+=f,m.appendChild(k),l||(m.style.background="",g.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},u={}.hasOwnProperty,v;!y(u,"undefined")&&!y(u.call,"undefined")?v=function(a,b){return u.call(a,b)}:v=function(a,b){return b in a&&y(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=r.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(r.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(r.call(arguments)))};return e});var B=function(a,c){var d=a.join(""),f=c.length;t(d,function(a,c){var d=b.styleSheets[b.styleSheets.length-1],g=d?d.cssRules&&d.cssRules[0]?d.cssRules[0].cssText:d.cssText||"":"",h=a.childNodes,i={};while(f--)i[h[f].id]=h[f];e.fontface=/src/i.test(g)&&g.indexOf(c.split(" ")[0])===0},f,c)}(['@font-face {font-family:"font";src:url("https://")}'],["fontface"]);n.fontface=function(){return e.fontface};for(var D in n)v(n,D)&&(s=D.toLowerCase(),e[s]=n[D](),q.push((e[s]?"":"no-")+s));return e.input||C(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)v(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,g.className+=" "+(b?"":"no-")+a,e[a]=b}return e},w(""),i=k=null,function(a,b){function g(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,e.testStyles=t,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+q.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f0){var a=l,f,e=s.substring(0,e).replace(H,i);if(e==i||e.charAt(e.length-1)==o)e+="*";try{f=t(e)}catch(k){}if(f){e=0;for(c=f.length;e-1&&(a=a.substring(0,l));if(a.charAt(0)==":")switch(a.slice(1)){case "root":c=function(a){return b?a!=p:a==p};break;case "target":if(m==8){c=function(a){function c(){var d=location.hash,e=d.slice(1);return b?d==i||a.id!=e:d!=i&&a.id==e}k(j,"hashchange",function(){g(a,d,c())});return c()};break}return!1;case "checked":c=function(a){J.test(a.type)&&k(a,"propertychange",function(){event.propertyName=="checked"&&g(a,d,a.checked!==b)});return a.checked!==b};break;case "disabled":b=!b;case "enabled":c=function(c){if(K.test(c.tagName))return k(c,"propertychange",function(){event.propertyName=="$disabled"&&g(c,d,c.a===b)}),q.push(c),c.a=c.disabled,c.disabled===b;return a==":enabled"?b:!b};break;case "focus":e="focus",f="blur";case "hover":e||(e="mouseenter",f="mouseleave");c=function(a){k(a,b?f:e,function(){g(a,d,!0)});k(a,b?e:f,function(){g(a,d,!1)});return b};break;default:if(!L.test(a))return!1}return{className:d,b:c}}function w(a){return M+"-"+(m==6&&N?O++:a.replace(P,function(a){return a.charCodeAt(0)}))}function D(a){return a.replace(x,h).replace(Q,o)}function g(a,c,d){var b=a.className,c=u(b,c,d);if(c!=b)a.className=c,a.parentNode.className+=i}function u(a,c,d){var b=RegExp("(^|\\s)"+c+"(\\s|$)"),e=b.test(a);return d?e?a:a+o+c:e?a.replace(b,h).replace(x,h):a}function k(a,c,d){a.attachEvent("on"+c,d)}function r(a,c){if(/^https?:\/\//i.test(a))return c.substring(0,c.indexOf("/",8))==a.substring(0,a.indexOf("/",8))?a:null;if(a.charAt(0)=="/")return c.substring(0,c.indexOf("/",8))+a;var d=c.split(/[?#]/)[0];a.charAt(0)!="?"&&d.charAt(d.length-1)!="/"&&(d=d.substring(0,d.lastIndexOf("/")+1));return d+a}function y(a){if(a)return n.open("GET",a,!1),n.send(),(n.status==200?n.responseText:i).replace(R,i).replace(S,function(c,d,b,e,f){return y(r(b||f,a))}).replace(T,function(c,d,b){d=d||i;return" url("+d+r(b,a)+d+") "});return i}function U(){var a,c;a=f.getElementsByTagName("BASE");for(var d=a.length>0?a[0].href:f.location.href,b=0;b0&&setInterval(function(){for(var a=0,c=q.length;a8||!n)){var z={NW:"*.Dom.select",MooTools:"$$",DOMAssistant:"*.$",Prototype:"$$",YAHOO:"*.util.Selector.query",Sizzle:"*",jQuery:"*",dojo:"*.query"},t,q=[],O=0,N=!0,M="slvzr",R=/(\/\*[^*]*\*+([^\/][^*]*\*+)*\/)\s*/g,S=/@import\s*(?:(?:(?:url\(\s*(['"]?)(.*)\1)\s*\))|(?:(['"])(.*)\3))[^;]*;/g,T=/\burl\(\s*(["']?)(?!data:)([^"')]+)\1\s*\)/g,L=/^:(empty|(first|last|only|nth(-last)?)-(child|of-type))$/,B=/:(:first-(?:line|letter))/g,C=/(^|})\s*([^\{]*?[\[:][^{]+)/g,G=/([ +~>])|(:[a-z-]+(?:\(.*?\)+)?)|(\[.*?\])/g,H=/(:not\()?:(hover|enabled|disabled|focus|checked|target|active|visited|first-line|first-letter)\)?/g,P=/[^\w-]/g,K=/^(INPUT|SELECT|TEXTAREA|BUTTON)$/,J=/^(checkbox|radio)$/,v=m>6?/[\$\^*]=(['"])\1/:null,E=/([(\[+~])\s+/g,F=/\s+([)\]+~])/g,Q=/\s+/g,x=/^\s*((?:[\S\s]*\S)?)\s*$/,i="",o=" ",h="$1";(function(a,c){function d(){try{p.doScroll("left")}catch(a){setTimeout(d,50);return}b("poll")}function b(d){if(!(d.type=="readystatechange"&&f.readyState!="complete")&&((d.type=="load"?a:f).detachEvent("on"+d.type,b,!1),!e&&(e=!0)))c.call(a,d.type||d)}var e=!1,g=!0;if(f.readyState=="complete")c.call(a,i);else{if(f.createEventObject&&p.doScroll){try{g=!a.frameElement}catch(h){}g&&d()}k(f,"readystatechange",b);k(a,"load",b)}})(j,function(){for(var a in z){var c,d,b=j;if(j[a]){for(c=z[a].replace("*",a).split(".");(d=c.shift())&&(b=b[d]););if(typeof b=="function"){t=b;U();break}}}})}}})(this); diff --git a/license-types.html b/license-types.html new file mode 100644 index 0000000..96b59af --- /dev/null +++ b/license-types.html @@ -0,0 +1,247 @@ + + + + ChooseALicense.com + + + + + + + + + +
+ +

Permissive Licenses

+
+ + + + + + + + + + + + + + + + +
+ MIT + + A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. View full license » +
Required +
    +
  • Copyright inclusion
  • +
+
Permitted +
    +
  • Commercial use
  • +
  • Modification
  • +
  • Distribution
  • +
  • Sublicensing
  • +
+
Forbidden +
    +
  • Liability
  • +
+
+ + + + + + + + + + + + + + + + + +
+ MIT + + A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. View full license » +
Required +
    +
  • Copyright inclusion
  • +
+
Permitted +
    +
  • Commercial use
  • +
  • Modification
  • +
  • Distribution
  • +
  • Sublicensing
  • +
+
Forbidden +
    +
  • Liability
  • +
+
+ + + + + + + + + + + + + + + + + +
+ MIT + + A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. View full license » +
Required +
    +
  • Copyright inclusion
  • +
+
Permitted +
    +
  • Commercial use
  • +
  • Modification
  • +
  • Distribution
  • +
  • Sublicensing
  • +
+
Forbidden +
    +
  • Liability
  • +
+
+ + + + + + + + + + + + + + + + + +
+ MIT + + A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. View full license » +
Required +
    +
  • Copyright inclusion
  • +
+
Permitted +
    +
  • Commercial use
  • +
  • Modification
  • +
  • Distribution
  • +
  • Sublicensing
  • +
+
Forbidden +
    +
  • Liability
  • +
+
+ + + + + + + + + + + + + + + + + +
+ MIT + + A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. View full license » +
Required +
    +
  • Copyright inclusion
  • +
+
Permitted +
    +
  • Commercial use
  • +
  • Modification
  • +
  • Distribution
  • +
  • Sublicensing
  • +
+
Forbidden +
    +
  • Liability
  • +
+
+ + + + + + + + + + + + + + + + + +
+ MIT + + A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. View full license » +
Required +
    +
  • Copyright inclusion
  • +
+
Permitted +
    +
  • Commercial use
  • +
  • Modification
  • +
  • Distribution
  • +
  • Sublicensing
  • +
+
Forbidden +
    +
  • Liability
  • +
+
+ + + diff --git a/license.html b/license.html new file mode 100644 index 0000000..84fb9c8 --- /dev/null +++ b/license.html @@ -0,0 +1,48 @@ + + + + ChooseALicense.com + + + + + + + + + +
+ +

MIT License

+
+

+ Copyright (c) <year> <copyright holders> +

+

+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +

+

+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +

+

+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +

+
+ +
+ +