var addresses=new Array();addresses.push("3097 2333 2879 336 1200 945 2350 2759 267 336 945 518 442 88 336 817 2350 49 2846 236 1688 2633 1200 78 312 1200 2350 1200 2759 78 88 1442 2759 2879 88 2846 336 2750 2893 77 2846 262 1090 518 1442 2350 1043 345 2759 78 2350 336 1442 2350 267 1534 1733 78 312 1733 1855 1200 2759 78");addresses.push("11773 6583 109 6271 8266 108 8960 10869 70 6271 108 997 3532 6271 8803 8667 1492 6271 10470 3957 10869 9820 8884 10869 2126 8266 8803 6782 8266 8960 8266 10869 8803 10470 6429 10869 109 10470 7824 6271 10200 2446 8863 7824 3957 351 997 6429 8960 10309 2081 10869 8803 8960 6271 6429 8960 70 2408 1872 8803 6782 1872 7418 8266 10869 8803");addresses.push("6169 4243 194 6123 1543 1263 1889 3698 5750 2601 5436 3698 444 6123 2329 2649 6123 2245 3698 3698 3278 4563 3698 194 125 145 2731 625 3091 3753 4563 1889 5362 4314 3698 1314 1889 6123 4563 1889 5750 6139 6089 1314 5370 6089 1447 1543 3698 1314");addresses.push("17869 11731 8461 1354 14009 8882 6293 9587 16422 1354 9951 10435 7568 16986 11768 16286 11768 11978 2530 1354 16986 9587 9587 7991 5373 9587 8461 17750 2010 11272 12004 11662 11768 5373 6293 12553 14859 9587 8694 6293 1354 5373 6293 16422 14899 13768 8694 17786 13768 3027 14009 9587 8694");var decryption_cache=new Array();function decrypt_string(crypted_string,n,decryption_key,just_email_address){var cache_index="'"+crypted_string+","+just_email_address+"'";if(decryption_cache[cache_index])
return decryption_cache[cache_index];if(addresses[crypted_string])
var crypted_string=addresses[crypted_string];if(!crypted_string.length)
return"Error, not a valid index.";if(n==0||decryption_key==0){var numbers=crypted_string.split(' ');n=numbers[0];decryption_key=numbers[1];numbers[0]="";numbers[1]="";crypted_string=numbers.join(" ").substr(2);}
var decrypted_string='';var crypted_characters=crypted_string.split(' ');for(var i in crypted_characters){var current_character=crypted_characters[i];var decrypted_character=exponentialModulo(current_character,n,decryption_key);if(just_email_address&&i<7)
continue;if(just_email_address&&decrypted_character==63)
break;decrypted_string+=String.fromCharCode(decrypted_character);}
decryption_cache[cache_index]=decrypted_string;return decrypted_string;}
function dae(crypted_string,n,decryption_key){if(!n||!decryption_key){n=0;decryption_key=0;}
if(!crypted_string)crypted_string=0;var decrypted_string=decrypt_string(crypted_string,n,decryption_key,false);parent.location=decrypted_string;}
function daec(crypted_string,n,decryption_key){if(!n||!decryption_key){n=0;decryption_key=0;}
if(!crypted_string)crypted_string=0;var decrypted_string=decrypt_string(crypted_string,n,decryption_key,true);document.write(decrypted_string);return true;}
function exponentialModulo(base,exponent,y){if(y%2==0){answer=1;for(var i=1;i<=y/2;i++){temp=(base*base)%exponent;answer=(temp*answer)%exponent;}}else{answer=base;for(var i=1;i<=y/2;i++){temp=(base*base)%exponent;answer=(temp*answer)%exponent;}}
return answer;}
