function printf(){document.write(va_sprintf(printf.arguments))}function sprintf(){return va_sprintf(sprintf.arguments)}String.prototype.printf=function(){document.write(va_sprintf(Array.prototype.concat.apply(this,arguments)))};String.prototype.sprintf=function(){return va_sprintf(Array.prototype.concat.apply(this,arguments))};function va_sprintf(m){var a;var o;var h;var e;var l,g;var i;var b;var c;var k,q;var d,j;var f;var n;c="";k=0;q=1;j=m;d=m.length;n=m[0];while(k<n.length){a=n.substr(k++,1);if(a!="%"||k==n.length){c+=a}else{e=l=i=h=0;g=-1;b=k;f=true;while(f){a=n.substr(k++,1);switch(a){case"-":e=1;continue;case"0":if(l==0){i=1}case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":l=l*10+parseInt(a);continue;case".":g=l;l=0;continue;case"*":if(q<d){l=parseInt(j[q++])}else{l=0}if(l<0){e=1;l=-l}continue;case"l":h=1;continue;case"u":case"U":if(q<d){if(h){o=parseInt(j[q++])}else{o=parseInt(j[q++]);o%=4294967296}}else{o=0}c+=_dopr_fmtnum(o,10,0,e,l,i);break;case"o":case"O":if(q<d){if(h){o=parseInt(j[q++])}else{o=parseInt(j[q++]);o%=4294967296}}else{o=0}c+=_dopr_fmtnum(o,8,0,e,l,i);break;case"d":case"D":if(q<d){if(h){o=parseInt(j[q++])}else{o=parseInt(j[q++]);o%=4294967296}}else{o=0}c+=_dopr_fmtnum(o,10,1,e,l,i);break;case"x":if(q<d){if(h){o=parseInt(j[q++])}else{o=parseInt(j[q++]);o%=4294967296}}else{o=0}c+=_dopr_fmtnum(o,16,0,e,l,i);break;case"X":if(q<d){if(h){o=parseInt(j[q++])}else{o=parseInt(j[q++]);o%=4294967296}}else{o=0}c+=_dopr_fmtnum(o,-16,0,e,l,i);break;case"s":if(q<d){o=j[q++];if(o==null){o="(null)"}else{o=o+""}}else{o=""}c+=_dopr_fmtstr(o,e,l,g);break;case"c":if(q<d){o=parseInt(j[q++])}else{o=0}c+=_dopr_fromCharCode(o);break;case"%":c+="%";break;default:if(b+1==k){c+="%";c+=a}else{}break}f=false}}}return c}function _dopr_fmtnum(m,a,c,f,j,i){var g="";var l;var e=0;var h;var d=0;var k;var b;k="";b="";if(m>=0){l=m}else{l=(m%4294967296)+4294967296}if(c){if(m<0){g="-";l=-m}}if(a<0){d=1;a=-a}if(l==0){k="0";e=1}else{while(l){if(d){k="0123456789ABCDEF".substr(l%a,1)+k}else{k="0123456789abcdef".substr(l%a,1)+k}l=parseInt(l/a);e++}}h=j-e;if(h<0){h=0}if(f){h=-h}if(i&&h>0){if(g){b+=g;--h;g=0}while(h>0){b+="0";--h}}while(h>0){b+=" ";--h}if(g){b+=g}b+=k;while(h<0){b+=" ";++h}return b}function _dopr_fmtstr(i,d,c,f){var e;var g,a=0;var b="";g=i.length;if(f!=-1){var h;h=c;if(g>h){a=1;g=h}c=f}e=c-g;if(e<0){e=0}if(d){e=-e}while(e>0){b+=" ";--e}if(a){b+=i.substr(0,g)}else{b+=i}while(e<0){b+=" ";++e}return b}var _dopr_fromCharCode_chars=null;function _dopr_fromCharCode(code){if(String.fromCharCode){return String.fromCharCode(code)}if(!_dopr_fromCharCode_chars){_dopr_fromCharCode_chars="\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037 !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377"}if(code<0){return""}if(code<=255){return _dopr_fromCharCode_chars.substr(code,1)}return eval(sprintf('"\\u%04x"',code))};