var decryption_cache=new Array();function decrypt_string(a,n,b,c){var d="'"+a+","+c+"'";if(decryption_cache[d])return decryption_cache[d];if(addresses[a])var a=addresses[a];if(!a.length)return"Error, not a valid index.";if(n==0||b==0){var e=a.split(' ');n=e[0];b=e[1];e[0]="";e[1]="";a=e.join(" ").substr(2)}var f='';var g=a.split(' ');for(var i in g){var h=g[i];var j=exponentialModulo(h,n,b);if(c&&i<7)continue;if(c&&j==63)break;f+=String.fromCharCode(j)}decryption_cache[d]=f;return f}function decrypt_and_email(a,n,b){if(!n||!b){n=0;b=0}if(!a)a=0;var c=decrypt_string(a,n,b,false);parent.location=c}function decrypt_and_echo(a,n,b){if(!n||!b){n=0;b=0}if(!a)a=0;var c=decrypt_string(a,n,b,true);document.write(c);return true}function exponentialModulo(a,b,y){if(y%2==0){answer=1;for(var i=1;i<=y/2;i++){temp=(a*a)%b;answer=(temp*answer)%b}}else{answer=a;for(var i=1;i<=y/2;i++){temp=(a*a)%b;answer=(temp*answer)%b}}return answer}
