pearmut 1.0.0__py3-none-any.whl → 1.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pearmut/app.py +103 -2
- pearmut/assignment.py +59 -25
- pearmut/cli.py +241 -150
- pearmut/constants.py +93 -0
- pearmut/results_export.py +1 -1
- pearmut/static/annotate.bundle.js +1 -0
- pearmut/static/annotate.html +160 -0
- pearmut/static/dashboard.bundle.js +1 -1
- pearmut/static/dashboard.html +6 -1
- pearmut/static/index.html +1 -1
- pearmut/static/style.css +8 -0
- pearmut/utils.py +4 -14
- {pearmut-1.0.0.dist-info → pearmut-1.0.2.dist-info}/METADATA +87 -16
- pearmut-1.0.2.dist-info/RECORD +20 -0
- pearmut/static/basic.bundle.js +0 -1
- pearmut/static/basic.html +0 -97
- pearmut-1.0.0.dist-info/RECORD +0 -19
- {pearmut-1.0.0.dist-info → pearmut-1.0.2.dist-info}/WHEEL +0 -0
- {pearmut-1.0.0.dist-info → pearmut-1.0.2.dist-info}/entry_points.txt +0 -0
- {pearmut-1.0.0.dist-info → pearmut-1.0.2.dist-info}/licenses/LICENSE +0 -0
- {pearmut-1.0.0.dist-info → pearmut-1.0.2.dist-info}/top_level.txt +0 -0
pearmut/constants.py
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"""Default instructions for different annotation protocols."""
|
|
2
|
+
|
|
3
|
+
# Default instructions for each protocol
|
|
4
|
+
# These are used when no custom instructions are provided
|
|
5
|
+
PROTOCOL_INSTRUCTIONS = {
|
|
6
|
+
"DA": """
|
|
7
|
+
<ul>
|
|
8
|
+
<li>Score each translation using the slider based on meaning preservation and quality.
|
|
9
|
+
<strong>Important:</strong> The relative order of scores matters; ensure better translations have higher
|
|
10
|
+
scores than worse ones.
|
|
11
|
+
<ul>
|
|
12
|
+
<li>0: <strong>Nonsense</strong>: most information is lost.</li>
|
|
13
|
+
<li>33%: <strong>Broken</strong>: major gaps and narrative issues.</li>
|
|
14
|
+
<li>66%: <strong>Middling</strong>: minor issues with grammar or consistency.</li>
|
|
15
|
+
<li>100%: <strong>Perfect</strong>: meaning and grammar align completely with the source.</li>
|
|
16
|
+
</ul>
|
|
17
|
+
</li>
|
|
18
|
+
</ul>
|
|
19
|
+
""",
|
|
20
|
+
"ESA": """
|
|
21
|
+
<ul>
|
|
22
|
+
<li>Error spans:
|
|
23
|
+
<ul>
|
|
24
|
+
<li><strong>Click</strong> on the start of an error, then <strong>click</strong> on the end to mark an
|
|
25
|
+
error span.</li>
|
|
26
|
+
<li><strong>Hover</strong> over an existing highlight to change error severity (minor/major) or remove it.
|
|
27
|
+
</li>
|
|
28
|
+
</ul>
|
|
29
|
+
Error severity:
|
|
30
|
+
<ul>
|
|
31
|
+
<li><span class="instruction_sev" id="instruction_sev_minor">Minor:</span> Style, grammar, or word choice
|
|
32
|
+
could be better.</li>
|
|
33
|
+
<li><span class="instruction_sev" id="instruction_sev_major">Major:</span> Meaning is significantly
|
|
34
|
+
changed or is hard to understand.</li>
|
|
35
|
+
</ul>
|
|
36
|
+
<strong>Tip</strong>: Mark the general area of the error (doesn't need to be exact). Use separate highlights
|
|
37
|
+
for different errors.
|
|
38
|
+
Use <code>[missing]</code> at the end of a sentence for omitted content.<br>
|
|
39
|
+
</li>
|
|
40
|
+
<li>Score each translation using the slider based on meaning preservation and quality.
|
|
41
|
+
<strong>Important:</strong> The relative order of scores matters; ensure better translations have higher
|
|
42
|
+
scores than worse ones.
|
|
43
|
+
<ul>
|
|
44
|
+
<li>0: <strong>Nonsense</strong>: most information is lost.</li>
|
|
45
|
+
<li>33%: <strong>Broken</strong>: major gaps and narrative issues.</li>
|
|
46
|
+
<li>66%: <strong>Middling</strong>: minor issues with grammar or consistency.</li>
|
|
47
|
+
<li>100%: <strong>Perfect</strong>: meaning and grammar align completely with the source.</li>
|
|
48
|
+
</ul>
|
|
49
|
+
</li>
|
|
50
|
+
</ul>
|
|
51
|
+
""",
|
|
52
|
+
"MQM": """
|
|
53
|
+
<ul>
|
|
54
|
+
<li>Error spans:
|
|
55
|
+
<ul>
|
|
56
|
+
<li><strong>Click</strong> on the start of an error, then <strong>click</strong> on the end to mark an
|
|
57
|
+
error span.</li>
|
|
58
|
+
<li><strong>Hover</strong> over an existing highlight to change error severity (minor/major) or remove it.
|
|
59
|
+
</li>
|
|
60
|
+
</ul>
|
|
61
|
+
Error severity:
|
|
62
|
+
<ul>
|
|
63
|
+
<li><span class="instruction_sev" id="instruction_sev_minor">Minor:</span> Style, grammar, or word choice
|
|
64
|
+
could be better.</li>
|
|
65
|
+
<li><span class="instruction_sev" id="instruction_sev_major">Major:</span> Meaning is significantly
|
|
66
|
+
changed or is hard to understand.</li>
|
|
67
|
+
</ul>
|
|
68
|
+
<strong>Tip</strong>: Mark the general area of the error (doesn't need to be exact). Use separate highlights
|
|
69
|
+
for different errors.
|
|
70
|
+
Use <code>[missing]</code> at the end of a sentence for omitted content.<br>
|
|
71
|
+
</li>
|
|
72
|
+
<li>Score each translation using the slider based on meaning preservation and quality.
|
|
73
|
+
<strong>Important:</strong> The relative order of scores matters; ensure better translations have higher
|
|
74
|
+
scores than worse ones.
|
|
75
|
+
<ul>
|
|
76
|
+
<li>0: <strong>Nonsense</strong>: most information is lost.</li>
|
|
77
|
+
<li>33%: <strong>Broken</strong>: major gaps and narrative issues.</li>
|
|
78
|
+
<li>66%: <strong>Middling</strong>: minor issues with grammar or consistency.</li>
|
|
79
|
+
<li>100%: <strong>Perfect</strong>: meaning and grammar align completely with the source.</li>
|
|
80
|
+
</ul>
|
|
81
|
+
</li>
|
|
82
|
+
<li>
|
|
83
|
+
Error types:
|
|
84
|
+
After highlighting an error fragment, you will be asked to select the specific error type (main category and
|
|
85
|
+
subcategory).
|
|
86
|
+
If you are unsure about which errors fall under which categories, please consult the <a
|
|
87
|
+
href="https://themqm.org/the-mqm-typology/"
|
|
88
|
+
style="font-weight: bold; text-decoration: none; color: black;">typology
|
|
89
|
+
definitions</a>.
|
|
90
|
+
</li>
|
|
91
|
+
</ul>
|
|
92
|
+
""",
|
|
93
|
+
}
|
pearmut/results_export.py
CHANGED
|
@@ -39,7 +39,7 @@ def compute_model_scores(campaign_id):
|
|
|
39
39
|
# Compute model scores from annotations
|
|
40
40
|
model_scores = collections.defaultdict(dict)
|
|
41
41
|
|
|
42
|
-
# Iterate through all tasks to find items with 'models' field (
|
|
42
|
+
# Iterate through all tasks to find items with 'models' field (annotate template)
|
|
43
43
|
log = get_db_log(campaign_id)
|
|
44
44
|
for entry in log:
|
|
45
45
|
if "item" not in entry or "annotation" not in entry:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{var e={185(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(o,i){function a(e){try{l(r.next(e))}catch(e){i(e)}}function s(e){try{l(r.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(a,s)}l((r=r.apply(e,t||[])).next())})},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MQM_ERROR_CATEGORIES=void 0,t.notify=function(e){let t=10;(0,i.default)(".notification").each(function(){t+=10+((0,i.default)(this).outerHeight(!0)||0)});const n=(0,i.default)("<div></div>").addClass("notification").html(e).css({position:"fixed",top:t+"px",left:"50%",transform:"translateX(-50%)",backgroundColor:"rgba(0, 0, 0, 0.8)",color:"white",padding:"10px 20px",borderRadius:"5px",zIndex:"1000"}).appendTo("body");setTimeout(()=>r(this,void 0,void 0,function*(){n.remove();let e=10;(0,i.default)(".notification").each(function(){(0,i.default)(this).css("top",e+"px"),e+=10+((0,i.default)(this).outerHeight(!0)||0)})}),5e3)},t.isSpanComplete=function(e,t){return null!=e.severity&&!(t&&(null==e.category||!e.category.includes("/")))},t.redrawProgress=a,t.createSpanToolbox=function(e,n,r,o,a,s,l=!1){let u=(0,i.default)('\n <div class=\'span_toolbox_parent\'>\n <div class=\'span_toolbox\'>\n <div class="span_toolbox_esa" style="display: inline-block; width: 70px; padding-right: 5px;">\n <input type="button" class="error_delete" style="border-radius: 8px;" value="Remove">\n <input type="button" class="error_neutral" style="margin-top: 3px;" value="Neutral">\n <input type="button" class="error_minor" style="margin-top: 3px;" value="Minor">\n <input type="button" class="error_major" style="margin-top: 3px;" value="Major">\n </div>\n <div class="span_toolbox_mqm" style="display: inline-block; width: 140px; vertical-align: top;">\n <select style="height: 2em; width: 100%;"></select><br>\n <select style="height: 2em; width: 100%; margin-top: 3px;" disabled></select>\n </div>\n </div>\n </div>\n ');for(let e of Object.keys(t.MQM_ERROR_CATEGORIES))u.find("select").eq(0).append(`<option value="${e}">${e}</option>`);u.find("select").eq(0).on("change",function(){if(l)return;let e=this.value;n.category=e;let r=u.find("select").eq(1);r.empty();let o=t.MQM_ERROR_CATEGORIES[e];r.prop("disabled",!1);for(let e of o)r.append(`<option value="${e}">${e}</option>`);""==e?(r.prop("disabled",!0),n.category=""):"Other"==e?(r.prop("disabled",!0),n.category="Other/Other"):n.category=`${e}`}),u.find("select").eq(1).on("change",function(){if(l)return;let e=u.find("select").eq(0).val(),t=this.value;n.category=""==t&&"Other"!=e?`${e}`:`${e}/${t}`}),e||(u.find(".error_neutral").remove(),u.find(".span_toolbox_mqm").remove(),u.find(".span_toolbox_esa").css("border-right",""),u.find(".span_toolbox_esa").css("margin-right","-5px"));if(u.find(".error_delete").on("click",()=>{if(!l){u.remove();for(let e=o;e<=a;e++)(0,i.default)(r[e].el).removeClass("error_unknown"),(0,i.default)(r[e].el).removeClass("error_neutral"),(0,i.default)(r[e].el).removeClass("error_minor"),(0,i.default)(r[e].el).removeClass("error_major"),r[e].toolbox=null,r[e].error_span=null;s()}}),u.find(".error_neutral").on("click",()=>{if(!l){for(let e=o;e<=a;e++)(0,i.default)(r[e].el).removeClass("error_unknown"),(0,i.default)(r[e].el).removeClass("error_minor"),(0,i.default)(r[e].el).removeClass("error_major"),(0,i.default)(r[e].el).addClass("error_neutral");n.severity="neutral"}}),u.find(".error_minor").on("click",()=>{if(!l){for(let e=o;e<=a;e++)(0,i.default)(r[e].el).removeClass("error_unknown"),(0,i.default)(r[e].el).removeClass("error_neutral"),(0,i.default)(r[e].el).removeClass("error_major"),(0,i.default)(r[e].el).addClass("error_minor");n.severity="minor"}}),u.find(".error_major").on("click",()=>{if(!l){for(let e=o;e<=a;e++)(0,i.default)(r[e].el).removeClass("error_unknown"),(0,i.default)(r[e].el).removeClass("error_neutral"),(0,i.default)(r[e].el).removeClass("error_minor"),(0,i.default)(r[e].el).addClass("error_major");n.severity="major"}}),e&&n.category&&n.category.includes("/")){const[e,r]=n.category.split("/"),o=u.find("select").eq(0),i=u.find("select").eq(1);o.val(e),i.empty();const a=t.MQM_ERROR_CATEGORIES[e];if(a){i.prop("disabled",!1);for(let e of a)i.append(`<option value="${e}">${e}</option>`);i.val(r)}}else if(e&&n.category&&""!==n.category){u.find("select").eq(0).val(n.category);const e=u.find("select").eq(1);e.empty();const r=t.MQM_ERROR_CATEGORIES[n.category];if(r&&"Other"!==n.category){e.prop("disabled",!1);for(let t of r)e.append(`<option value="${t}">${t}</option>`)}}l&&(u.find(".error_delete").prop("disabled",!0),u.find(".error_neutral").prop("disabled",!0),u.find(".error_minor").prop("disabled",!0),u.find(".error_major").prop("disabled",!0),u.find("select").prop("disabled",!0));return u},t.updateToolboxPosition=function(e,t){const n=t.position();if(!n)return;const r=e.innerHeight()||0,o=e.innerWidth()||0,a=(0,i.default)(window).width()||900;let s=n.top-r,l=n.left;l=Math.min(l,Math.max(a,900)-o+10),e.css({top:s,left:l-25})},t.validateResponse=function(e,t,n){const r=e[n],o=t[n];if(!o)return!0;if(void 0!==o.score){const[e,t]=o.score;if(null===r.score||r.score<e||r.score>t)return!1}if(void 0!==o.error_spans&&o.error_spans.length>0)for(const e of o.error_spans){if(!r.error_spans.some(t=>l(t,e)))return!1}if(void 0!==o.score_greaterthan){const t=o.score_greaterthan;if(!e[t])return console.error(`Invalid score_greaterthan model: ${t}`),!1;const n=e[t].score;if(null===r.score||null===n)return!1;if(r.score<=n)return!1}return!0},t.hasAllowSkip=function(e){for(const t of e)if(t&&"object"==typeof t&&!Array.isArray(t)){if("allow_skip"in t&&!0===t.allow_skip)return!0;if(!("allow_skip"in t)&&!("warning"in t)&&!("score"in t)&&Object.values(t).some(e=>!0===(null==e?void 0:e.allow_skip)))return!0}return!1},t.displayGoodbyeScreen=function(e,t){(0,i.default)("#output_div").html(`\n <div class='white-box' style='width: max-content'>\n <h2>🎉 All done, thank you for your annotations!</h2>\n\n ${e.instructions_goodbye}\n <br>\n <br>\n </div>\n `),a(null,e.progress,t),(0,i.default)("#time").text(`Time: ${Math.round(e.time/60)}m`),(0,i.default)("#button_next").prop("disabled",!0),(0,i.default)("#button_next").val("Next 💯")},t.isMediaContent=function(e){return e.startsWith("<audio ")||e.startsWith("<video ")||e.startsWith("<img ")||e.startsWith("<iframe ")},t.detectTextDirection=function(e){const t=/[\u0590-\u08FF\uFB1D-\uFDFF\uFE70-\uFEFC]/,n=/[A-Za-z\u00C0-\u024F\u0400-\u04FF\u0370-\u03FF]/;for(const r of e){if(t.test(r))return"rtl";if(n.test(r))return"ltr"}return"ltr"},t.contentToCharSpans=function(e,t){return e.split("").map(e=>"\n"==e?"<br>":`<span class="${t}">${e}</span>`).join("")},t.computeWordBoundaries=function(e){const t=[];for(let n=0;n<e.length;n++)if(u.test(e[n])){let r=n;for(;n<e.length-1&&u.test(e[n+1]);)n++;for(let e=r;e<=n;e++)t.push([r,n])}else t.push([n,n]);return t},t.debounce=function(e,t){let n;return(...r)=>{clearTimeout(n),n=window.setTimeout(()=>e(...r),t)}};const i=o(n(692));function a(e,t,n){let r=t.map((t,n)=>n===e?`<span class="progress_current" data-index="${n}">${n+1}</span>`:t?`<span class="progress_complete" data-index="${n}">${n+1}</span>`:`<span class="progress_incomplete" data-index="${n}">${n+1}</span>`).join("");(0,i.default)("#progress").html(r),n&&(0,i.default)("#progress span").on("click",function(){const e=parseInt((0,i.default)(this).data("index"));n(e)})}function s(e,t){return Array.isArray(t)?e>=t[0]&&e<=t[1]:e===t}function l(e,t){return!(void 0!==t.start_i&&!s(e.start_i,t.start_i))&&(!(void 0!==t.end_i&&!s(e.end_i,t.end_i))&&(void 0===t.severity||e.severity===t.severity))}t.MQM_ERROR_CATEGORIES={"":[],Terminology:["","Inconsistent with terminology resource","Inconsistent use of terminology","Wrong term"],Accuracy:["","Mistranslation","Overtranslation","Undertranslation","Addition","Omission","Do not translate","Untranslated"],"Linguistic conventions":["","Grammar","Punctuation","Spelling","Unintelligible","Character encoding","Textual conventions"],Style:["","Organization style","Third-party style","Inconsistent with external reference","Language register","Awkward style","Unidiomatic style","Inconsistent style"],"Locale convention":["","Number format","Currency format","Measurement format","Time format","Date format","Address format","Telephone format","Shortcut key"],"Audience appropriateness":["","Culture-specific reference","Offensive"],"Design and markup":["","Layout","Markup tag","Truncation/text expansion","Missing text","Link/cross-reference"],Other:[]};const u=/^\p{L}|\p{N}$/u},284(e,t,n){"use strict";n.r(t)},651(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(o,i){function a(e){try{l(r.next(e))}catch(e){i(e)}}function s(e){try{l(r.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(a,s)}l((r=r.apply(e,t||[])).next())})},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.get_next_item=function(){return r(this,void 0,void 0,function*(){let e=s.get("user_id"),t=s.get("campaign_id"),n=1;for(;;){try{return yield new Promise((n,r)=>{a.default.ajax({url:"/get-next-item",method:"POST",data:JSON.stringify({campaign_id:t,user_id:e}),contentType:"application/json",dataType:"json",success:e=>n(e),error:(e,t,n)=>{console.error("Error fetching data:",t,n),0!==e.status?r(`${e.status}: ${e.responseText}`):r("Can't reach server.")}})})}catch(e){console.log("Error in try-catch:",e),(0,i.notify)(`Error fetching item. <br><br> ${e} <br><br> Retrying in ${n} seconds...`)}if(yield new Promise(e=>setTimeout(e,1e3*n)),n*=2,n>120)return null}})},t.log_response=function(e,t){return r(this,void 0,void 0,function*(){let n=s.get("user_id"),r=s.get("campaign_id"),o=1;for(;;){try{return yield new Promise((o,i)=>{a.default.ajax({url:"/log-response",method:"POST",data:JSON.stringify({campaign_id:r,user_id:n,payload:e,item_i:t}),contentType:"application/json",dataType:"json",success:e=>o(),error:(e,t,n)=>{console.error("Error storing data:",t,n),0!==e.status?i(`${e.status}: ${e.responseText}`):i("Can't reach server.")}})}),!0}catch(e){console.log("Error in try-catch:",e),(0,i.notify)(`Error storing item. <br><br> ${e} <br><br> Retrying in ${o} seconds...`)}if(yield new Promise(e=>setTimeout(e,1e3*o)),o*=2,o>120)return null}})},t.get_i_item=function(e){return r(this,void 0,void 0,function*(){let t=s.get("user_id"),n=s.get("campaign_id"),r=1;for(;;){try{return yield new Promise((r,o)=>{a.default.ajax({url:"/get-i-item",method:"POST",data:JSON.stringify({campaign_id:n,user_id:t,item_i:e}),contentType:"application/json",dataType:"json",success:e=>r(e),error:(e,t,n)=>{console.error("Error fetching data:",t,n),0!==e.status?o(`${e.status}: ${e.responseText}`):o("Can't reach server.")}})})}catch(e){console.log("Error in try-catch:",e),(0,i.notify)(`Error fetching item. <br><br> ${e} <br><br> Retrying in ${r} seconds...`)}if(yield new Promise(e=>setTimeout(e,1e3*r)),r*=2,r>120)return null}})};const i=n(185),a=o(n(692));let s=new URLSearchParams(window.location.search)},678(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(o,i){function a(e){try{l(r.next(e))}catch(e){i(e)}}function s(e){try{l(r.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(a,s)}l((r=r.apply(e,t||[])).next())})},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),n(284);const i=o(n(692)),a=n(651),s=n(185),l=new URLSearchParams(window.location.search).has("frozen");function u(e,t){return e&&e[t]||[]}let c=[],d=[],f=[],p=[],h=!0,g=!1,v=!1,m=!1,y=!1,x=!1;function b(){if(l)return(0,i.default)("#button_next").attr("disabled","disabled"),void(0,i.default)("#button_next").val("Next 🔒");if(y||x)for(const e of c)for(const t of Object.values(e))for(const e of t.error_spans)if(!(0,s.isSpanComplete)(e,x))return(0,i.default)("#button_next").attr("disabled","disabled"),void(0,i.default)("#button_next").val("Next 🚧");if(!c.every(e=>Object.values(e).every(e=>e.sliders?Object.values(e.sliders).every(e=>null!==e):null!=e.score)))return(0,i.default)("#button_next").attr("disabled","disabled"),void(0,i.default)("#button_next").val("Next 🚧");(0,i.default)("#button_next").removeAttr("disabled"),(0,i.default)("#button_next").val("Next ✅")}function _(e,t,n){return n&&"hidden"===n?`\n <button class="textfield_toggle" id="textfield_toggle_${e}_${t}">✏️</button>\n `:""}function w(e,t,n){return n?"hidden"===n?`\n <textarea class="output_textfield" id="textfield_${e}_${t}" style="display: none;" placeholder="Type here..."></textarea>\n `:"visible"===n||"prefilled"===n?`\n <textarea class="output_textfield" id="textfield_${e}_${t}" placeholder="Type here..."></textarea>\n `:"":""}function T(e,t,n){if(n&&0===n.length)return'<div class="output_response"></div>';if(!n)return`\n <div class="output_response">\n <input type="range" min="0" max="100" value="-1" id="response_${e}_${t}">\n <span class="slider_label">❓/100</span>\n </div>\n `;let r='<div class="output_response">';for(const o of n)r+=`\n <div class="slider_container">\n <label class="slider_name">${o.name}</label>\n <input type="range" min="${o.min}" max="${o.max}" step="${o.step}" value="${o.min-1}" id="response_${e}_${t}_${o.name}" data-slider="${o.name}">\n <span class="slider_label" data-slider="${o.name}">❓/${o.max}</span>\n </div>\n `;return r+="</div>",r}function C(e){return r(this,void 0,void 0,function*(){var t,n,r,o,a,C,k,E,j,A,D,N,M,O,$;(0,i.default)(".span_toolbox_parent").remove(),(0,i.default)(window).off("resize.toolbox"),(0,s.redrawProgress)(e.info.item_i,e.progress,S),(0,i.default)("#time").text(`Time: ${Math.round(e.time/60)}m`);let q=e.payload;e.payload_existing?(c=e.payload_existing.annotation.map(e=>{var t;const n={};for(const[r,o]of Object.entries(e))n[r]={score:o.score,sliders:o.sliders?Object.assign({},o.sliders):void 0,error_spans:o.error_spans?[...o.error_spans]:[],textfield:null!==(t=o.textfield)&&void 0!==t?t:null};return n}),e.payload_existing.comment?(0,i.default)("#settings_comment").val(e.payload_existing.comment):(0,i.default)("#settings_comment").val("")):(c=q.map(t=>{const n={};for(const r of Object.keys(t.tgt)){const t=void 0!==e.info.sliders;if(n[r]={score:null,sliders:t?{}:void 0,error_spans:[],textfield:null},e.info.sliders&&e.info.sliders.length>0)for(const t of e.info.sliders)n[r].sliders[t.name]=null}return n}),(0,i.default)("#settings_comment").val("")),f=q.map(e=>e.validation),p=[],d=[{time:Date.now()/1e3,action:"load"}],v=!1,m=!1,(0,s.hasAllowSkip)(f)?(0,i.default)("#button_skip_tutorial").show():(0,i.default)("#button_skip_tutorial").hide(),y="ESA"==e.info.protocol||"MQM"==e.info.protocol,x="MQM"==e.info.protocol,e.info.instructions?(0,i.default)("#instructions_global").html(e.info.instructions):(0,i.default)("#instructions_global").html(""),(0,i.default)("#output_div").html("");for(let f=0;f<q.length;f++){let m=q[f],S=!m.src||(0,s.isMediaContent)(m.src),L=!m.ref||(0,s.isMediaContent)(m.ref),R=m.src&&!S?(0,s.detectTextDirection)(m.src):"ltr",P=m.ref&&!L?(0,s.detectTextDirection)(m.ref):"ltr",H="";m.src&&(H=S?m.src:(0,s.contentToCharSpans)(m.src,"src_char"));let I="";m.ref&&(I=L?m.ref:(0,s.contentToCharSpans)(m.ref,"ref_char"));let F="";if(m.src){F+=`<div class="output_src"${"rtl"===R?' style="direction: rtl;"':""}>${H}</div>`}if(m.ref){F+=`<div class="output_ref"${"rtl"===P?' style="direction: rtl;"':""}>${I}</div>`}let W=(0,i.default)(`\n <div class="output_block">\n <span class="instructions_message"></span>\n <div class="output_srctgt">\n ${F}\n </div>\n </div>\n `);m.instructions&&W.find(".instructions_message").html(m.instructions);let B=S||!m.src?[]:W.find(".src_char").toArray(),z=L||!m.ref?[]:W.find(".ref_char").toArray();for(const[p,S]of Object.entries(m.tgt)){let q=(0,s.isMediaContent)(S),L=q?"ltr":(0,s.detectTextDirection)(S),R=q?S:(0,s.contentToCharSpans)(S,"tgt_char")+(y?' <span class="tgt_char char_missing">[missing]</span>':""),P="rtl"===L?' style="direction: rtl;"':"",H=(0,i.default)(`\n <div class="output_candidate" data-candidate="${p}" data-model="${p}">\n <div class="output_tgt"${P}>${R}</div>\n ${T(f,p,e.info.sliders)}\n </div>\n `);if(e.info.show_model_names){let e=(0,i.default)('<div class="model_name"></div>').text(p);H.prepend(e)}H.find(".output_response").prepend(_(f,p,e.info.textfield)),H.append(w(f,p,e.info.textfield)),W.find(".output_srctgt").append(H);let I=H.find(".tgt_char").toArray(),F=q?[]:(0,s.computeWordBoundaries)(I.map(e=>(0,i.default)(e).text())),U=q?[]:I.map((e,t)=>({el:(0,i.default)(e),toolbox:null,error_span:null,word_start:t<F.length?F[t][0]:t,word_end:t<F.length?F[t][1]:t})),X=null,G=y?U.findIndex(e=>e.el.hasClass("char_missing")):-1;q||U.forEach((e,t)=>{let n=t==G;(0,i.default)(e.el).on("mouseleave",function(){var n,r;(0,i.default)(".src_char").removeClass("highlighted"),(0,i.default)(".ref_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted_active"),null!=e.error_span&&null!=e.error_span.severity&&(!x||null!=e.error_span.category&&(null===(n=e.error_span.category)||void 0===n?void 0:n.includes("/")))&&(null===(r=U[t].toolbox)||void 0===r||r.css("display","none"))}),(0,i.default)(e.el).on("mouseenter",function(){var r;if((0,i.default)(".src_char").removeClass("highlighted"),(0,i.default)(".ref_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted"),h&&!n){if(B.length>0){let e=Math.round(t/U.length*B.length);for(let t=Math.max(0,e-5);t<=Math.min(B.length-1,e+5);t++)(0,i.default)(B[t]).addClass("highlighted")}if(z.length>0){let e=Math.round(t/U.length*z.length);for(let t=Math.max(0,e-5);t<=Math.min(z.length-1,e+5);t++)(0,i.default)(z[t]).addClass("highlighted")}let e=t/U.length;W.find(".output_candidate").each(function(){if((0,i.default)(this).attr("data-candidate")==p)return;let t=(0,i.default)(this).find(".tgt_char"),n=Math.round(e*t.length);for(let e=Math.max(0,n-5);e<=Math.min(t.length-1,n+5);e++)t.eq(e).addClass("highlighted")})}if(null==X||n){if(g&&!n&&null==X)for(let t=e.word_start;t<=e.word_end;t++)(0,i.default)(U[t].el).addClass("highlighted")}else{let e=Math.min(X,t),n=Math.max(X,t);g&&X!=G&&(e=U[e].word_start,n=U[n].word_end);for(let t=e;t<=n;t++)(0,i.default)(U[t].el).addClass("highlighted")}if(null!=U[t].error_span){let e=U[t].error_span;for(let t=e.start_i;t<=e.end_i;t++)(0,i.default)(U[t].el).addClass("highlighted_active");null===(r=U[e.start_i].toolbox)||void 0===r||r.css("display","block")}}),(y||x)&&(0,i.default)(e.el).on("click",function(){if(!l)if(n&&(X=G),null!=X){let e=Math.min(X,t),r=Math.max(X,t);g&&!n&&X!=G&&(e=U[e].word_start,r=U[r].word_end),X=null,(0,i.default)(".src_char").removeClass("highlighted"),H.find(".tgt_char").removeClass("highlighted");let o={start_i:e,end_i:r,category:null,severity:null};if(c[f][p].error_spans.some(t=>e<=t.start_i&&r>=t.start_i||e<=t.end_i&&r>=t.end_i))return void(0,s.notify)("Cannot create overlapping error spans");let a=(0,s.createSpanToolbox)(x,o,U,e,r,()=>{c[f][p].error_spans=c[f][p].error_spans.filter(e=>e!=o),d.push({time:Date.now()/1e3,action:"delete_span",index:f,model:p,start_i:e,end_i:r}),v=!0},l);(0,i.default)("body").append(a),b(),a.on("mouseenter",function(){a.css("display","block"),b()}),a.on("mouseleave",function(){var e;null!=o.severity&&(!x||null!=o.category&&(null===(e=o.category)||void 0===e?void 0:e.includes("/")))&&(a.css("display","none"),b())}),(0,i.default)(window).on("resize.toolbox",()=>(0,s.updateToolboxPosition)(a,(0,i.default)(U[e].el))),(0,s.updateToolboxPosition)(a,(0,i.default)(U[e].el)),c[f][p].error_spans.push(o),d.push({time:Date.now()/1e3,action:"create_span",index:f,model:p,start_i:e,end_i:r}),v=!0;for(let t=e;t<=r;t++)(0,i.default)(U[t].el).addClass("error_unknown"),U[t].toolbox=a,U[t].error_span=o}else{if(c[f][p].error_spans.some(e=>t>=e.start_i&&t<=e.end_i))return(0,s.notify)("Cannot create overlapping error spans"),(0,i.default)(".src_char").removeClass("highlighted"),void H.find(".tgt_char").removeClass("highlighted");X=t}})});const Q=null===(r=null===(n=null===(t=e.payload_existing)||void 0===t?void 0:t.annotation[f])||void 0===n?void 0:n[p])||void 0===r?void 0:r.error_spans,V=Q||u(m.error_spans,p);if(!q&&(y||x)&&V.length>0){Q&&(c[f][p].error_spans=[]);for(const e of V){const t=e.start_i,n=e.end_i;if(t<0||n>=U.length||t>n)continue;let r=Object.assign({},e);c[f][p].error_spans.push(r);let a=(0,s.createSpanToolbox)(x,r,U,t,n,()=>{c[f][p].error_spans=c[f][p].error_spans.filter(e=>e!=r),d.push({time:Date.now()/1e3,action:"delete_span",index:f,model:p,start_i:t,end_i:n}),v=!0},l);(0,i.default)("body").append(a),a.on("mouseenter",()=>{a.css("display","block"),b()}),a.on("mouseleave",()=>{var e;null!=r.severity&&(!x||null!=r.category&&(null===(e=r.category)||void 0===e?void 0:e.includes("/")))&&(a.css("display","none"),b())}),(0,i.default)(window).on("resize.toolbox",()=>(0,s.updateToolboxPosition)(a,(0,i.default)(U[t].el)));for(let e=t;e<=n;e++)(0,i.default)(U[e].el).addClass(r.severity?`error_${r.severity}`:"error_unknown"),U[e].toolbox=a,U[e].error_span=r;null!=r.severity&&(!x||null!=r.category&&(null===(o=r.category)||void 0===o?void 0:o.includes("/")))&&a.css("display","none")}}const Y=e.info.sliders&&e.info.sliders.length>0,J=void 0!==e.info.sliders&&0===e.info.sliders.length;if(Y){const t=e.info.sliders;for(const n of t){const t=n.name,r=n.max;let o=H.find(`input[data-slider="${t}"]`),i=H.find(`.slider_label[data-slider="${t}"]`);o.on("click input",function(){if(l)return;let e=parseInt(this.value);i.text(`${e}/${r}`),null==c[f][p].sliders[t]&&(c[f][p].sliders[t]=e,v=!0,b(),d.push({time:Date.now()/1e3,action:t,index:f,model:p,value:e}))}),o.on("change",function(){if(l)return;let e=parseInt(this.value);i.text(`${e}/${r}`),c[f][p].sliders[t]=e,d.push({time:Date.now()/1e3,action:t,index:f,model:p,value:e}),v=!0,b()}),l&&o.prop("disabled",!0);let s=null;s=null!==(j=null===(E=null===(k=null===(C=null===(a=e.payload_existing)||void 0===a?void 0:a.annotation[f])||void 0===C?void 0:C[p])||void 0===k?void 0:k.sliders)||void 0===E?void 0:E[t])&&void 0!==j?j:null,null!=s&&(o.val(s),i.text(`${s}/${r}`),c[f][p].sliders[t]=s)}}else if(!J){let t=H.find("input[type='range']"),n=H.find(".slider_label");t.on("click input",function(){if(l)return;let e=parseInt(this.value);n.text(`${e}/100`),null==c[f][p].score&&(c[f][p].score=e,v=!0,b(),d.push({time:Date.now()/1e3,action:"score",index:f,model:p,value:e}))}),t.on("change",function(){if(l)return;let e=parseInt(this.value);n.text(`${e}/100`),c[f][p].score=e,v=!0,b(),d.push({time:Date.now()/1e3,action:"score",index:f,model:p,value:e})}),l&&t.prop("disabled",!0);const r=null===(N=null===(D=null===(A=e.payload_existing)||void 0===A?void 0:A.annotation[f])||void 0===D?void 0:D[p])||void 0===N?void 0:N.score;null!=r&&(t.val(r),n.text(`${r}/100`),c[f][p].score=r)}if(e.info.textfield){const t=H.find(`#textfield_${f}_${p}`),n=H.find(`#textfield_toggle_${f}_${p}`);"prefilled"===e.info.textfield&&(t.val(S),c[f][p].textfield=S),"hidden"===e.info.textfield&&n.on("click",function(){t.is(":visible")?t.hide():t.show()});const r=(0,s.debounce)(()=>{const e=t.val();d.push({time:Date.now()/1e3,action:"textfield",index:f,model:p,value:e})},500);t.on("input",function(){if(l)return;let e=this.value;c[f][p].textfield=e,v=!0,r()}),l&&t.prop("disabled",!0);const o=null===($=null===(O=null===(M=e.payload_existing)||void 0===M?void 0:M.annotation[f])||void 0===O?void 0:O[p])||void 0===$?void 0:$.textfield;null!=o&&(t.val(o),c[f][p].textfield=o)}}!S&&m.src&&B.forEach((e,t)=>{(0,i.default)(e).on("mouseleave",function(){(0,i.default)(".src_char").removeClass("highlighted"),(0,i.default)(".ref_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted")}),(0,i.default)(e).on("mouseenter",function(){if((0,i.default)(".ref_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted"),h){if(z.length>0){let e=Math.round(t/B.length*z.length);for(let t=Math.max(0,e-5);t<=Math.min(z.length-1,e+5);t++)(0,i.default)(z[t]).addClass("highlighted")}W.find(".output_candidate").each(function(){let e=(0,i.default)(this).find(".tgt_char"),n=Math.round(t/B.length*e.length);for(let t=Math.max(0,n-5);t<=Math.min(e.length-1,n+5);t++)e.eq(t).addClass("highlighted")})}})}),!L&&m.ref&&z.forEach((e,t)=>{(0,i.default)(e).on("mouseleave",function(){(0,i.default)(".src_char").removeClass("highlighted"),(0,i.default)(".ref_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted")}),(0,i.default)(e).on("mouseenter",function(){if((0,i.default)(".src_char").removeClass("highlighted"),(0,i.default)(".tgt_char").removeClass("highlighted"),h){if(B.length>0){let e=Math.round(t/z.length*B.length);for(let t=Math.max(0,e-5);t<=Math.min(B.length-1,e+5);t++)(0,i.default)(B[t]).addClass("highlighted")}W.find(".output_candidate").each(function(){let e=(0,i.default)(this).find(".tgt_char"),n=Math.round(t/z.length*e.length);for(let t=Math.max(0,n-5);t<=Math.min(e.length-1,n+5);t++)e.eq(t).addClass("highlighted")})}})}),(0,i.default)("#output_div").append(W),p.push(W)}(0,i.default)(window).trigger("resize.toolbox"),b()})}window.addEventListener("beforeunload",e=>{v&&(e.preventDefault(),e.returnValue="")}),(0,i.default)("#toggle_differences").on("change",function(){(0,i.default)(this).is(":checked")?(0,i.default)(".difference").removeClass("hidden"):(0,i.default)(".difference").addClass("hidden")});let k=null;function S(e){return r(this,void 0,void 0,function*(){if(v&&!confirm("You have unsaved work. Are you sure you want to navigate away?"))return;let t=yield(0,a.get_i_item)(e);v=!1,null!=t?"goodbye"==t.status?(0,s.displayGoodbyeScreen)(t,S):"ok"==t.status?(k=t,C(t)):console.error("Non-ok response",t):(0,s.notify)("Error fetching the item. Please try again later.")})}function E(){return r(this,void 0,void 0,function*(){let e=yield(0,a.get_next_item)();v=!1,null!=e?"goodbye"==e.status?(0,s.displayGoodbyeScreen)(e,S):"ok"==e.status?(k=e,C(e)):console.error("Non-ok response",e):(0,s.notify)("Error fetching the next item. Please try again later.")})}(0,i.default)("#button_next").on("click",function(){return r(this,void 0,void 0,function*(){let e;if(!m&&(e=yield function(){return r(this,void 0,void 0,function*(){var e,t;(0,i.default)(".validation_warning").remove();let n=[];for(let r=0;r<c.length;r++){let o=[];const a=Object.keys(c[r]);for(let n of a){if(null==f[r])continue;const a=(0,s.validateResponse)(c[r],f[r],n);if(!a&&(null===(e=f[r][n])||void 0===e?void 0:e.warning)){p[r]&&p[r].offset()&&(0,i.default)("html, body").animate({scrollTop:p[r].offset().top-100},500),p[r].find(".validation_warning").remove();const e=(0,i.default)(`<span class="validation_warning" title="${(null===(t=f[r][n])||void 0===t?void 0:t.warning)||"Validation failed"}">⚠️</span>`);return p[r].find(".instructions_message").append(e),(0,s.notify)(f[r][n].warning),null}o.push(a)}o.length>0&&n.push(o.every(e=>e))}return n})}(),null==e))return;(0,i.default)("#button_next").attr("disabled","disabled"),(0,i.default)("#button_next").val("Next 📶"),d.push({time:Date.now()/1e3,action:"submit"+(m?"_skip":"")});let t={annotation:c,actions:d,item:null==k?void 0:k.payload};!m&&e.length>0&&(t.validations=e);const n=(0,i.default)("#settings_comment").val();n&&""!==n.trim()&&(t.comment=n.trim(),(0,i.default)("#settings_comment").val(""));let o=yield(0,a.log_response)(t,k.info.item_i);if(null==o||0==o)return(0,s.notify)("Error submitting the annotations. Please try again."),(0,i.default)("#button_next").removeAttr("disabled"),void(0,i.default)("#button_next").val("Next ❓");yield E()})}),(0,i.default)("#button_skip_tutorial").on("click",function(){m=!0,(0,s.notify)("Tutorial skipped. Your current annotations will be submitted."),(0,i.default)("#button_next").trigger("click")}),E(),(0,i.default)("#button_settings").on("click",function(){(0,i.default)("#settings_div").toggle()}),(0,i.default)("#settings_approximate_alignment").on("change",function(){h=(0,i.default)("#settings_approximate_alignment").is(":checked"),localStorage.setItem("setting_approximate_alignment",h.toString())}),null!=localStorage.getItem("setting_approximate_alignment")&&(h="true"==localStorage.getItem("setting_approximate_alignment")),(0,i.default)("#settings_approximate_alignment").prop("checked",h),(0,i.default)("#settings_approximate_alignment").trigger("change"),(0,i.default)("#settings_word_level").on("change",function(){g=(0,i.default)("#settings_word_level").is(":checked"),localStorage.setItem("setting_word_level",g.toString())}),null!=localStorage.getItem("setting_word_level")&&(g="true"==localStorage.getItem("setting_word_level")),(0,i.default)("#settings_word_level").prop("checked",g),(0,i.default)("#settings_word_level").trigger("change")},692(e,t){var n;!function(t,n){"use strict";"object"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,function(r,o){"use strict";var i=[],a=Object.getPrototypeOf,s=i.slice,l=i.flat?function(e){return i.flat.call(e)}:function(e){return i.concat.apply([],e)},u=i.push,c=i.indexOf,d={},f=d.toString,p=d.hasOwnProperty,h=p.toString,g=h.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},x=r.document,b={type:!0,src:!0,nonce:!0,noModule:!0};function _(e,t,n){var r,o,i=(n=n||x).createElement("script");if(i.text=e,t)for(r in b)(o=t[r]||t.getAttribute&&t.getAttribute(r))&&i.setAttribute(r,o);n.head.appendChild(i).parentNode.removeChild(i)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?d[f.call(e)]||"object":typeof e}var T="3.7.1",C=/HTML$/i,k=function(e,t){return new k.fn.init(e,t)};function S(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function E(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}k.fn=k.prototype={jquery:T,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(e){return this.pushStack(k.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(k.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(k.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:i.sort,splice:i.splice},k.extend=k.fn.extend=function(){var e,t,n,r,o,i,a=arguments[0]||{},s=1,l=arguments.length,u=!1;for("boolean"==typeof a&&(u=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===l&&(a=this,s--);s<l;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(u&&r&&(k.isPlainObject(r)||(o=Array.isArray(r)))?(n=a[t],i=o&&!Array.isArray(n)?[]:o||k.isPlainObject(n)?n:{},o=!1,a[t]=k.extend(u,i,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(T+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==f.call(e))&&(!(t=a(e))||"function"==typeof(n=p.call(t,"constructor")&&t.constructor)&&h.call(n)===g)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){_(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(S(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},text:function(e){var t,n="",r=0,o=e.nodeType;if(!o)for(;t=e[r++];)n+=k.text(t);return 1===o||11===o?e.textContent:9===o?e.documentElement.textContent:3===o||4===o?e.nodeValue:n},makeArray:function(e,t){var n=t||[];return null!=e&&(S(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:c.call(t,e,n)},isXMLDoc:function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!C.test(t||n&&n.nodeName||"HTML")},merge:function(e,t){for(var n=+t.length,r=0,o=e.length;r<n;r++)e[o++]=t[r];return e.length=o,e},grep:function(e,t,n){for(var r=[],o=0,i=e.length,a=!n;o<i;o++)!t(e[o],o)!==a&&r.push(e[o]);return r},map:function(e,t,n){var r,o,i=0,a=[];if(S(e))for(r=e.length;i<r;i++)null!=(o=t(e[i],i,n))&&a.push(o);else for(i in e)null!=(o=t(e[i],i,n))&&a.push(o);return l(a)},guid:1,support:v}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=i[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){d["[object "+t+"]"]=t.toLowerCase()});var j=i.pop,A=i.sort,D=i.splice,N="[\\x20\\t\\r\\n\\f]",M=new RegExp("^"+N+"+|((?:^|[^\\\\])(?:\\\\.)*)"+N+"+$","g");k.contains=function(e,t){var n=t&&t.parentNode;return e===n||!(!n||1!==n.nodeType||!(e.contains?e.contains(n):e.compareDocumentPosition&&16&e.compareDocumentPosition(n)))};var O=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function $(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e}k.escapeSelector=function(e){return(e+"").replace(O,$)};var q=x,L=u;!function(){var e,t,n,o,a,l,u,d,f,h,g=L,m=k.expando,y=0,x=0,b=ee(),_=ee(),w=ee(),T=ee(),C=function(e,t){return e===t&&(a=!0),0},S="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",O="(?:\\\\[\\da-fA-F]{1,6}"+N+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",$="\\["+N+"*("+O+")(?:"+N+"*([*^$|!~]?=)"+N+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+N+"*\\]",R=":("+O+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+$+")*)|.*)\\)|)",P=new RegExp(N+"+","g"),H=new RegExp("^"+N+"*,"+N+"*"),I=new RegExp("^"+N+"*([>+~]|"+N+")"+N+"*"),F=new RegExp(N+"|>"),W=new RegExp(R),B=new RegExp("^"+O+"$"),z={ID:new RegExp("^#("+O+")"),CLASS:new RegExp("^\\.("+O+")"),TAG:new RegExp("^("+O+"|[*])"),ATTR:new RegExp("^"+$),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+N+"*(even|odd|(([+-]|)(\\d*)n|)"+N+"*(?:([+-]|)"+N+"*(\\d+)|))"+N+"*\\)|)","i"),bool:new RegExp("^(?:"+S+")$","i"),needsContext:new RegExp("^"+N+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+N+"*((?:-\\d)?\\d*)"+N+"*\\)|)(?=[^-]|$)","i")},U=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,G=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Q=/[+~]/,V=new RegExp("\\\\[\\da-fA-F]{1,6}"+N+"?|\\\\([^\\r\\n\\f])","g"),Y=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},J=function(){le()},K=fe(function(e){return!0===e.disabled&&E(e,"fieldset")},{dir:"parentNode",next:"legend"});try{g.apply(i=s.call(q.childNodes),q.childNodes),i[q.childNodes.length].nodeType}catch(e){g={apply:function(e,t){L.apply(e,s.call(t))},call:function(e){L.apply(e,s.call(arguments,1))}}}function Z(e,t,n,r){var o,i,a,s,u,c,p,h=t&&t.ownerDocument,y=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==y&&9!==y&&11!==y)return n;if(!r&&(le(t),t=t||l,d)){if(11!==y&&(u=G.exec(e)))if(o=u[1]){if(9===y){if(!(a=t.getElementById(o)))return n;if(a.id===o)return g.call(n,a),n}else if(h&&(a=h.getElementById(o))&&Z.contains(t,a)&&a.id===o)return g.call(n,a),n}else{if(u[2])return g.apply(n,t.getElementsByTagName(e)),n;if((o=u[3])&&t.getElementsByClassName)return g.apply(n,t.getElementsByClassName(o)),n}if(!(T[e+" "]||f&&f.test(e))){if(p=e,h=t,1===y&&(F.test(e)||I.test(e))){for((h=Q.test(e)&&se(t.parentNode)||t)==t&&v.scope||((s=t.getAttribute("id"))?s=k.escapeSelector(s):t.setAttribute("id",s=m)),i=(c=ce(e)).length;i--;)c[i]=(s?"#"+s:":scope")+" "+de(c[i]);p=c.join(",")}try{return g.apply(n,h.querySelectorAll(p)),n}catch(t){T(e,!0)}finally{s===m&&t.removeAttribute("id")}}}return ye(e.replace(M,"$1"),t,n,r)}function ee(){var e=[];return function n(r,o){return e.push(r+" ")>t.cacheLength&&delete n[e.shift()],n[r+" "]=o}}function te(e){return e[m]=!0,e}function ne(e){var t=l.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function re(e){return function(t){return E(t,"input")&&t.type===e}}function oe(e){return function(t){return(E(t,"input")||E(t,"button"))&&t.type===e}}function ie(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&K(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ae(e){return te(function(t){return t=+t,te(function(n,r){for(var o,i=e([],n.length,t),a=i.length;a--;)n[o=i[a]]&&(n[o]=!(r[o]=n[o]))})})}function se(e){return e&&void 0!==e.getElementsByTagName&&e}function le(e){var n,r=e?e.ownerDocument||e:q;return r!=l&&9===r.nodeType&&r.documentElement?(u=(l=r).documentElement,d=!k.isXMLDoc(l),h=u.matches||u.webkitMatchesSelector||u.msMatchesSelector,u.msMatchesSelector&&q!=l&&(n=l.defaultView)&&n.top!==n&&n.addEventListener("unload",J),v.getById=ne(function(e){return u.appendChild(e).id=k.expando,!l.getElementsByName||!l.getElementsByName(k.expando).length}),v.disconnectedMatch=ne(function(e){return h.call(e,"*")}),v.scope=ne(function(){return l.querySelectorAll(":scope")}),v.cssHas=ne(function(){try{return l.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),v.getById?(t.filter.ID=function(e){var t=e.replace(V,Y);return function(e){return e.getAttribute("id")===t}},t.find.ID=function(e,t){if(void 0!==t.getElementById&&d){var n=t.getElementById(e);return n?[n]:[]}}):(t.filter.ID=function(e){var t=e.replace(V,Y);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},t.find.ID=function(e,t){if(void 0!==t.getElementById&&d){var n,r,o,i=t.getElementById(e);if(i){if((n=i.getAttributeNode("id"))&&n.value===e)return[i];for(o=t.getElementsByName(e),r=0;i=o[r++];)if((n=i.getAttributeNode("id"))&&n.value===e)return[i]}return[]}}),t.find.TAG=function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},t.find.CLASS=function(e,t){if(void 0!==t.getElementsByClassName&&d)return t.getElementsByClassName(e)},f=[],ne(function(e){var t;u.appendChild(e).innerHTML="<a id='"+m+"' href='' disabled='disabled'></a><select id='"+m+"-\r\\' disabled='disabled'><option selected=''></option></select>",e.querySelectorAll("[selected]").length||f.push("\\["+N+"*(?:value|"+S+")"),e.querySelectorAll("[id~="+m+"-]").length||f.push("~="),e.querySelectorAll("a#"+m+"+*").length||f.push(".#.+[+~]"),e.querySelectorAll(":checked").length||f.push(":checked"),(t=l.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),u.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&f.push(":enabled",":disabled"),(t=l.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||f.push("\\["+N+"*name"+N+"*="+N+"*(?:''|\"\")")}),v.cssHas||f.push(":has"),f=f.length&&new RegExp(f.join("|")),C=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!v.sortDetached&&t.compareDocumentPosition(e)===n?e===l||e.ownerDocument==q&&Z.contains(q,e)?-1:t===l||t.ownerDocument==q&&Z.contains(q,t)?1:o?c.call(o,e)-c.call(o,t):0:4&n?-1:1)},l):l}for(e in Z.matches=function(e,t){return Z(e,null,null,t)},Z.matchesSelector=function(e,t){if(le(e),d&&!T[t+" "]&&(!f||!f.test(t)))try{var n=h.call(e,t);if(n||v.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){T(t,!0)}return Z(t,l,null,[e]).length>0},Z.contains=function(e,t){return(e.ownerDocument||e)!=l&&le(e),k.contains(e,t)},Z.attr=function(e,n){(e.ownerDocument||e)!=l&&le(e);var r=t.attrHandle[n.toLowerCase()],o=r&&p.call(t.attrHandle,n.toLowerCase())?r(e,n,!d):void 0;return void 0!==o?o:e.getAttribute(n)},Z.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},k.uniqueSort=function(e){var t,n=[],r=0,i=0;if(a=!v.sortStable,o=!v.sortStable&&s.call(e,0),A.call(e,C),a){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)D.call(e,n[r],1)}return o=null,e},k.fn.uniqueSort=function(){return this.pushStack(k.uniqueSort(s.apply(this)))},t=k.expr={cacheLength:50,createPseudo:te,match:z,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(V,Y),e[3]=(e[3]||e[4]||e[5]||"").replace(V,Y),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||Z.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&Z.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return z.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&W.test(n)&&(t=ce(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(V,Y).toLowerCase();return"*"===e?function(){return!0}:function(e){return E(e,t)}},CLASS:function(e){var t=b[e+" "];return t||(t=new RegExp("(^|"+N+")"+e+"("+N+"|$)"))&&b(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var o=Z.attr(r,e);return null==o?"!="===t:!t||(o+="","="===t?o===n:"!="===t?o!==n:"^="===t?n&&0===o.indexOf(n):"*="===t?n&&o.indexOf(n)>-1:"$="===t?n&&o.slice(-n.length)===n:"~="===t?(" "+o.replace(P," ")+" ").indexOf(n)>-1:"|="===t&&(o===n||o.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,o){var i="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===o?function(e){return!!e.parentNode}:function(t,n,l){var u,c,d,f,p,h=i!==a?"nextSibling":"previousSibling",g=t.parentNode,v=s&&t.nodeName.toLowerCase(),x=!l&&!s,b=!1;if(g){if(i){for(;h;){for(d=t;d=d[h];)if(s?E(d,v):1===d.nodeType)return!1;p=h="only"===e&&!p&&"nextSibling"}return!0}if(p=[a?g.firstChild:g.lastChild],a&&x){for(b=(f=(u=(c=g[m]||(g[m]={}))[e]||[])[0]===y&&u[1])&&u[2],d=f&&g.childNodes[f];d=++f&&d&&d[h]||(b=f=0)||p.pop();)if(1===d.nodeType&&++b&&d===t){c[e]=[y,f,b];break}}else if(x&&(b=f=(u=(c=t[m]||(t[m]={}))[e]||[])[0]===y&&u[1]),!1===b)for(;(d=++f&&d&&d[h]||(b=f=0)||p.pop())&&(!(s?E(d,v):1===d.nodeType)||!++b||(x&&((c=d[m]||(d[m]={}))[e]=[y,b]),d!==t)););return(b-=o)===r||b%r===0&&b/r>=0}}},PSEUDO:function(e,n){var r,o=t.pseudos[e]||t.setFilters[e.toLowerCase()]||Z.error("unsupported pseudo: "+e);return o[m]?o(n):o.length>1?(r=[e,e,"",n],t.setFilters.hasOwnProperty(e.toLowerCase())?te(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)e[r=c.call(e,i[a])]=!(t[r]=i[a])}):function(e){return o(e,0,r)}):o}},pseudos:{not:te(function(e){var t=[],n=[],r=me(e.replace(M,"$1"));return r[m]?te(function(e,t,n,o){for(var i,a=r(e,null,o,[]),s=e.length;s--;)(i=a[s])&&(e[s]=!(t[s]=i))}):function(e,o,i){return t[0]=e,r(t,null,i,n),t[0]=null,!n.pop()}}),has:te(function(e){return function(t){return Z(e,t).length>0}}),contains:te(function(e){return e=e.replace(V,Y),function(t){return(t.textContent||k.text(t)).indexOf(e)>-1}}),lang:te(function(e){return B.test(e||"")||Z.error("unsupported lang: "+e),e=e.replace(V,Y).toLowerCase(),function(t){var n;do{if(n=d?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(e){var t=r.location&&r.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===u},focus:function(e){return e===function(){try{return l.activeElement}catch(e){}}()&&l.hasFocus()&&!!(e.type||e.href||~e.tabIndex)},enabled:ie(!1),disabled:ie(!0),checked:function(e){return E(e,"input")&&!!e.checked||E(e,"option")&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!t.pseudos.empty(e)},header:function(e){return X.test(e.nodeName)},input:function(e){return U.test(e.nodeName)},button:function(e){return E(e,"input")&&"button"===e.type||E(e,"button")},text:function(e){var t;return E(e,"input")&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ae(function(){return[0]}),last:ae(function(e,t){return[t-1]}),eq:ae(function(e,t,n){return[n<0?n+t:n]}),even:ae(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ae(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ae(function(e,t,n){var r;for(r=n<0?n+t:n>t?t:n;--r>=0;)e.push(r);return e}),gt:ae(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}},t.pseudos.nth=t.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})t.pseudos[e]=re(e);for(e in{submit:!0,reset:!0})t.pseudos[e]=oe(e);function ue(){}function ce(e,n){var r,o,i,a,s,l,u,c=_[e+" "];if(c)return n?0:c.slice(0);for(s=e,l=[],u=t.preFilter;s;){for(a in r&&!(o=H.exec(s))||(o&&(s=s.slice(o[0].length)||s),l.push(i=[])),r=!1,(o=I.exec(s))&&(r=o.shift(),i.push({value:r,type:o[0].replace(M," ")}),s=s.slice(r.length)),t.filter)!(o=z[a].exec(s))||u[a]&&!(o=u[a](o))||(r=o.shift(),i.push({value:r,type:a,matches:o}),s=s.slice(r.length));if(!r)break}return n?s.length:s?Z.error(e):_(e,l).slice(0)}function de(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function fe(e,t,n){var r=t.dir,o=t.next,i=o||r,a=n&&"parentNode"===i,s=x++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,o);return!1}:function(t,n,l){var u,c,d=[y,s];if(l){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,l))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(c=t[m]||(t[m]={}),o&&E(t,o))t=t[r]||t;else{if((u=c[i])&&u[0]===y&&u[1]===s)return d[2]=u[2];if(c[i]=d,d[2]=e(t,n,l))return!0}return!1}}function pe(e){return e.length>1?function(t,n,r){for(var o=e.length;o--;)if(!e[o](t,n,r))return!1;return!0}:e[0]}function he(e,t,n,r,o){for(var i,a=[],s=0,l=e.length,u=null!=t;s<l;s++)(i=e[s])&&(n&&!n(i,r,o)||(a.push(i),u&&t.push(s)));return a}function ge(e,t,n,r,o,i){return r&&!r[m]&&(r=ge(r)),o&&!o[m]&&(o=ge(o,i)),te(function(i,a,s,l){var u,d,f,p,h=[],v=[],m=a.length,y=i||function(e,t,n){for(var r=0,o=t.length;r<o;r++)Z(e,t[r],n);return n}(t||"*",s.nodeType?[s]:s,[]),x=!e||!i&&t?y:he(y,h,e,s,l);if(n?n(x,p=o||(i?e:m||r)?[]:a,s,l):p=x,r)for(u=he(p,v),r(u,[],s,l),d=u.length;d--;)(f=u[d])&&(p[v[d]]=!(x[v[d]]=f));if(i){if(o||e){if(o){for(u=[],d=p.length;d--;)(f=p[d])&&u.push(x[d]=f);o(null,p=[],u,l)}for(d=p.length;d--;)(f=p[d])&&(u=o?c.call(i,f):h[d])>-1&&(i[u]=!(a[u]=f))}}else p=he(p===a?p.splice(m,p.length):p),o?o(null,a,p,l):g.apply(a,p)})}function ve(e){for(var r,o,i,a=e.length,s=t.relative[e[0].type],l=s||t.relative[" "],u=s?1:0,d=fe(function(e){return e===r},l,!0),f=fe(function(e){return c.call(r,e)>-1},l,!0),p=[function(e,t,o){var i=!s&&(o||t!=n)||((r=t).nodeType?d(e,t,o):f(e,t,o));return r=null,i}];u<a;u++)if(o=t.relative[e[u].type])p=[fe(pe(p),o)];else{if((o=t.filter[e[u].type].apply(null,e[u].matches))[m]){for(i=++u;i<a&&!t.relative[e[i].type];i++);return ge(u>1&&pe(p),u>1&&de(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(M,"$1"),o,u<i&&ve(e.slice(u,i)),i<a&&ve(e=e.slice(i)),i<a&&de(e))}p.push(o)}return pe(p)}function me(e,r){var o,i=[],a=[],s=w[e+" "];if(!s){for(r||(r=ce(e)),o=r.length;o--;)(s=ve(r[o]))[m]?i.push(s):a.push(s);s=w(e,function(e,r){var o=r.length>0,i=e.length>0,a=function(a,s,u,c,f){var p,h,v,m=0,x="0",b=a&&[],_=[],w=n,T=a||i&&t.find.TAG("*",f),C=y+=null==w?1:Math.random()||.1,S=T.length;for(f&&(n=s==l||s||f);x!==S&&null!=(p=T[x]);x++){if(i&&p){for(h=0,s||p.ownerDocument==l||(le(p),u=!d);v=e[h++];)if(v(p,s||l,u)){g.call(c,p);break}f&&(y=C)}o&&((p=!v&&p)&&m--,a&&b.push(p))}if(m+=x,o&&x!==m){for(h=0;v=r[h++];)v(b,_,s,u);if(a){if(m>0)for(;x--;)b[x]||_[x]||(_[x]=j.call(c));_=he(_)}g.apply(c,_),f&&!a&&_.length>0&&m+r.length>1&&k.uniqueSort(c)}return f&&(y=C,n=w),b};return o?te(a):a}(a,i)),s.selector=e}return s}function ye(e,n,r,o){var i,a,s,l,u,c="function"==typeof e&&e,f=!o&&ce(e=c.selector||e);if(r=r||[],1===f.length){if((a=f[0]=f[0].slice(0)).length>2&&"ID"===(s=a[0]).type&&9===n.nodeType&&d&&t.relative[a[1].type]){if(!(n=(t.find.ID(s.matches[0].replace(V,Y),n)||[])[0]))return r;c&&(n=n.parentNode),e=e.slice(a.shift().value.length)}for(i=z.needsContext.test(e)?0:a.length;i--&&(s=a[i],!t.relative[l=s.type]);)if((u=t.find[l])&&(o=u(s.matches[0].replace(V,Y),Q.test(a[0].type)&&se(n.parentNode)||n))){if(a.splice(i,1),!(e=o.length&&de(a)))return g.apply(r,o),r;break}}return(c||me(e,f))(o,n,!d,r,!n||Q.test(e)&&se(n.parentNode)||n),r}ue.prototype=t.filters=t.pseudos,t.setFilters=new ue,v.sortStable=m.split("").sort(C).join("")===m,le(),v.sortDetached=ne(function(e){return 1&e.compareDocumentPosition(l.createElement("fieldset"))}),k.find=Z,k.expr[":"]=k.expr.pseudos,k.unique=k.uniqueSort,Z.compile=me,Z.select=ye,Z.setDocument=le,Z.tokenize=ce,Z.escape=k.escapeSelector,Z.getText=k.text,Z.isXML=k.isXMLDoc,Z.selectors=k.expr,Z.support=k.support,Z.uniqueSort=k.uniqueSort}();var R=function(e,t,n){for(var r=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&k(e).is(n))break;r.push(e)}return r},P=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},H=k.expr.match.needsContext,I=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function F(e,t,n){return m(t)?k.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?k.grep(e,function(e){return e===t!==n}):"string"!=typeof t?k.grep(e,function(e){return c.call(t,e)>-1!==n}):k.filter(t,e,n)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,o=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(o[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,o[t],n);return r>1?k.uniqueSort(n):n},filter:function(e){return this.pushStack(F(this,e||[],!1))},not:function(e){return this.pushStack(F(this,e||[],!0))},is:function(e){return!!F(this,"string"==typeof e&&H.test(e)?k(e):e||[],!1).length}});var W,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,o;if(!e)return this;if(n=n||W,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:B.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:x,!0)),I.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(o=x.getElementById(r[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,W=k(x);var z=/^(?:parents|prev(?:Until|All))/,U={children:!0,contents:!0,next:!0,prev:!0};function X(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,o=this.length,i=[],a="string"!=typeof e&&k(e);if(!H.test(e))for(;r<o;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&k.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?k.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?c.call(k(e),this[0]):c.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return R(e,"parentNode")},parentsUntil:function(e,t,n){return R(e,"parentNode",n)},next:function(e){return X(e,"nextSibling")},prev:function(e){return X(e,"previousSibling")},nextAll:function(e){return R(e,"nextSibling")},prevAll:function(e){return R(e,"previousSibling")},nextUntil:function(e,t,n){return R(e,"nextSibling",n)},prevUntil:function(e,t,n){return R(e,"previousSibling",n)},siblings:function(e){return P((e.parentNode||{}).firstChild,e)},children:function(e){return P(e.firstChild)},contents:function(e){return null!=e.contentDocument&&a(e.contentDocument)?e.contentDocument:(E(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(e,t){k.fn[e]=function(n,r){var o=k.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(o=k.filter(r,o)),this.length>1&&(U[e]||k.uniqueSort(o),z.test(e)&&o.reverse()),this.pushStack(o)}});var G=/[^\x20\t\r\n\f]+/g;function Q(e){return e}function V(e){throw e}function Y(e,t,n,r){var o;try{e&&m(o=e.promise)?o.call(e).done(t).fail(n):e&&m(o=e.then)?o.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return k.each(e.match(G)||[],function(e,n){t[n]=!0}),t}(e):k.extend({},e);var t,n,r,o,i=[],a=[],s=-1,l=function(){for(o=o||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<i.length;)!1===i[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=i.length,n=!1);e.memory||(n=!1),t=!1,o&&(i=n?[]:"")},u={add:function(){return i&&(n&&!t&&(s=i.length-1,a.push(n)),function t(n){k.each(n,function(n,r){m(r)?e.unique&&u.has(r)||i.push(r):r&&r.length&&"string"!==w(r)&&t(r)})}(arguments),n&&!t&&l()),this},remove:function(){return k.each(arguments,function(e,t){for(var n;(n=k.inArray(t,i,n))>-1;)i.splice(n,1),n<=s&&s--}),this},has:function(e){return e?k.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return o=a=[],i=n="",this},disabled:function(){return!i},lock:function(){return o=a=[],n||t||(i=n=""),this},locked:function(){return!!o},fireWith:function(e,n){return o||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||l()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},k.extend({Deferred:function(e){var t=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],n="pending",o={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},catch:function(e){return o.then(null,e)},pipe:function(){var e=arguments;return k.Deferred(function(n){k.each(t,function(t,r){var o=m(e[r[4]])&&e[r[4]];i[r[1]](function(){var e=o&&o.apply(this,arguments);e&&m(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,o?[e]:arguments)})}),e=null}).promise()},then:function(e,n,o){var i=0;function a(e,t,n,o){return function(){var s=this,l=arguments,u=function(){var r,u;if(!(e<i)){if((r=n.apply(s,l))===t.promise())throw new TypeError("Thenable self-resolution");u=r&&("object"==typeof r||"function"==typeof r)&&r.then,m(u)?o?u.call(r,a(i,t,Q,o),a(i,t,V,o)):(i++,u.call(r,a(i,t,Q,o),a(i,t,V,o),a(i,t,Q,t.notifyWith))):(n!==Q&&(s=void 0,l=[r]),(o||t.resolveWith)(s,l))}},c=o?u:function(){try{u()}catch(r){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(r,c.error),e+1>=i&&(n!==V&&(s=void 0,l=[r]),t.rejectWith(s,l))}};e?c():(k.Deferred.getErrorHook?c.error=k.Deferred.getErrorHook():k.Deferred.getStackHook&&(c.error=k.Deferred.getStackHook()),r.setTimeout(c))}}return k.Deferred(function(r){t[0][3].add(a(0,r,m(o)?o:Q,r.notifyWith)),t[1][3].add(a(0,r,m(e)?e:Q)),t[2][3].add(a(0,r,m(n)?n:V))}).promise()},promise:function(e){return null!=e?k.extend(e,o):o}},i={};return k.each(t,function(e,r){var a=r[2],s=r[5];o[r[1]]=a.add,s&&a.add(function(){n=s},t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),a.add(r[3].fire),i[r[0]]=function(){return i[r[0]+"With"](this===i?void 0:this,arguments),this},i[r[0]+"With"]=a.fireWith}),o.promise(i),e&&e.call(i,i),i},when:function(e){var t=arguments.length,n=t,r=Array(n),o=s.call(arguments),i=k.Deferred(),a=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?s.call(arguments):n,--t||i.resolveWith(r,o)}};if(t<=1&&(Y(e,i.done(a(n)).resolve,i.reject,!t),"pending"===i.state()||m(o[n]&&o[n].then)))return i.then();for(;n--;)Y(o[n],a(n),i.reject);return i.promise()}});var J=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){r.console&&r.console.warn&&e&&J.test(e.name)&&r.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){r.setTimeout(function(){throw e})};var K=k.Deferred();function Z(){x.removeEventListener("DOMContentLoaded",Z),r.removeEventListener("load",Z),k.ready()}k.fn.ready=function(e){return K.then(e).catch(function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0,!0!==e&&--k.readyWait>0||K.resolveWith(x,[k]))}}),k.ready.then=K.then,"complete"===x.readyState||"loading"!==x.readyState&&!x.documentElement.doScroll?r.setTimeout(k.ready):(x.addEventListener("DOMContentLoaded",Z),r.addEventListener("load",Z));var ee=function(e,t,n,r,o,i,a){var s=0,l=e.length,u=null==n;if("object"===w(n))for(s in o=!0,n)ee(e,t,s,n[s],!0,i,a);else if(void 0!==r&&(o=!0,m(r)||(a=!0),u&&(a?(t.call(e,r),t=null):(u=t,t=function(e,t,n){return u.call(k(e),n)})),t))for(;s<l;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return o?e:u?t.call(e):l?t(e[0],n):i},te=/^-ms-/,ne=/-([a-z])/g;function re(e,t){return t.toUpperCase()}function oe(e){return e.replace(te,"ms-").replace(ne,re)}var ie=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function ae(){this.expando=k.expando+ae.uid++}ae.uid=1,ae.prototype={cache:function(e){var t=e[this.expando];return t||(t={},ie(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,o=this.cache(e);if("string"==typeof t)o[oe(t)]=n;else for(r in t)o[oe(r)]=t[r];return o},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][oe(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(oe):(t=oe(t))in r?[t]:t.match(G)||[]).length;for(;n--;)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var se=new ae,le=new ae,ue=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,ce=/[A-Z]/g;function de(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(ce,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:ue.test(e)?JSON.parse(e):e)}(n)}catch(e){}le.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return le.hasData(e)||se.hasData(e)},data:function(e,t,n){return le.access(e,t,n)},removeData:function(e,t){le.remove(e,t)},_data:function(e,t,n){return se.access(e,t,n)},_removeData:function(e,t){se.remove(e,t)}}),k.fn.extend({data:function(e,t){var n,r,o,i=this[0],a=i&&i.attributes;if(void 0===e){if(this.length&&(o=le.get(i),1===i.nodeType&&!se.get(i,"hasDataAttrs"))){for(n=a.length;n--;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=oe(r.slice(5)),de(i,r,o[r]));se.set(i,"hasDataAttrs",!0)}return o}return"object"==typeof e?this.each(function(){le.set(this,e)}):ee(this,function(t){var n;if(i&&void 0===t)return void 0!==(n=le.get(i,e))||void 0!==(n=de(i,e))?n:void 0;this.each(function(){le.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){le.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=se.get(e,t),n&&(!r||Array.isArray(n)?r=se.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,o=n.shift(),i=k._queueHooks(e,t);"inprogress"===o&&(o=n.shift(),r--),o&&("fx"===t&&n.unshift("inprogress"),delete i.stop,o.call(e,function(){k.dequeue(e,t)},i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return se.get(e,n)||se.access(e,n,{empty:k.Callbacks("once memory").add(function(){se.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?k.queue(this[0],e):void 0===t?this:this.each(function(){var n=k.queue(this,e,t);k._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&k.dequeue(this,e)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,o=k.Deferred(),i=this,a=this.length,s=function(){--r||o.resolveWith(i,[i])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)(n=se.get(i[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),o.promise(t)}});var fe=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,pe=new RegExp("^(?:([+-])=|)("+fe+")([a-z%]*)$","i"),he=["Top","Right","Bottom","Left"],ge=x.documentElement,ve=function(e){return k.contains(e.ownerDocument,e)},me={composed:!0};ge.getRootNode&&(ve=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(me)===e.ownerDocument});var ye=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ve(e)&&"none"===k.css(e,"display")};function xe(e,t,n,r){var o,i,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},l=s(),u=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==u&&+l)&&pe.exec(k.css(e,t));if(c&&c[3]!==u){for(l/=2,u=u||c[3],c=+l||1;a--;)k.style(e,t,c+u),(1-i)*(1-(i=s()/l||.5))<=0&&(a=0),c/=i;c*=2,k.style(e,t,c+u),n=n||[]}return n&&(c=+c||+l||0,o=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=u,r.start=c,r.end=o)),o}var be={};function _e(e){var t,n=e.ownerDocument,r=e.nodeName,o=be[r];return o||(t=n.body.appendChild(n.createElement(r)),o=k.css(t,"display"),t.parentNode.removeChild(t),"none"===o&&(o="block"),be[r]=o,o)}function we(e,t){for(var n,r,o=[],i=0,a=e.length;i<a;i++)(r=e[i]).style&&(n=r.style.display,t?("none"===n&&(o[i]=se.get(r,"display")||null,o[i]||(r.style.display="")),""===r.style.display&&ye(r)&&(o[i]=_e(r))):"none"!==n&&(o[i]="none",se.set(r,"display",n)));for(i=0;i<a;i++)null!=o[i]&&(e[i].style.display=o[i]);return e}k.fn.extend({show:function(){return we(this,!0)},hide:function(){return we(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ye(this)?k(this).show():k(this).hide()})}});var Te,Ce,ke=/^(?:checkbox|radio)$/i,Se=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,Ee=/^$|^module$|\/(?:java|ecma)script/i;Te=x.createDocumentFragment().appendChild(x.createElement("div")),(Ce=x.createElement("input")).setAttribute("type","radio"),Ce.setAttribute("checked","checked"),Ce.setAttribute("name","t"),Te.appendChild(Ce),v.checkClone=Te.cloneNode(!0).cloneNode(!0).lastChild.checked,Te.innerHTML="<textarea>x</textarea>",v.noCloneChecked=!!Te.cloneNode(!0).lastChild.defaultValue,Te.innerHTML="<option></option>",v.option=!!Te.lastChild;var je={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function Ae(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&E(e,t)?k.merge([e],n):n}function De(e,t){for(var n=0,r=e.length;n<r;n++)se.set(e[n],"globalEval",!t||se.get(t[n],"globalEval"))}je.tbody=je.tfoot=je.colgroup=je.caption=je.thead,je.th=je.td,v.option||(je.optgroup=je.option=[1,"<select multiple='multiple'>","</select>"]);var Ne=/<|&#?\w+;/;function Me(e,t,n,r,o){for(var i,a,s,l,u,c,d=t.createDocumentFragment(),f=[],p=0,h=e.length;p<h;p++)if((i=e[p])||0===i)if("object"===w(i))k.merge(f,i.nodeType?[i]:i);else if(Ne.test(i)){for(a=a||d.appendChild(t.createElement("div")),s=(Se.exec(i)||["",""])[1].toLowerCase(),l=je[s]||je._default,a.innerHTML=l[1]+k.htmlPrefilter(i)+l[2],c=l[0];c--;)a=a.lastChild;k.merge(f,a.childNodes),(a=d.firstChild).textContent=""}else f.push(t.createTextNode(i));for(d.textContent="",p=0;i=f[p++];)if(r&&k.inArray(i,r)>-1)o&&o.push(i);else if(u=ve(i),a=Ae(d.appendChild(i),"script"),u&&De(a),n)for(c=0;i=a[c++];)Ee.test(i.type||"")&&n.push(i);return d}var Oe=/^([^.]*)(?:\.(.+)|)/;function $e(){return!0}function qe(){return!1}function Le(e,t,n,r,o,i){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Le(e,s,n,r,t[s],i);return e}if(null==r&&null==o?(o=n,r=n=void 0):null==o&&("string"==typeof n?(o=r,r=void 0):(o=r,r=n,n=void 0)),!1===o)o=qe;else if(!o)return e;return 1===i&&(a=o,o=function(e){return k().off(e),a.apply(this,arguments)},o.guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,o,r,n)})}function Re(e,t,n){n?(se.set(e,t,!1),k.event.add(e,t,{namespace:!1,handler:function(e){var n,r=se.get(this,t);if(1&e.isTrigger&&this[t]){if(r)(k.event.special[t]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),se.set(this,t,r),this[t](),n=se.get(this,t),se.set(this,t,!1),r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n}else r&&(se.set(this,t,k.event.trigger(r[0],r.slice(1),this)),e.stopPropagation(),e.isImmediatePropagationStopped=$e)}})):void 0===se.get(e,t)&&k.event.add(e,t,$e)}k.event={global:{},add:function(e,t,n,r,o){var i,a,s,l,u,c,d,f,p,h,g,v=se.get(e);if(ie(e))for(n.handler&&(n=(i=n).handler,o=i.selector),o&&k.find.matchesSelector(ge,o),n.guid||(n.guid=k.guid++),(l=v.events)||(l=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==k&&k.event.triggered!==t.type?k.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(G)||[""]).length;u--;)p=g=(s=Oe.exec(t[u])||[])[1],h=(s[2]||"").split(".").sort(),p&&(d=k.event.special[p]||{},p=(o?d.delegateType:d.bindType)||p,d=k.event.special[p]||{},c=k.extend({type:p,origType:g,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&k.expr.match.needsContext.test(o),namespace:h.join(".")},i),(f=l[p])||((f=l[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),d.add&&(d.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),o?f.splice(f.delegateCount++,0,c):f.push(c),k.event.global[p]=!0)},remove:function(e,t,n,r,o){var i,a,s,l,u,c,d,f,p,h,g,v=se.hasData(e)&&se.get(e);if(v&&(l=v.events)){for(u=(t=(t||"").match(G)||[""]).length;u--;)if(p=g=(s=Oe.exec(t[u])||[])[1],h=(s[2]||"").split(".").sort(),p){for(d=k.event.special[p]||{},f=l[p=(r?d.delegateType:d.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=i=f.length;i--;)c=f[i],!o&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(i,1),c.selector&&f.delegateCount--,d.remove&&d.remove.call(e,c));a&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,h,v.handle)||k.removeEvent(e,p,v.handle),delete l[p])}else for(p in l)k.event.remove(e,p+t[u],n,r,!0);k.isEmptyObject(l)&&se.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,a,s=new Array(arguments.length),l=k.event.fix(e),u=(se.get(this,"events")||Object.create(null))[l.type]||[],c=k.event.special[l.type]||{};for(s[0]=l,t=1;t<arguments.length;t++)s[t]=arguments[t];if(l.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,l)){for(a=k.event.handlers.call(this,l,u),t=0;(o=a[t++])&&!l.isPropagationStopped();)for(l.currentTarget=o.elem,n=0;(i=o.handlers[n++])&&!l.isImmediatePropagationStopped();)l.rnamespace&&!1!==i.namespace&&!l.rnamespace.test(i.namespace)||(l.handleObj=i,l.data=i.data,void 0!==(r=((k.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,s))&&!1===(l.result=r)&&(l.preventDefault(),l.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,l),l.result}},handlers:function(e,t){var n,r,o,i,a,s=[],l=t.delegateCount,u=e.target;if(l&&u.nodeType&&!("click"===e.type&&e.button>=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(i=[],a={},n=0;n<l;n++)void 0===a[o=(r=t[n]).selector+" "]&&(a[o]=r.needsContext?k(o,this).index(u)>-1:k.find(o,this,null,[u]).length),a[o]&&i.push(r);i.length&&s.push({elem:u,handlers:i})}return u=this,l<t.length&&s.push({elem:u,handlers:t.slice(l)}),s},addProp:function(e,t){Object.defineProperty(k.Event.prototype,e,{enumerable:!0,configurable:!0,get:m(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return ke.test(t.type)&&t.click&&E(t,"input")&&Re(t,"click",!0),!1},trigger:function(e){var t=this||e;return ke.test(t.type)&&t.click&&E(t,"input")&&Re(t,"click"),!0},_default:function(e){var t=e.target;return ke.test(t.type)&&t.click&&E(t,"input")&&se.get(t,"click")||E(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?$e:qe,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:qe,isPropagationStopped:qe,isImmediatePropagationStopped:qe,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=$e,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=$e,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=$e,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){function n(e){if(x.documentMode){var n=se.get(this,"handle"),r=k.event.fix(e);r.type="focusin"===e.type?"focus":"blur",r.isSimulated=!0,n(e),r.target===r.currentTarget&&n(r)}else k.event.simulate(t,e.target,k.event.fix(e))}k.event.special[e]={setup:function(){var r;if(Re(this,e,!0),!x.documentMode)return!1;(r=se.get(this,t))||this.addEventListener(t,n),se.set(this,t,(r||0)+1)},trigger:function(){return Re(this,e),!0},teardown:function(){var e;if(!x.documentMode)return!1;(e=se.get(this,t)-1)?se.set(this,t,e):(this.removeEventListener(t,n),se.remove(this,t))},_default:function(t){return se.get(t.target,e)},delegateType:t},k.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,o=x.documentMode?this:r,i=se.get(o,t);i||(x.documentMode?this.addEventListener(t,n):r.addEventListener(e,n,!0)),se.set(o,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,o=x.documentMode?this:r,i=se.get(o,t)-1;i?se.set(o,t,i):(x.documentMode?this.removeEventListener(t,n):r.removeEventListener(e,n,!0),se.remove(o,t))}}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){k.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=e.relatedTarget,o=e.handleObj;return r&&(r===this||k.contains(this,r))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),k.fn.extend({on:function(e,t,n,r){return Le(this,e,t,n,r)},one:function(e,t,n,r){return Le(this,e,t,n,r,1)},off:function(e,t,n){var r,o;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(o in e)this.off(o,t,e[o]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=qe),this.each(function(){k.event.remove(this,e,n,t)})}});var Pe=/<script|<style|<link/i,He=/checked\s*(?:[^=]|=\s*.checked.)/i,Ie=/^\s*<!\[CDATA\[|\]\]>\s*$/g;function Fe(e,t){return E(e,"table")&&E(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function We(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Be(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function ze(e,t){var n,r,o,i,a,s;if(1===t.nodeType){if(se.hasData(e)&&(s=se.get(e).events))for(o in se.remove(t,"handle events"),s)for(n=0,r=s[o].length;n<r;n++)k.event.add(t,o,s[o][n]);le.hasData(e)&&(i=le.access(e),a=k.extend({},i),le.set(t,a))}}function Ue(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ke.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function Xe(e,t,n,r){t=l(t);var o,i,a,s,u,c,d=0,f=e.length,p=f-1,h=t[0],g=m(h);if(g||f>1&&"string"==typeof h&&!v.checkClone&&He.test(h))return e.each(function(o){var i=e.eq(o);g&&(t[0]=h.call(this,o,i.html())),Xe(i,t,n,r)});if(f&&(i=(o=Me(t,e[0].ownerDocument,!1,e,r)).firstChild,1===o.childNodes.length&&(o=i),i||r)){for(s=(a=k.map(Ae(o,"script"),We)).length;d<f;d++)u=o,d!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,Ae(u,"script"))),n.call(e[d],u,d);if(s)for(c=a[a.length-1].ownerDocument,k.map(a,Be),d=0;d<s;d++)u=a[d],Ee.test(u.type||"")&&!se.access(u,"globalEval")&&k.contains(c,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},c):_(u.textContent.replace(Ie,""),u,c))}return e}function Ge(e,t,n){for(var r,o=t?k.filter(t,e):e,i=0;null!=(r=o[i]);i++)n||1!==r.nodeType||k.cleanData(Ae(r)),r.parentNode&&(n&&ve(r)&&De(Ae(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,o,i,a,s=e.cloneNode(!0),l=ve(e);if(!(v.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=Ae(s),r=0,o=(i=Ae(e)).length;r<o;r++)Ue(i[r],a[r]);if(t)if(n)for(i=i||Ae(e),a=a||Ae(s),r=0,o=i.length;r<o;r++)ze(i[r],a[r]);else ze(e,s);return(a=Ae(s,"script")).length>0&&De(a,!l&&Ae(e,"script")),s},cleanData:function(e){for(var t,n,r,o=k.event.special,i=0;void 0!==(n=e[i]);i++)if(ie(n)){if(t=n[se.expando]){if(t.events)for(r in t.events)o[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[se.expando]=void 0}n[le.expando]&&(n[le.expando]=void 0)}}}),k.fn.extend({detach:function(e){return Ge(this,e,!0)},remove:function(e){return Ge(this,e)},text:function(e){return ee(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Xe(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Fe(this,e).appendChild(e)})},prepend:function(){return Xe(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Fe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Xe(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Xe(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(Ae(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return ee(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Pe.test(e)&&!je[(Se.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(Ae(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return Xe(this,arguments,function(t){var n=this.parentNode;k.inArray(this,e)<0&&(k.cleanData(Ae(this)),n&&n.replaceChild(t,this))},e)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){k.fn[e]=function(e){for(var n,r=[],o=k(e),i=o.length-1,a=0;a<=i;a++)n=a===i?this:this.clone(!0),k(o[a])[t](n),u.apply(r,n.get());return this.pushStack(r)}});var Qe=new RegExp("^("+fe+")(?!px)[a-z%]+$","i"),Ve=/^--/,Ye=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=r),t.getComputedStyle(e)},Je=function(e,t,n){var r,o,i={};for(o in t)i[o]=e.style[o],e.style[o]=t[o];for(o in r=n.call(e),t)e.style[o]=i[o];return r},Ke=new RegExp(he.join("|"),"i");function Ze(e,t,n){var r,o,i,a,s=Ve.test(t),l=e.style;return(n=n||Ye(e))&&(a=n.getPropertyValue(t)||n[t],s&&a&&(a=a.replace(M,"$1")||void 0),""!==a||ve(e)||(a=k.style(e,t)),!v.pixelBoxStyles()&&Qe.test(a)&&Ke.test(t)&&(r=l.width,o=l.minWidth,i=l.maxWidth,l.minWidth=l.maxWidth=l.width=a,a=n.width,l.width=r,l.minWidth=o,l.maxWidth=i)),void 0!==a?a+"":a}function et(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(c){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ge.appendChild(u).appendChild(c);var e=r.getComputedStyle(c);n="1%"!==e.top,l=12===t(e.marginLeft),c.style.right="60%",a=36===t(e.right),o=36===t(e.width),c.style.position="absolute",i=12===t(c.offsetWidth/3),ge.removeChild(u),c=null}}function t(e){return Math.round(parseFloat(e))}var n,o,i,a,s,l,u=x.createElement("div"),c=x.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",v.clearCloneStyle="content-box"===c.style.backgroundClip,k.extend(v,{boxSizingReliable:function(){return e(),o},pixelBoxStyles:function(){return e(),a},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),l},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,o;return null==s&&(e=x.createElement("table"),t=x.createElement("tr"),n=x.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="box-sizing:content-box;border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",ge.appendChild(e).appendChild(t).appendChild(n),o=r.getComputedStyle(t),s=parseInt(o.height,10)+parseInt(o.borderTopWidth,10)+parseInt(o.borderBottomWidth,10)===t.offsetHeight,ge.removeChild(e)),s}}))}();var tt=["Webkit","Moz","ms"],nt=x.createElement("div").style,rt={};function ot(e){var t=k.cssProps[e]||rt[e];return t||(e in nt?e:rt[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=tt.length;n--;)if((e=tt[n]+t)in nt)return e}(e)||e)}var it=/^(none|table(?!-c[ea]).+)/,at={position:"absolute",visibility:"hidden",display:"block"},st={letterSpacing:"0",fontWeight:"400"};function lt(e,t,n){var r=pe.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function ut(e,t,n,r,o,i){var a="width"===t?1:0,s=0,l=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+he[a],!0,o)),r?("content"===n&&(l-=k.css(e,"padding"+he[a],!0,o)),"margin"!==n&&(l-=k.css(e,"border"+he[a]+"Width",!0,o))):(l+=k.css(e,"padding"+he[a],!0,o),"padding"!==n?l+=k.css(e,"border"+he[a]+"Width",!0,o):s+=k.css(e,"border"+he[a]+"Width",!0,o));return!r&&i>=0&&(l+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-i-l-s-.5))||0),l+u}function ct(e,t,n){var r=Ye(e),o=(!v.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),i=o,a=Ze(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Qe.test(a)){if(!n)return a;a="auto"}return(!v.boxSizingReliable()&&o||!v.reliableTrDimensions()&&E(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(o="border-box"===k.css(e,"boxSizing",!1,r),(i=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+ut(e,t,n||(o?"border":"content"),i,r,a)+"px"}function dt(e,t,n,r,o){return new dt.prototype.init(e,t,n,r,o)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ze(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,i,a,s=oe(t),l=Ve.test(t),u=e.style;if(l||(t=ot(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(o=a.get(e,!1,r))?o:u[t];"string"===(i=typeof n)&&(o=pe.exec(n))&&o[1]&&(n=xe(e,t,o),i="number"),null!=n&&n==n&&("number"!==i||l||(n+=o&&o[3]||(k.cssNumber[s]?"":"px")),v.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(l?u.setProperty(t,n):u[t]=n))}},css:function(e,t,n,r){var o,i,a,s=oe(t);return Ve.test(t)||(t=ot(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=Ze(e,t,r)),"normal"===o&&t in st&&(o=st[t]),""===n||n?(i=parseFloat(o),!0===n||isFinite(i)?i||0:o):o}}),k.each(["height","width"],function(e,t){k.cssHooks[t]={get:function(e,n,r){if(n)return!it.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?ct(e,t,r):Je(e,at,function(){return ct(e,t,r)})},set:function(e,n,r){var o,i=Ye(e),a=!v.scrollboxSize()&&"absolute"===i.position,s=(a||r)&&"border-box"===k.css(e,"boxSizing",!1,i),l=r?ut(e,t,r,s,i):0;return s&&a&&(l-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(i[t])-ut(e,t,"border",!1,i)-.5)),l&&(o=pe.exec(n))&&"px"!==(o[3]||"px")&&(e.style[t]=n,n=k.css(e,t)),lt(0,n,l)}}}),k.cssHooks.marginLeft=et(v.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Ze(e,"marginLeft"))||e.getBoundingClientRect().left-Je(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(e,t){k.cssHooks[e+t]={expand:function(n){for(var r=0,o={},i="string"==typeof n?n.split(" "):[n];r<4;r++)o[e+he[r]+t]=i[r]||i[r-2]||i[0];return o}},"margin"!==e&&(k.cssHooks[e+t].set=lt)}),k.fn.extend({css:function(e,t){return ee(this,function(e,t,n){var r,o,i={},a=0;if(Array.isArray(t)){for(r=Ye(e),o=t.length;a<o;a++)i[t[a]]=k.css(e,t[a],!1,r);return i}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,arguments.length>1)}}),k.Tween=dt,dt.prototype={constructor:dt,init:function(e,t,n,r,o,i){this.elem=e,this.prop=n,this.easing=o||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(k.cssNumber[n]?"":"px")},cur:function(){var e=dt.propHooks[this.prop];return e&&e.get?e.get(this):dt.propHooks._default.get(this)},run:function(e){var t,n=dt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):dt.propHooks._default.set(this),this}},dt.prototype.init.prototype=dt.prototype,dt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[ot(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}},dt.propHooks.scrollTop=dt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=dt.prototype.init,k.fx.step={};var ft,pt,ht=/^(?:toggle|show|hide)$/,gt=/queueHooks$/;function vt(){pt&&(!1===x.hidden&&r.requestAnimationFrame?r.requestAnimationFrame(vt):r.setTimeout(vt,k.fx.interval),k.fx.tick())}function mt(){return r.setTimeout(function(){ft=void 0}),ft=Date.now()}function yt(e,t){var n,r=0,o={height:e};for(t=t?1:0;r<4;r+=2-t)o["margin"+(n=he[r])]=o["padding"+n]=e;return t&&(o.opacity=o.width=e),o}function xt(e,t,n){for(var r,o=(bt.tweeners[t]||[]).concat(bt.tweeners["*"]),i=0,a=o.length;i<a;i++)if(r=o[i].call(n,t,e))return r}function bt(e,t,n){var r,o,i=0,a=bt.prefilters.length,s=k.Deferred().always(function(){delete l.elem}),l=function(){if(o)return!1;for(var t=ft||mt(),n=Math.max(0,u.startTime+u.duration-t),r=1-(n/u.duration||0),i=0,a=u.tweens.length;i<a;i++)u.tweens[i].run(r);return s.notifyWith(e,[u,r,n]),r<1&&a?n:(a||s.notifyWith(e,[u,1,0]),s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:k.extend({},t),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},n),originalProperties:t,originalOptions:n,startTime:ft||mt(),duration:n.duration,tweens:[],createTween:function(t,n){var r=k.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(o)return this;for(o=!0;n<r;n++)u.tweens[n].run(1);return t?(s.notifyWith(e,[u,1,0]),s.resolveWith(e,[u,t])):s.rejectWith(e,[u,t]),this}}),c=u.props;for(!function(e,t){var n,r,o,i,a;for(n in e)if(o=t[r=oe(n)],i=e[n],Array.isArray(i)&&(o=i[1],i=e[n]=i[0]),n!==r&&(e[r]=i,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in i=a.expand(i),delete e[r],i)n in e||(e[n]=i[n],t[n]=o);else t[r]=o}(c,u.opts.specialEasing);i<a;i++)if(r=bt.prefilters[i].call(u,e,c,u.opts))return m(r.stop)&&(k._queueHooks(u.elem,u.opts.queue).stop=r.stop.bind(r)),r;return k.map(c,xt,u),m(u.opts.start)&&u.opts.start.call(e,u),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always),k.fx.timer(k.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u}k.Animation=k.extend(bt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return xe(n.elem,e,pe.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(G);for(var n,r=0,o=e.length;r<o;r++)n=e[r],bt.tweeners[n]=bt.tweeners[n]||[],bt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,o,i,a,s,l,u,c,d="width"in t||"height"in t,f=this,p={},h=e.style,g=e.nodeType&&ye(e),v=se.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,f.always(function(){f.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(o=t[r],ht.test(o)){if(delete t[r],i=i||"toggle"===o,o===(g?"hide":"show")){if("show"!==o||!v||void 0===v[r])continue;g=!0}p[r]=v&&v[r]||k.style(e,r)}if((l=!k.isEmptyObject(t))||!k.isEmptyObject(p))for(r in d&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(u=v&&v.display)&&(u=se.get(e,"display")),"none"===(c=k.css(e,"display"))&&(u?c=u:(we([e],!0),u=e.style.display||u,c=k.css(e,"display"),we([e]))),("inline"===c||"inline-block"===c&&null!=u)&&"none"===k.css(e,"float")&&(l||(f.done(function(){h.display=u}),null==u&&(c=h.display,u="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",f.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),l=!1,p)l||(v?"hidden"in v&&(g=v.hidden):v=se.access(e,"fxshow",{display:u}),i&&(v.hidden=!g),g&&we([e],!0),f.done(function(){for(r in g||we([e]),se.remove(e,"fxshow"),p)k.style(e,r,p[r])})),l=xt(g?v[r]:0,r,f),r in v||(v[r]=l.start,g&&(l.end=l.start,l.start=0))}],prefilter:function(e,t){t?bt.prefilters.unshift(e):bt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ye).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var o=k.isEmptyObject(e),i=k.speed(t,n,r),a=function(){var t=bt(this,k.extend({},e),i);(o||se.get(this,"finish"))&&t.stop(!0)};return a.finish=a,o||!1===i.queue?this.each(a):this.queue(i.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||"fx",[]),this.each(function(){var t=!0,o=null!=e&&e+"queueHooks",i=k.timers,a=se.get(this);if(o)a[o]&&a[o].stop&&r(a[o]);else for(o in a)a[o]&&a[o].stop&>.test(o)&&r(a[o]);for(o=i.length;o--;)i[o].elem!==this||null!=e&&i[o].queue!==e||(i[o].anim.stop(n),t=!1,i.splice(o,1));!t&&n||k.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=se.get(this),r=n[e+"queue"],o=n[e+"queueHooks"],i=k.timers,a=r?r.length:0;for(n.finish=!0,k.queue(this,e,[]),o&&o.stop&&o.stop.call(this,!0),t=i.length;t--;)i[t].elem===this&&i[t].queue===e&&(i[t].anim.stop(!0),i.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),k.each(["toggle","show","hide"],function(e,t){var n=k.fn[t];k.fn[t]=function(e,r,o){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(yt(t,!0),e,r,o)}}),k.each({slideDown:yt("show"),slideUp:yt("hide"),slideToggle:yt("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){k.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(ft=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),ft=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){pt||(pt=!0,vt())},k.fx.stop=function(){pt=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(e,t){return e=k.fx&&k.fx.speeds[e]||e,t=t||"fx",this.queue(t,function(t,n){var o=r.setTimeout(t,e);n.stop=function(){r.clearTimeout(o)}})},function(){var e=x.createElement("input"),t=x.createElement("select").appendChild(x.createElement("option"));e.type="checkbox",v.checkOn=""!==e.value,v.optSelected=t.selected,(e=x.createElement("input")).value="t",e.type="radio",v.radioValue="t"===e.value}();var _t,wt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return ee(this,k.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return void 0===e.getAttribute?k.prop(e,t,n):(1===i&&k.isXMLDoc(e)||(o=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?_t:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(r=o.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&"radio"===t&&E(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,o=t&&t.match(G);if(o&&1===e.nodeType)for(;n=o[r++];)e.removeAttribute(n)}}),_t={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var n=wt[t]||k.find.attr;wt[t]=function(e,t,r){var o,i,a=t.toLowerCase();return r||(i=wt[a],wt[a]=o,o=null!=n(e,t,r)?a:null,wt[a]=i),o}});var Tt=/^(?:input|select|textarea|button)$/i,Ct=/^(?:a|area)$/i;function kt(e){return(e.match(G)||[]).join(" ")}function St(e){return e.getAttribute&&e.getAttribute("class")||""}function Et(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(G)||[]}k.fn.extend({prop:function(e,t){return ee(this,k.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&k.isXMLDoc(e)||(t=k.propFix[t]||t,o=k.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:e[t]=n:o&&"get"in o&&null!==(r=o.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):Tt.test(e.nodeName)||Ct.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),v.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(e){var t,n,r,o,i,a;return m(e)?this.each(function(t){k(this).addClass(e.call(this,t,St(this)))}):(t=Et(e)).length?this.each(function(){if(r=St(this),n=1===this.nodeType&&" "+kt(r)+" "){for(i=0;i<t.length;i++)o=t[i],n.indexOf(" "+o+" ")<0&&(n+=o+" ");a=kt(n),r!==a&&this.setAttribute("class",a)}}):this},removeClass:function(e){var t,n,r,o,i,a;return m(e)?this.each(function(t){k(this).removeClass(e.call(this,t,St(this)))}):arguments.length?(t=Et(e)).length?this.each(function(){if(r=St(this),n=1===this.nodeType&&" "+kt(r)+" "){for(i=0;i<t.length;i++)for(o=t[i];n.indexOf(" "+o+" ")>-1;)n=n.replace(" "+o+" "," ");a=kt(n),r!==a&&this.setAttribute("class",a)}}):this:this.attr("class","")},toggleClass:function(e,t){var n,r,o,i,a=typeof e,s="string"===a||Array.isArray(e);return m(e)?this.each(function(n){k(this).toggleClass(e.call(this,n,St(this),t),t)}):"boolean"==typeof t&&s?t?this.addClass(e):this.removeClass(e):(n=Et(e),this.each(function(){if(s)for(i=k(this),o=0;o<n.length;o++)r=n[o],i.hasClass(r)?i.removeClass(r):i.addClass(r);else void 0!==e&&"boolean"!==a||((r=St(this))&&se.set(this,"__className__",r),this.setAttribute&&this.setAttribute("class",r||!1===e?"":se.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+kt(St(n))+" ").indexOf(t)>-1)return!0;return!1}});var jt=/\r/g;k.fn.extend({val:function(e){var t,n,r,o=this[0];return arguments.length?(r=m(e),this.each(function(n){var o;1===this.nodeType&&(null==(o=r?e.call(this,n,k(this).val()):e)?o="":"number"==typeof o?o+="":Array.isArray(o)&&(o=k.map(o,function(e){return null==e?"":e+""})),(t=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))})):o?(t=k.valHooks[o.type]||k.valHooks[o.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:"string"==typeof(n=o.value)?n.replace(jt,""):null==n?"":n:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:kt(k.text(e))}},select:{get:function(e){var t,n,r,o=e.options,i=e.selectedIndex,a="select-one"===e.type,s=a?null:[],l=a?i+1:o.length;for(r=i<0?l:a?i:0;r<l;r++)if(((n=o[r]).selected||r===i)&&!n.disabled&&(!n.parentNode.disabled||!E(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){for(var n,r,o=e.options,i=k.makeArray(t),a=o.length;a--;)((r=o[a]).selected=k.inArray(k.valHooks.option.get(r),i)>-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=k.inArray(k(e).val(),t)>-1}},v.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var At=r.location,Dt={guid:Date.now()},Nt=/\?/;k.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new r.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||k.error("Invalid XML: "+(n?k.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Mt=/^(?:focusinfocus|focusoutblur)$/,Ot=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,o){var i,a,s,l,u,c,d,f,h=[n||x],g=p.call(e,"type")?e.type:e,v=p.call(e,"namespace")?e.namespace.split("."):[];if(a=f=s=n=n||x,3!==n.nodeType&&8!==n.nodeType&&!Mt.test(g+k.event.triggered)&&(g.indexOf(".")>-1&&(v=g.split("."),g=v.shift(),v.sort()),u=g.indexOf(":")<0&&"on"+g,(e=e[k.expando]?e:new k.Event(g,"object"==typeof e&&e)).isTrigger=o?2:3,e.namespace=v.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+v.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),d=k.event.special[g]||{},o||!d.trigger||!1!==d.trigger.apply(n,t))){if(!o&&!d.noBubble&&!y(n)){for(l=d.delegateType||g,Mt.test(l+g)||(a=a.parentNode);a;a=a.parentNode)h.push(a),s=a;s===(n.ownerDocument||x)&&h.push(s.defaultView||s.parentWindow||r)}for(i=0;(a=h[i++])&&!e.isPropagationStopped();)f=a,e.type=i>1?l:d.bindType||g,(c=(se.get(a,"events")||Object.create(null))[e.type]&&se.get(a,"handle"))&&c.apply(a,t),(c=u&&a[u])&&c.apply&&ie(a)&&(e.result=c.apply(a,t),!1===e.result&&e.preventDefault());return e.type=g,o||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(h.pop(),t)||!ie(n)||u&&m(n[g])&&!y(n)&&((s=n[u])&&(n[u]=null),k.event.triggered=g,e.isPropagationStopped()&&f.addEventListener(g,Ot),n[g](),e.isPropagationStopped()&&f.removeEventListener(g,Ot),k.event.triggered=void 0,s&&(n[u]=s)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}});var $t=/\[\]$/,qt=/\r?\n/g,Lt=/^(?:submit|button|image|reset|file)$/i,Rt=/^(?:input|select|textarea|keygen)/i;function Pt(e,t,n,r){var o;if(Array.isArray(t))k.each(t,function(t,o){n||$t.test(e)?r(e,o):Pt(e+"["+("object"==typeof o&&null!=o?t:"")+"]",o,n,r)});else if(n||"object"!==w(t))r(e,t);else for(o in t)Pt(e+"["+o+"]",t[o],n,r)}k.param=function(e,t){var n,r=[],o=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){o(this.name,this.value)});else for(n in e)Pt(n,e[n],t,o);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&Rt.test(this.nodeName)&&!Lt.test(e)&&(this.checked||!ke.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(qt,"\r\n")}}):{name:t.name,value:n.replace(qt,"\r\n")}}).get()}});var Ht=/%20/g,It=/#.*$/,Ft=/([?&])_=[^&]*/,Wt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Bt=/^(?:GET|HEAD)$/,zt=/^\/\//,Ut={},Xt={},Gt="*/".concat("*"),Qt=x.createElement("a");function Vt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,o=0,i=t.toLowerCase().match(G)||[];if(m(n))for(;r=i[o++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Yt(e,t,n,r){var o={},i=e===Xt;function a(s){var l;return o[s]=!0,k.each(e[s]||[],function(e,s){var u=s(t,n,r);return"string"!=typeof u||i||o[u]?i?!(l=u):void 0:(t.dataTypes.unshift(u),a(u),!1)}),l}return a(t.dataTypes[0])||!o["*"]&&a("*")}function Jt(e,t){var n,r,o=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((o[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Qt.href=At.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:At.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(At.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Gt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Jt(Jt(e,k.ajaxSettings),t):Jt(k.ajaxSettings,e)},ajaxPrefilter:Vt(Ut),ajaxTransport:Vt(Xt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var n,o,i,a,s,l,u,c,d,f,p=k.ajaxSetup({},t),h=p.context||p,g=p.context&&(h.nodeType||h.jquery)?k(h):k.event,v=k.Deferred(),m=k.Callbacks("once memory"),y=p.statusCode||{},b={},_={},w="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(u){if(!a)for(a={};t=Wt.exec(i);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return u?i:null},setRequestHeader:function(e,t){return null==u&&(e=_[e.toLowerCase()]=_[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==u&&(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(u)T.always(e[T.status]);else for(t in e)y[t]=[y[t],e[t]];return this},abort:function(e){var t=e||w;return n&&n.abort(t),C(0,t),this}};if(v.promise(T),p.url=((e||p.url||At.href)+"").replace(zt,At.protocol+"//"),p.type=t.method||t.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(G)||[""],null==p.crossDomain){l=x.createElement("a");try{l.href=p.url,l.href=l.href,p.crossDomain=Qt.protocol+"//"+Qt.host!=l.protocol+"//"+l.host}catch(e){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=k.param(p.data,p.traditional)),Yt(Ut,p,t,T),u)return T;for(d in(c=k.event&&p.global)&&0===k.active++&&k.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Bt.test(p.type),o=p.url.replace(It,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(Ht,"+")):(f=p.url.slice(o.length),p.data&&(p.processData||"string"==typeof p.data)&&(o+=(Nt.test(o)?"&":"?")+p.data,delete p.data),!1===p.cache&&(o=o.replace(Ft,"$1"),f=(Nt.test(o)?"&":"?")+"_="+Dt.guid+++f),p.url=o+f),p.ifModified&&(k.lastModified[o]&&T.setRequestHeader("If-Modified-Since",k.lastModified[o]),k.etag[o]&&T.setRequestHeader("If-None-Match",k.etag[o])),(p.data&&p.hasContent&&!1!==p.contentType||t.contentType)&&T.setRequestHeader("Content-Type",p.contentType),T.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Gt+"; q=0.01":""):p.accepts["*"]),p.headers)T.setRequestHeader(d,p.headers[d]);if(p.beforeSend&&(!1===p.beforeSend.call(h,T,p)||u))return T.abort();if(w="abort",m.add(p.complete),T.done(p.success),T.fail(p.error),n=Yt(Xt,p,t,T)){if(T.readyState=1,c&&g.trigger("ajaxSend",[T,p]),u)return T;p.async&&p.timeout>0&&(s=r.setTimeout(function(){T.abort("timeout")},p.timeout));try{u=!1,n.send(b,C)}catch(e){if(u)throw e;C(-1,e)}}else C(-1,"No Transport");function C(e,t,a,l){var d,f,x,b,_,w=t;u||(u=!0,s&&r.clearTimeout(s),n=void 0,i=l||"",T.readyState=e>0?4:0,d=e>=200&&e<300||304===e,a&&(b=function(e,t,n){for(var r,o,i,a,s=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(o in s)if(s[o]&&s[o].test(r)){l.unshift(o);break}if(l[0]in n)i=l[0];else{for(o in n){if(!l[0]||e.converters[o+" "+l[0]]){i=o;break}a||(a=o)}i=i||a}if(i)return i!==l[0]&&l.unshift(i),n[i]}(p,T,a)),!d&&k.inArray("script",p.dataTypes)>-1&&k.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),b=function(e,t,n,r){var o,i,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];for(i=c.shift();i;)if(e.responseFields[i]&&(n[e.responseFields[i]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=i,i=c.shift())if("*"===i)i=l;else if("*"!==l&&l!==i){if(!(a=u[l+" "+i]||u["* "+i]))for(o in u)if((s=o.split(" "))[1]===i&&(a=u[l+" "+s[0]]||u["* "+s[0]])){!0===a?a=u[o]:!0!==u[o]&&(i=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+l+" to "+i}}}return{state:"success",data:t}}(p,b,T,d),d?(p.ifModified&&((_=T.getResponseHeader("Last-Modified"))&&(k.lastModified[o]=_),(_=T.getResponseHeader("etag"))&&(k.etag[o]=_)),204===e||"HEAD"===p.type?w="nocontent":304===e?w="notmodified":(w=b.state,f=b.data,d=!(x=b.error))):(x=w,!e&&w||(w="error",e<0&&(e=0))),T.status=e,T.statusText=(t||w)+"",d?v.resolveWith(h,[f,w,T]):v.rejectWith(h,[T,w,x]),T.statusCode(y),y=void 0,c&&g.trigger(d?"ajaxSuccess":"ajaxError",[T,p,d?f:x]),m.fireWith(h,[T,w]),c&&(g.trigger("ajaxComplete",[T,p]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,t){k[t]=function(e,n,r,o){return m(n)&&(o=o||r,r=n,n=void 0),k.ajax(k.extend({url:e,type:t,dataType:o,data:n,success:r},k.isPlainObject(e)&&e))}}),k.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),k._evalUrl=function(e,t,n){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t,n)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return m(e)?this.each(function(t){k(this).wrapInner(e.call(this,t))}):this.each(function(){var t=k(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=m(e);return this.each(function(n){k(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new r.XMLHttpRequest}catch(e){}};var Kt={0:200,1223:204},Zt=k.ajaxSettings.xhr();v.cors=!!Zt&&"withCredentials"in Zt,v.ajax=Zt=!!Zt,k.ajaxTransport(function(e){var t,n;if(v.cors||Zt&&!e.crossDomain)return{send:function(o,i){var a,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest"),o)s.setRequestHeader(a,o[a]);t=function(e){return function(){t&&(t=n=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?i(0,"error"):i(s.status,s.statusText):i(Kt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),n=s.onerror=s.ontimeout=t("error"),void 0!==s.onabort?s.onabort=n:s.onreadystatechange=function(){4===s.readyState&&r.setTimeout(function(){t&&n()})},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,o){t=k("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&o("error"===e.type?404:200,e.type)}),x.head.appendChild(t[0])},abort:function(){n&&n()}}});var en,tn=[],nn=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=tn.pop()||k.expando+"_"+Dt.guid++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var o,i,a,s=!1!==e.jsonp&&(nn.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&nn.test(e.data)&&"data");if(s||"jsonp"===e.dataTypes[0])return o=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(nn,"$1"+o):!1!==e.jsonp&&(e.url+=(Nt.test(e.url)?"&":"?")+e.jsonp+"="+o),e.converters["script json"]=function(){return a||k.error(o+" was not called"),a[0]},e.dataTypes[0]="json",i=r[o],r[o]=function(){a=arguments},n.always(function(){void 0===i?k(r).removeProp(o):r[o]=i,e[o]&&(e.jsonpCallback=t.jsonpCallback,tn.push(o)),a&&m(i)&&i(a[0]),a=i=void 0}),"script"}),v.createHTMLDocument=((en=x.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===en.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=x.implementation.createHTMLDocument("")).createElement("base")).href=x.location.href,t.head.appendChild(r)):t=x),i=!n&&[],(o=I.exec(e))?[t.createElement(o[1])]:(o=Me([e],t,i),i&&i.length&&k(i).remove(),k.merge([],o.childNodes)));var r,o,i},k.fn.load=function(e,t,n){var r,o,i,a=this,s=e.indexOf(" ");return s>-1&&(r=kt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(o="POST"),a.length>0&&k.ajax({url:e,type:o||"GET",dataType:"html",data:t}).done(function(e){i=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,i||[e.responseText,t,e])})}),this},k.expr.pseudos.animated=function(e){return k.grep(k.timers,function(t){return e===t.elem}).length},k.offset={setOffset:function(e,t,n){var r,o,i,a,s,l,u=k.css(e,"position"),c=k(e),d={};"static"===u&&(e.style.position="relative"),s=c.offset(),i=k.css(e,"top"),l=k.css(e,"left"),("absolute"===u||"fixed"===u)&&(i+l).indexOf("auto")>-1?(a=(r=c.position()).top,o=r.left):(a=parseFloat(i)||0,o=parseFloat(l)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(d.top=t.top-s.top+a),null!=t.left&&(d.left=t.left-s.left+o),"using"in t?t.using.call(e,d):c.css(d)}},k.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){k.offset.setOffset(this,e,t)});var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],o={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((o=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),o.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-o.top-k.css(r,"marginTop",!0),left:t.left-o.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===k.css(e,"position");)e=e.offsetParent;return e||ge})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;k.fn[e]=function(r){return ee(this,function(e,r,o){var i;if(y(e)?i=e:9===e.nodeType&&(i=e.defaultView),void 0===o)return i?i[t]:e[r];i?i.scrollTo(n?i.pageXOffset:o,n?o:i.pageYOffset):e[r]=o},e,r,arguments.length)}}),k.each(["top","left"],function(e,t){k.cssHooks[t]=et(v.pixelPosition,function(e,n){if(n)return n=Ze(e,t),Qe.test(n)?k(e).position()[t]+"px":n})}),k.each({Height:"height",Width:"width"},function(e,t){k.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){k.fn[r]=function(o,i){var a=arguments.length&&(n||"boolean"!=typeof o),s=n||(!0===o||!0===i?"margin":"border");return ee(this,function(t,n,o){var i;return y(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===o?k.css(t,n,s):k.style(t,n,o,s)},t,a?o:void 0,a)}})}),k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){k.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}});var rn=/^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;k.proxy=function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),o=function(){return e.apply(t||this,r.concat(s.call(arguments)))},o.guid=e.guid=e.guid||k.guid++,o},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=E,k.isFunction=m,k.isWindow=y,k.camelCase=oe,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},k.trim=function(e){return null==e?"":(e+"").replace(rn,"$1")},void 0===(n=function(){return k}.apply(t,[]))||(e.exports=n);var on=r.jQuery,an=r.$;return k.noConflict=function(e){return r.$===k&&(r.$=an),e&&r.jQuery===k&&(r.jQuery=on),k},void 0===o&&(r.jQuery=r.$=k),k})}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,n),i.exports}n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};n(678)})();
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
<!doctype html><html lang="en" style="height: 100%;"><head><meta charset="UTF-8"><meta name="viewport" content="width=900px"><title>Pearmut Evaluation</title><link rel="icon" type="image/svg+xml" href="favicon.svg"><style>.output_srctgt {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: calc(100% - 10px);
|
|
4
|
+
padding-right: 10px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.output_src, .output_ref {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
flex: 1;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
background-color: #fff7;
|
|
12
|
+
padding: 10px;
|
|
13
|
+
border-radius: 8px;
|
|
14
|
+
vertical-align: top;
|
|
15
|
+
margin-bottom: 10px;
|
|
16
|
+
user-select: none;
|
|
17
|
+
box-shadow: 0 4px 6px #0005;
|
|
18
|
+
margin-right: 10px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.output_candidate {
|
|
22
|
+
display: inline-block;
|
|
23
|
+
flex: 1;
|
|
24
|
+
box-sizing: border-box;
|
|
25
|
+
vertical-align: top;
|
|
26
|
+
margin-right: 5px;
|
|
27
|
+
margin-bottom: 10px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.output_tgt, .output_textfield {
|
|
31
|
+
width: calc(100% - 20px);
|
|
32
|
+
background-color: #fffc;
|
|
33
|
+
padding: 10px;
|
|
34
|
+
border-radius: 8px;
|
|
35
|
+
user-select: none;
|
|
36
|
+
box-shadow: 0 4px 6px #0005;
|
|
37
|
+
border: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.output_response {
|
|
41
|
+
display: flex;
|
|
42
|
+
align-items: center;
|
|
43
|
+
margin-top: 5px;
|
|
44
|
+
position: relative;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* When output_response contains slider_container children, stack vertically */
|
|
48
|
+
.output_response:has(.slider_container) {
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
align-items: stretch;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.output_response input[type=range] {
|
|
54
|
+
flex: 1;
|
|
55
|
+
min-width: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.slider_label {
|
|
59
|
+
width: 50px;
|
|
60
|
+
font-size: 10pt;
|
|
61
|
+
color: #555;
|
|
62
|
+
text-align: right;
|
|
63
|
+
margin-left: 5px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* Custom sliders styling */
|
|
67
|
+
.slider_container {
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
position: relative;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.slider_container:first-child {
|
|
74
|
+
margin-top: 0;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.slider_container input[type=range] {
|
|
78
|
+
flex: 1;
|
|
79
|
+
min-width: 0;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.slider_name {
|
|
83
|
+
display: inline-block;
|
|
84
|
+
width: 120px;
|
|
85
|
+
margin-right: 8px;
|
|
86
|
+
color: #333;
|
|
87
|
+
flex-shrink: 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* on displays with less than 1000px - stack vertically */
|
|
91
|
+
@media (max-width: 1000px) {
|
|
92
|
+
.output_candidate {
|
|
93
|
+
display: block;
|
|
94
|
+
width: 100%;
|
|
95
|
+
margin-right: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.output_tgt, .output_textfield {
|
|
99
|
+
display: block;
|
|
100
|
+
width: calc(100% - 20px);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
input[type=range] {
|
|
105
|
+
height: 16px;
|
|
106
|
+
position: relative;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* Slider anchors at 33% and 66% */
|
|
110
|
+
.output_response::before,
|
|
111
|
+
.output_response::after {
|
|
112
|
+
content: '▼';
|
|
113
|
+
position: absolute;
|
|
114
|
+
transform: translateY(-30%);
|
|
115
|
+
width: 1px;
|
|
116
|
+
height: 10px;
|
|
117
|
+
pointer-events: none;
|
|
118
|
+
z-index: -1;
|
|
119
|
+
color: #777;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/* Hide anchors when custom sliders are present */
|
|
123
|
+
.output_response:has(.slider_container)::before,
|
|
124
|
+
.output_response:has(.slider_container)::after {
|
|
125
|
+
display: none;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* Hide anchors when no sliders (empty div) */
|
|
129
|
+
.output_response:empty::before,
|
|
130
|
+
.output_response:empty::after {
|
|
131
|
+
display: none;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.output_response::before {
|
|
135
|
+
left: calc(33% - 18px);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.output_response::after {
|
|
139
|
+
left: calc(66% - 36px);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* Textfield styling */
|
|
143
|
+
.output_textfield {
|
|
144
|
+
width: calc(100% - 20px);
|
|
145
|
+
margin-top: 10px;
|
|
146
|
+
padding: 8px;
|
|
147
|
+
border-radius: 4px;
|
|
148
|
+
border: 1px solid #999;
|
|
149
|
+
resize: vertical;
|
|
150
|
+
min-height: 60px;
|
|
151
|
+
font-family: inherit;
|
|
152
|
+
font-size: 10pt;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.textfield_toggle {
|
|
156
|
+
background: none;
|
|
157
|
+
border: none;
|
|
158
|
+
font-size: 9pt;
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
}</style><script defer="defer" src="annotate.bundle.js?c0a4cdfa9d1ee5f2e887"></script><link href="style.css?c0a4cdfa9d1ee5f2e887" rel="stylesheet"></head><body><div style="max-width: 1600px; min-width: 900px; margin-left: auto; margin-right: auto; margin-top: 20px; padding-left: 10px;"><div class="white-box" style="margin-right: 10px; background-color: #e7e2cf; padding: 5px 15px 5px 5px;"><span id="instructions_global" style="display: inline-block; font-size: 11pt; width: calc(100% - 175px);"></span><div style="width: 170px; display: inline-block; vertical-align: top; text-align: right; padding-top: 5px;"><span id="time" style="width: 135px; text-align: left; display: inline-block; font-size: 11pt;" title="Approximation of total annotation time.">Time: 0m</span> <input type="button" value="⚙️" id="button_settings" style="height: 1.5em; width: 30px;"><br><br><div id="progress" style="text-align: center;"></div><br><br><input type="button" value="Next 🛠️" id="button_next" disabled="disabled" style="width: 170px; height: 2.5em;" title="Finish annotating all examples first."> <input type="button" value="skip tutorial" id="button_skip_tutorial" style="width: 170px; font-size: 11pt; height: 30px; margin-top: 10px; display: none;" title="Skip tutorial only if you completed it already."></div></div><div id="settings_div" class="white-box" style="margin-right: 20px; margin-top: 10px; display: none; background-color: #e7e2cf; font-size: 11pt;"><input type="checkbox" id="settings_approximate_alignment"> <label for="settings_approximate_alignment">Show approximate alignment</label><br><input type="checkbox" id="settings_word_level"> <label for="settings_word_level">Word-level selection</label><br><br><textarea id="settings_comment" style="width: 95%; height: 80px; resize: vertical; margin-top: 5px; padding: 5px; border-radius: 4px; border: 1px solid #999;" placeholder="Optional: Add any comments or feedback about this item. Will be submitted with Next."></textarea></div><div id="output_div" style="margin-top: 100px;"></div><br><br><br></div></body></html>
|