А вот что получается, если собрать все функции из GET запросов одного ip:
function(){return lower;}
function(fn, bind){Array.forEach(this, fn, bind);return this;}
function Array() { [native code] }
function(methodName){var args = Array.slice(arguments, 1);return this.map(function(item){return item[methodName].apply(item, args);});}
function(){return this.filter(function(item){return item != null;});}
function(){return this.filter(function(item){return item != null;});}
function(item, from){return this.indexOf(item, from) != -1;}
function(keys){var obj = {}, length = Math.min(this.length, keys.length);for (var i = 0; i < length; i++) obj[keys[i]] = this[i];return obj;}
function(){return (this.length) ? this[Number.random(0, this.length - 1)] : null;}
function(object){var result = {};for (var i = 0, l = this.length; i < l; i++){for (var key in object){if (object[key](this[i])){result[key] = this[i];delete object[key];break;}}}return result;}
function(){return (this.length) ? this[this.length - 1] : null;}
function(array){this.push.apply(this, array);return this;}
function(item){for (var i = this.length; i--;){if (this[i] === item) this.splice(i, 1);}return this;}
function(item){if (!this.contains(item)) this.push(item);return this;}
function(array){for (var i = 0, l = array.length; i < l; i++) this.include(array[i]);return this;}
function(){for (var i = 0, l = this.length; i < l; i++){if (this[i] != null) return this[i];}return null;}
function(){var array = [];for (var i = 0, l = this.length; i < l; i++){var type = typeOf(this[i]);if (type == 'null') continue;array = array.concat((type == 'array' || type == 'collection' || type == 'arguments' || instanceOf(this[i], Array)) ? Array.flatten(this[i]) : this[i]);}return array;}
function(array){if (this.length < 3) return null;if (this.length == 4 && this[3] == 0 && !array) return 'transparent';var hex = [];for (var i = 0; i < 3; i++){var bit = (this[i] - 0).toString(16);hex.push((bit.length == 1) ? '0' + bit : bit);}return (array) ? hex : '
function(){this.length = 0;return this;}
function(array){if (this.length != 3) return null;var rgb = this.map(function(value){if (value.length == 1) value += value;return value.toInt(16);});return (array) ? rgb : 'rgb(' + rgb + ')';}