//::: Prototype 00:00:00

var Prototype={
Version:'1.4.0',
ScriptFragment:'(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
emptyFunction:function(){},
K:function(x){return x}}
var Class={
create:function(){
return function(){
this.initialize.apply(this,arguments);}}}
var Abstract=new Object();
Object.extend=function(destination,source){
for(property in source){
destination[property]=source[property];}
return destination;}
Object.inspect=function(object){
try{
if(object==undefined)return 'undefined';
if(object==null)return 'null';
return object.inspect?object.inspect():object.toString();}catch(e){
if(e instanceof RangeError)return '...';
throw e;}}
Function.prototype.bind=function(){
var __method=this,args=$A(arguments),object=args.shift();
return function(){
return __method.apply(object,args.concat($A(arguments)));}}
Function.prototype.bindAsEventListener=function(object){
var __method=this;
return function(event){
return __method.call(object,event||window.event);}}
Object.extend(Number.prototype,{
toColorPart:function(){
var digits=this.toString(16);
if(this<16)return '0'+digits;
return digits;},
succ:function(){
return this +1;},
times:function(iterator){
$R(0,this,true).each(iterator);
return this;}});
var Try={
these:function(){
var returnValue;
for(var i=0;i<arguments.length;i++){
var lambda=arguments[i];
try{
returnValue=lambda();
break;}catch(e){}}
return returnValue;}}
var PeriodicalExecuter=Class.create();
PeriodicalExecuter.prototype={
initialize:function(callback,frequency){
this.callback=callback;
this.frequency=frequency;
this.currentlyExecuting=false;
this.registerCallback();},
registerCallback:function(){
setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},
onTimerEvent:function(){
if(!this.currentlyExecuting){
try{
this.currentlyExecuting=true;
this.callback();}finally{
this.currentlyExecuting=false;}}}}
function $(){
var elements=new Array();
for(var i=0;i<arguments.length;i++){
var element=arguments[i];
if(typeof element=='string')
element=document.getElementById(element);
if(arguments.length==1)
return element;
elements.push(element);}
return elements;}
Object.extend(String.prototype,{
stripTags:function(){
return this.replace(/<\/?[^>]+>/gi,'');},
stripScripts:function(){
return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'');},
extractScripts:function(){
var matchAll=new RegExp(Prototype.ScriptFragment,'img');
var matchOne=new RegExp(Prototype.ScriptFragment,'im');
return(this.match(matchAll)||[]).map(function(scriptTag){
return(scriptTag.match(matchOne)||['',''])[1];});},
evalScripts:function(){
return this.extractScripts().map(eval);},
escapeHTML:function(){
var div=document.createElement('div');
var text=document.createTextNode(this);
div.appendChild(text);
return div.innerHTML;},
unescapeHTML:function(){
var div=document.createElement('div');
div.innerHTML=this.stripTags();
return div.childNodes[0]?div.childNodes[0].nodeValue:'';},
toQueryParams:function(){
var pairs=this.match(/^\??(.*)$/)[1].split('&');
return pairs.inject({},function(params,pairString){
var pair=pairString.split('=');
params[pair[0]]=pair[1];
return params;});},
toArray:function(){
return this.split('');},
camelize:function(){
var oStringList=this.split('-');
if(oStringList.length==1)return oStringList[0];
var camelizedString=this.indexOf('-')==0?oStringList[0].charAt(0).toUpperCase()+oStringList[0].substring(1):oStringList[0];
for(var i=1,len=oStringList.length;i<len;i++){
var s=oStringList[i];
camelizedString+=s.charAt(0).toUpperCase()+s.substring(1);}
return camelizedString;},
inspect:function(){
return "'"+this.replace('\\','\\\\').replace("'",'\\\'') + "'";}});
String.prototype.parseQuery=String.prototype.toQueryParams;
var $break=new Object();
var $continue=new Object();
var Enumerable={
each:function(iterator){
var index=0;
try{
this._each(function(value){
try{
iterator(value,index++);}catch(e){
if(e!=$continue)throw e;}});}catch(e){
if(e!=$break)throw e;}},
all:function(iterator){
var result=true;
this.each(function(value,index){
result=result&&!!(iterator||Prototype.K)(value,index);
if(!result)throw $break;});
return result;},
any:function(iterator){
var result=true;
this.each(function(value,index){
if(result=!!(iterator||Prototype.K)(value,index))
throw $break;});
return result;},
collect:function(iterator){
var results=[];
this.each(function(value,index){
results.push(iterator(value,index));});
return results;},
detect:function(iterator){
var result;
this.each(function(value,index){
if(iterator(value,index)){
result=value;
throw $break;}});
return result;},
findAll:function(iterator){
var results=[];
this.each(function(value,index){
if(iterator(value,index))
results.push(value);});
return results;},
grep:function(pattern,iterator){
var results=[];
this.each(function(value,index){
var stringValue=value.toString();
if(stringValue.match(pattern))
results.push((iterator||Prototype.K)(value,index));})
return results;},
include:function(object){
var found=false;
this.each(function(value){
if(value==object){
found=true;
throw $break;}});
return found;},
inject:function(memo,iterator){
this.each(function(value,index){
memo=iterator(memo,value,index);});
return memo;},
invoke:function(method){
var args=$A(arguments).slice(1);
return this.collect(function(value){
return value[method].apply(value,args);});},
max:function(iterator){
var result;
this.each(function(value,index){
value=(iterator||Prototype.K)(value,index);
if(value>=(result||value))
result=value;});
return result;},
min:function(iterator){
var result;
this.each(function(value,index){
value=(iterator||Prototype.K)(value,index);
if(value<=(result||value))
result=value;});
return result;},
partition:function(iterator){
var trues=[],falses=[];
this.each(function(value,index){((iterator||Prototype.K)(value,index)?
trues:falses).push(value);});
return[trues,falses];},
pluck:function(property){
var results=[];
this.each(function(value,index){
results.push(value[property]);});
return results;},
reject:function(iterator){
var results=[];
this.each(function(value,index){
if(!iterator(value,index))
results.push(value);});
return results;},
sortBy:function(iterator){
return this.collect(function(value,index){
return{value:value,criteria:iterator(value,index)};}).sort(function(left,right){
var a=left.criteria,b=right.criteria;
return a<b?-1:a>b?1:0;}).pluck('value');},
toArray:function(){
return this.collect(Prototype.K);},
zip:function(){
var iterator=Prototype.K,args=$A(arguments);
if(typeof args.last()=='function')
iterator=args.pop();
var collections=[this].concat(args).map($A);
return this.map(function(value,index){
iterator(value=collections.pluck(index));
return value;});},
inspect:function(){
return '#<Enumerable:'+this.toArray().inspect()+'>';}}
Object.extend(Enumerable,{
map:Enumerable.collect,
find:Enumerable.detect,
select:Enumerable.findAll,
member:Enumerable.include,
entries:Enumerable.toArray});
var $A=Array.from=function(iterable){
if(!iterable)return[];
if(iterable.toArray){
return iterable.toArray();}else{
var results=[];
for(var i=0;i<iterable.length;i++)
results.push(iterable[i]);
return results;}}
Object.extend(Array.prototype,Enumerable);
Array.prototype._reverse=Array.prototype.reverse;
Object.extend(Array.prototype,{
_each:function(iterator){
for(var i=0;i<this.length;i++)
iterator(this[i]);},
clear:function(){
this.length=0;
return this;},
first:function(){
return this[0];},
last:function(){
return this[this.length-1];},
compact:function(){
return this.select(function(value){
return value!=undefined||value!=null;});},
flatten:function(){
return this.inject([],function(array,value){
return array.concat(value.constructor==Array?
value.flatten():[value]);});},
without:function(){
var values=$A(arguments);
return this.select(function(value){
return !values.include(value);});},
indexOf:function(object){
for(var i=0;i<this.length;i++)
if(this[i]==object)return i;
return -1;},
reverse:function(inline){
return(inline!==false?this:this.toArray())._reverse();},
shift:function(){
var result=this[0];
for(var i=0;i<this.length-1;i++)
this[i]=this[i+1];
this.length--;
return result;},
inspect:function(){
return '['+this.map(Object.inspect).join(', ')+']';}});
var Hash={
_each:function(iterator){
for(key in this){
var value=this[key];
if(typeof value=='function')continue;
var pair=[key,value];
pair.key=key;
pair.value=value;
iterator(pair);}},
keys:function(){
return this.pluck('key');},
values:function(){
return this.pluck('value');},
merge:function(hash){
return $H(hash).inject($H(this),function(mergedHash,pair){
mergedHash[pair.key]=pair.value;
return mergedHash;});},
toQueryString:function(){
return this.map(function(pair){
return pair.map(encodeURIComponent).join('=');}).join('&');},
inspect:function(){
return '#<Hash:{'+this.map(function(pair){
return pair.map(Object.inspect).join(': ');}).join(', ')+'}>';}}
function $H(object){
var hash=Object.extend({},object||{});
Object.extend(hash,Enumerable);
Object.extend(hash,Hash);
return hash;}
ObjectRange=Class.create();
Object.extend(ObjectRange.prototype,Enumerable);
Object.extend(ObjectRange.prototype,{
initialize:function(start,end,exclusive){
this.start=start;
this.end=end;
this.exclusive=exclusive;},
_each:function(iterator){
var value=this.start;
do{
iterator(value);
value=value.succ();}while(this.include(value));},
include:function(value){
if(value<this.start)
return false;
if(this.exclusive)
return value<this.end;
return value<=this.end;}});
var $R=function(start,end,exclusive){
return new ObjectRange(start,end,exclusive);}
var Ajax={
getTransport:function(){
return Try.these(
function(){return new ActiveXObject('Msxml2.XMLHTTP')},
function(){return new ActiveXObject('Microsoft.XMLHTTP')},
function(){return new XMLHttpRequest()})||false;},
activeRequestCount:0}
Ajax.Responders={
responders:[],
_each:function(iterator){
this.responders._each(iterator);},
register:function(responderToAdd){
if(!this.include(responderToAdd))
this.responders.push(responderToAdd);},
unregister:function(responderToRemove){
this.responders=this.responders.without(responderToRemove);},
dispatch:function(callback,request,transport,json){
this.each(function(responder){
if(responder[callback]&&typeof responder[callback]=='function'){
try{
responder[callback].apply(responder,[request,transport,json]);}catch(e){}}});}};
Object.extend(Ajax.Responders,Enumerable);
Ajax.Responders.register({
onCreate:function(){
Ajax.activeRequestCount++;},
onComplete:function(){
Ajax.activeRequestCount--;}});
Ajax.Base=function(){};
Ajax.Base.prototype={
setOptions:function(options){
this.options={
method:'post',
asynchronous:true,
parameters:''}
Object.extend(this.options,options||{});},
responseIsSuccess:function(){
return this.transport.status==undefined||this.transport.status==0||(this.transport.status>=200&&this.transport.status<300);},
responseIsFailure:function(){
return !this.responseIsSuccess();}}
Ajax.Request=Class.create();
Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];
Ajax.Request.prototype=Object.extend(new Ajax.Base(),{
initialize:function(url,options){
this.transport=Ajax.getTransport();
this.setOptions(options);
this.request(url);},
request:function(url){
var parameters=this.options.parameters||'';
if(parameters.length>0)parameters+='&_=';
try{
this.url=url;
if(this.options.method=='get'&&parameters.length>0)
this.url+=(this.url.match(/\?/)?'&':'?')+parameters;
Ajax.Responders.dispatch('onCreate',this,this.transport);
this.transport.open(this.options.method,this.url,
this.options.asynchronous);
if(this.options.asynchronous){
this.transport.onreadystatechange=this.onStateChange.bind(this);
setTimeout((function(){this.respondToReadyState(1)}).bind(this),10);}
this.setRequestHeaders();
var body=this.options.postBody?this.options.postBody:parameters;
this.transport.send(this.options.method=='post'?body:null);}catch(e){
this.dispatchException(e);}},
setRequestHeaders:function(){
var requestHeaders=['X-Requested-With','XMLHttpRequest',
'X-Prototype-Version',Prototype.Version];
if(this.options.method=='post'){
requestHeaders.push('Content-type',
'application/x-www-form-urlencoded');
if(this.transport.overrideMimeType)
requestHeaders.push('Connection','close');}
if(this.options.requestHeaders)
requestHeaders.push.apply(requestHeaders,this.options.requestHeaders);
for(var i=0;i<requestHeaders.length;i+=2)
this.transport.setRequestHeader(requestHeaders[i],requestHeaders[i+1]);},
onStateChange:function(){
var readyState=this.transport.readyState;
if(readyState!=1)
this.respondToReadyState(this.transport.readyState);},
header:function(name){
try{
return this.transport.getResponseHeader(name);}catch(e){}},
evalJSON:function(){
try{
return eval(this.header('X-JSON'));}catch(e){}},
evalResponse:function(){
try{
return eval(this.transport.responseText);}catch(e){
this.dispatchException(e);}},
respondToReadyState:function(readyState){
var event=Ajax.Request.Events[readyState];
var transport=this.transport,json=this.evalJSON();
if(event=='Complete'){
try{(this.options['on'+this.transport.status]||this.options['on'+(this.responseIsSuccess()?'Success':'Failure')]||Prototype.emptyFunction)(transport,json);}catch(e){
this.dispatchException(e);}
if((this.header('Content-type')||'').match(/^text\/javascript/i))
this.evalResponse();}
try{(this.options['on'+event]||Prototype.emptyFunction)(transport,json);
Ajax.Responders.dispatch('on'+event,this,transport,json);}catch(e){
this.dispatchException(e);}
if(event=='Complete')
this.transport.onreadystatechange=Prototype.emptyFunction;},
dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);
Ajax.Responders.dispatch('onException',this,exception);}});
Ajax.Updater=Class.create();
Object.extend(Object.extend(Ajax.Updater.prototype,Ajax.Request.prototype),{
initialize:function(container,url,options){
this.containers={
success:container.success?$(container.success):$(container),
failure:container.failure?$(container.failure):(container.success?null:$(container))}
this.transport=Ajax.getTransport();
this.setOptions(options);
var onComplete=this.options.onComplete||Prototype.emptyFunction;
this.options.onComplete=(function(transport,object){
this.updateContent();
onComplete(transport,object);}).bind(this);
this.request(url);},
updateContent:function(){
var receiver=this.responseIsSuccess()?
this.containers.success:this.containers.failure;
var response=this.transport.responseText;
if(!this.options.evalScripts)
response=response.stripScripts();
if(receiver){
if(this.options.insertion){
new this.options.insertion(receiver,response);}else{
Element.update(receiver,response);}}
if(this.responseIsSuccess()){
if(this.onComplete)
setTimeout(this.onComplete.bind(this),10);}}});
Ajax.PeriodicalUpdater=Class.create();
Ajax.PeriodicalUpdater.prototype=Object.extend(new Ajax.Base(),{
initialize:function(container,url,options){
this.setOptions(options);
this.onComplete=this.options.onComplete;
this.frequency=(this.options.frequency||2);
this.decay=(this.options.decay||1);
this.updater={};
this.container=container;
this.url=url;
this.start();},
start:function(){
this.options.onComplete=this.updateComplete.bind(this);
this.onTimerEvent();},
stop:function(){
this.updater.onComplete=undefined;
clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments);},
updateComplete:function(request){
if(this.options.decay){
this.decay=(request.responseText==this.lastText?
this.decay*this.options.decay:1);
this.lastText=request.responseText;}
this.timer=setTimeout(this.onTimerEvent.bind(this),
this.decay*this.frequency*1000);},
onTimerEvent:function(){
this.updater=new Ajax.Updater(this.container,this.url,this.options);}});
document.getElementsByClassName=function(className,parentElement){
var children=($(parentElement)||document.body).getElementsByTagName('*');
return $A(children).inject([],function(elements,child){
if(child.className.match(new RegExp("(^|\\s)"+className+"(\\s|$)")))
elements.push(child);
return elements;});}
if(!window.Element){
var Element=new Object();}
Object.extend(Element,{
visible:function(element){
return $(element).style.display!='none';},
toggle:function(){
for(var i=0;i<arguments.length;i++){
var element=$(arguments[i]);
Element[Element.visible(element)?'hide':'show'](element);}},
hide:function(){
for(var i=0;i<arguments.length;i++){
var element=$(arguments[i]);
element.style.display='none';}},
show:function(){
for(var i=0;i<arguments.length;i++){
var element=$(arguments[i]);
element.style.display='';}},
remove:function(element){
element=$(element);
element.parentNode.removeChild(element);},
update:function(element,html){
$(element).innerHTML=html.stripScripts();
setTimeout(function(){html.evalScripts()},10);},
getHeight:function(element){
element=$(element);
return element.offsetHeight;},
classNames:function(element){
return new Element.ClassNames(element);},
hasClassName:function(element,className){
if(!(element=$(element)))return;
return Element.classNames(element).include(className);},
addClassName:function(element,className){
if(!(element=$(element)))return;
return Element.classNames(element).add(className);},
removeClassName:function(element,className){
if(!(element=$(element)))return;
return Element.classNames(element).remove(className);},
cleanWhitespace:function(element){
element=$(element);
for(var i=0;i<element.childNodes.length;i++){
var node=element.childNodes[i];
if(node.nodeType==3&&!/\S/.test(node.nodeValue))
Element.remove(node);}},
empty:function(element){
return $(element).innerHTML.match(/^\s*$/);},
scrollTo:function(element){
element=$(element);
var x=element.x?element.x:element.offsetLeft,
y=element.y?element.y:element.offsetTop;
window.scrollTo(x,y);},
getStyle:function(element,style){
element=$(element);
var value=element.style[style.camelize()];
if(!value){
if(document.defaultView&&document.defaultView.getComputedStyle){
var css=document.defaultView.getComputedStyle(element,null);
value=css?css.getPropertyValue(style):null;}else if(element.currentStyle){
value=element.currentStyle[style.camelize()];}}
if(window.opera&&['left','top','right','bottom'].include(style))
if(Element.getStyle(element,'position')=='static')value='auto';
return value=='auto'?null:value;},
setStyle:function(element,style){
element=$(element);
for(name in style)
element.style[name.camelize()]=style[name];},
getDimensions:function(element){
element=$(element);
if(Element.getStyle(element,'display')!='none')
return{width:element.offsetWidth,height:element.offsetHeight};
var els=element.style;
var originalVisibility=els.visibility;
var originalPosition=els.position;
els.visibility='hidden';
els.position='absolute';
els.display='';
var originalWidth=element.clientWidth;
var originalHeight=element.clientHeight;
els.display='none';
els.position=originalPosition;
els.visibility=originalVisibility;
return{width:originalWidth,height:originalHeight};},
makePositioned:function(element){
element=$(element);
var pos=Element.getStyle(element,'position');
if(pos=='static'||!pos){
element._madePositioned=true;
element.style.position='relative';
if(window.opera){
element.style.top=0;
element.style.left=0;}}},
undoPositioned:function(element){
element=$(element);
if(element._madePositioned){
element._madePositioned=undefined;
element.style.position=
element.style.top=
element.style.left=
element.style.bottom=
element.style.right='';}},
makeClipping:function(element){
element=$(element);
if(element._overflow)return;
element._overflow=element.style.overflow;
if((Element.getStyle(element,'overflow')||'visible')!='hidden')
element.style.overflow='hidden';},
undoClipping:function(element){
element=$(element);
if(element._overflow)return;
element.style.overflow=element._overflow;
element._overflow=undefined;}});
var Toggle=new Object();
Toggle.display=Element.toggle;
Abstract.Insertion=function(adjacency){
this.adjacency=adjacency;}
Abstract.Insertion.prototype={
initialize:function(element,content){
this.element=$(element);
this.content=content.stripScripts();
if(this.adjacency&&this.element.insertAdjacentHTML){
try{
this.element.insertAdjacentHTML(this.adjacency,this.content);}catch(e){
if(this.element.tagName.toLowerCase()=='tbody'){
this.insertContent(this.contentFromAnonymousTable());}else{
throw e;}}}else{
this.range=this.element.ownerDocument.createRange();
if(this.initializeRange)this.initializeRange();
this.insertContent([this.range.createContextualFragment(this.content)]);}
setTimeout(function(){content.evalScripts()},10);},
contentFromAnonymousTable:function(){
var div=document.createElement('div');
div.innerHTML='<table><tbody>'+this.content+'</tbody></table>';
return $A(div.childNodes[0].childNodes[0].childNodes);}}
var Insertion=new Object();
Insertion.Before=Class.create();
Insertion.Before.prototype=Object.extend(new Abstract.Insertion('beforeBegin'),{
initializeRange:function(){
this.range.setStartBefore(this.element);},
insertContent:function(fragments){
fragments.each((function(fragment){
this.element.parentNode.insertBefore(fragment,this.element);}).bind(this));}});
Insertion.Top=Class.create();
Insertion.Top.prototype=Object.extend(new Abstract.Insertion('afterBegin'),{
initializeRange:function(){
this.range.selectNodeContents(this.element);
this.range.collapse(true);},
insertContent:function(fragments){
fragments.reverse(false).each((function(fragment){
this.element.insertBefore(fragment,this.element.firstChild);}).bind(this));}});
Insertion.Bottom=Class.create();
Insertion.Bottom.prototype=Object.extend(new Abstract.Insertion('beforeEnd'),{
initializeRange:function(){
this.range.selectNodeContents(this.element);
this.range.collapse(this.element);},
insertContent:function(fragments){
fragments.each((function(fragment){
this.element.appendChild(fragment);}).bind(this));}});
Insertion.After=Class.create();
Insertion.After.prototype=Object.extend(new Abstract.Insertion('afterEnd'),{
initializeRange:function(){
this.range.setStartAfter(this.element);},
insertContent:function(fragments){
fragments.each((function(fragment){
this.element.parentNode.insertBefore(fragment,
this.element.nextSibling);}).bind(this));}});
Element.ClassNames=Class.create();
Element.ClassNames.prototype={
initialize:function(element){
this.element=$(element);},
_each:function(iterator){
this.element.className.split(/\s+/).select(function(name){
return name.length>0;})._each(iterator);},
set:function(className){
this.element.className=className;},
add:function(classNameToAdd){
if(this.include(classNameToAdd))return;
this.set(this.toArray().concat(classNameToAdd).join(' '));},
remove:function(classNameToRemove){
if(!this.include(classNameToRemove))return;
this.set(this.select(function(className){
return className!=classNameToRemove;}).join(' '));},
toString:function(){
return this.toArray().join(' ');}}
Object.extend(Element.ClassNames.prototype,Enumerable);
var Field={
clear:function(){
for(var i=0;i<arguments.length;i++)
$(arguments[i]).value='';},
focus:function(element){
$(element).focus();},
present:function(){
for(var i=0;i<arguments.length;i++)
if($(arguments[i]).value=='')return false;
return true;},
select:function(element){
$(element).select();},
activate:function(element){
element=$(element);
element.focus();
if(element.select)
element.select();}}
var Form={
serialize:function(form){
var elements=Form.getElements($(form));
var queryComponents=new Array();
for(var i=0;i<elements.length;i++){
var queryComponent=Form.Element.serialize(elements[i]);
if(queryComponent)
queryComponents.push(queryComponent);}
return queryComponents.join('&');},
getElements:function(form){
form=$(form);
var elements=new Array();
for(tagName in Form.Element.Serializers){
var tagElements=form.getElementsByTagName(tagName);
for(var j=0;j<tagElements.length;j++)
elements.push(tagElements[j]);}
return elements;},
getInputs:function(form,typeName,name){
form=$(form);
var inputs=form.getElementsByTagName('input');
if(!typeName&&!name)
return inputs;
var matchingInputs=new Array();
for(var i=0;i<inputs.length;i++){
var input=inputs[i];
if((typeName&&input.type!=typeName)||(name&&input.name!=name))
continue;
matchingInputs.push(input);}
return matchingInputs;},
disable:function(form){
var elements=Form.getElements(form);
for(var i=0;i<elements.length;i++){
var element=elements[i];
element.blur();
element.disabled='true';}},
enable:function(form){
var elements=Form.getElements(form);
for(var i=0;i<elements.length;i++){
var element=elements[i];
element.disabled='';}},
findFirstElement:function(form){
return Form.getElements(form).find(function(element){
return element.type!='hidden'&&!element.disabled&&['input','select','textarea'].include(element.tagName.toLowerCase());});},
focusFirstElement:function(form){
Field.activate(Form.findFirstElement(form));},
reset:function(form){
$(form).reset();}}
Form.Element={
serialize:function(element){
element=$(element);
var method=element.tagName.toLowerCase();
var parameter=Form.Element.Serializers[method](element);
if(parameter){
var key=encodeURIComponent(parameter);
if(key.length==0)return;
if(parameter[1].constructor !=Array)
parameter[1]=[parameter[1]];
return parameter[1].map(function(value){
return key+'='+encodeURIComponent(value);}).join('&');}},
getValue:function(element){
element=$(element);
var method=element.tagName.toLowerCase();
var parameter=Form.Element.Serializers[method](element);
if(parameter)
return parameter[1];}}
Form.Element.Serializers={
input:function(element){
switch(element.type.toLowerCase()){
case 'submit':
case 'hidden':
case 'password':
case 'text':
return Form.Element.Serializers.textarea(element);
case 'checkbox':
case 'radio':
return Form.Element.Serializers.inputSelector(element);}
return false;},
inputSelector:function(element){
if(element.checked)
return[element.name,element.value];},
textarea:function(element){
return[element.name,element.value];},
select:function(element){
return Form.Element.Serializers[element.type=='select-one'?
'selectOne':'selectMany'](element);},
selectOne:function(element){
var value='',opt,index=element.selectedIndex;
if(index>=0){
opt=element.options[index];
value=opt.value;
if(!value&&!('value' in opt))
value=opt.text;}
return[element.name,value];},
selectMany:function(element){
var value=new Array();
for(var i=0;i<element.length;i++){
var opt=element.options[i];
if(opt.selected){
var optValue=opt.value;
if(!optValue&&!('value' in opt))
optValue=opt.text;
value.push(optValue);}}
return[element.name,value];}}
var $F=Form.Element.getValue;
Abstract.TimedObserver=function(){}
Abstract.TimedObserver.prototype={
initialize:function(element,frequency,callback){
this.frequency=frequency;
this.element=$(element);
this.callback=callback;
this.lastValue=this.getValue();
this.registerCallback();},
registerCallback:function(){
setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},
onTimerEvent:function(){
var value=this.getValue();
if(this.lastValue!=value){
this.callback(this.element,value);
this.lastValue=value;}}}
Form.Element.Observer=Class.create();
Form.Element.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{
getValue:function(){
return Form.Element.getValue(this.element);}});
Form.Observer=Class.create();
Form.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{
getValue:function(){
return Form.serialize(this.element);}});
Abstract.EventObserver=function(){}
Abstract.EventObserver.prototype={
initialize:function(element,callback){
this.element=$(element);
this.callback=callback;
this.lastValue=this.getValue();
if(this.element.tagName.toLowerCase()=='form')
this.registerFormCallbacks();
else
this.registerCallback(this.element);},
onElementEvent:function(){
var value=this.getValue();
if(this.lastValue!=value){
this.callback(this.element,value);
this.lastValue=value;}},
registerFormCallbacks:function(){
var elements=Form.getElements(this.element);
for(var i=0;i<elements.length;i++)
this.registerCallback(elements[i]);},
registerCallback:function(element){
if(element.type){
switch(element.type.toLowerCase()){
case 'checkbox':
case 'radio':
Event.observe(element,'click',this.onElementEvent.bind(this));
break;
case 'password':
case 'text':
case 'textarea':
case 'select-one':
case 'select-multiple':
Event.observe(element,'change',this.onElementEvent.bind(this));
break;}}}}
Form.Element.EventObserver=Class.create();
Form.Element.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{
getValue:function(){
return Form.Element.getValue(this.element);}});
Form.EventObserver=Class.create();
Form.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{
getValue:function(){
return Form.serialize(this.element);}});
if(!window.Event){
var Event=new Object();}
Object.extend(Event,{
KEY_BACKSPACE:8,
KEY_TAB:9,
KEY_RETURN:13,
KEY_ESC:27,
KEY_LEFT:37,
KEY_UP:38,
KEY_RIGHT:39,
KEY_DOWN:40,
KEY_DELETE:46,
element:function(event){
return event.target||event.srcElement;},
isLeftClick:function(event){
return(((event.which)&&(event.which==1))||((event.button)&&(event.button==1)));},
pointerX:function(event){
return event.pageX||(event.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft));},
pointerY:function(event){
return event.pageY||(event.clientY+(document.documentElement.scrollTop||document.body.scrollTop));},
stop:function(event){
if(event.preventDefault){
event.preventDefault();
event.stopPropagation();}else{
event.returnValue=false;
event.cancelBubble=true;}},
findElement:function(event,tagName){
var element=Event.element(event);
while(element.parentNode&&(!element.tagName||(element.tagName.toUpperCase()!=tagName.toUpperCase())))
element=element.parentNode;
return element;},
observers:false,
_observeAndCache:function(element,name,observer,useCapture){
if(!this.observers)this.observers=[];
if(element.addEventListener){
this.observers.push([element,name,observer,useCapture]);
element.addEventListener(name,observer,useCapture);}else if(element.attachEvent){
this.observers.push([element,name,observer,useCapture]);
element.attachEvent('on'+name,observer);}},
unloadCache:function(){
if(!Event.observers)return;
for(var i=0;i<Event.observers.length;i++){
Event.stopObserving.apply(this,Event.observers[i]);
Event.observers[i][0]=null;}
Event.observers=false;},
observe:function(element,name,observer,useCapture){
var element=$(element);
useCapture=useCapture||false;
if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.attachEvent))
name='keydown';
this._observeAndCache(element,name,observer,useCapture);},
stopObserving:function(element,name,observer,useCapture){
var element=$(element);
useCapture=useCapture||false;
if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.detachEvent))
name='keydown';
if(element.removeEventListener){
element.removeEventListener(name,observer,useCapture);}else if(element.detachEvent){
element.detachEvent('on'+name,observer);}}});
Event.observe(window,'unload',Event.unloadCache,false);
var Position={
includeScrollOffsets:false,
prepare:function(){
this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;
this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;},
realOffset:function(element){
var valueT=0,valueL=0;
do{
valueT+=element.scrollTop||0;
valueL+=element.scrollLeft||0;
element=element.parentNode;}while(element);
return[valueL,valueT];},
cumulativeOffset:function(element){
var valueT=0,valueL=0;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
element=element.offsetParent;}while(element);
return[valueL,valueT];},
positionedOffset:function(element){
var valueT=0,valueL=0;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
element=element.offsetParent;
if(element){
p=Element.getStyle(element,'position');
if(p=='relative'||p=='absolute')break;}}while(element);
return[valueL,valueT];},
offsetParent:function(element){
if(element.offsetParent)return element.offsetParent;
if(element==document.body)return element;
while((element=element.parentNode)&&element!=document.body)
if(Element.getStyle(element,'position')!='static')
return element;
return document.body;},
within:function(element,x,y){
if(this.includeScrollOffsets)
return this.withinIncludingScrolloffsets(element,x,y);
this.xcomp=x;
this.ycomp=y;
this.offset=this.cumulativeOffset(element);
return(y>=this.offset[1]&&
y<this.offset[1]+element.offsetHeight&&
x>=this.offset[0]&&
x<this.offset[0]+element.offsetWidth);},
withinIncludingScrolloffsets:function(element,x,y){
var offsetcache=this.realOffset(element);
this.xcomp=x+offsetcache[0]-this.deltaX;
this.ycomp=y+offsetcache[1]-this.deltaY;
this.offset=this.cumulativeOffset(element);
return(this.ycomp>=this.offset[1]&&
this.ycomp<this.offset[1]+element.offsetHeight&&
this.xcomp>=this.offset[0]&&
this.xcomp<this.offset[0]+element.offsetWidth);},
overlap:function(mode,element){
if(!mode)return 0;
if(mode=='vertical')
return((this.offset[1]+element.offsetHeight)-this.ycomp)/
element.offsetHeight;
if(mode=='horizontal')
return((this.offset[0]+element.offsetWidth)-this.xcomp)/
element.offsetWidth;},
clone:function(source,target){
source=$(source);
target=$(target);
target.style.position='absolute';
var offsets=this.cumulativeOffset(source);
target.style.top=offsets[1]+'px';
target.style.left=offsets[0]+'px';
target.style.width=source.offsetWidth+'px';
target.style.height=source.offsetHeight+'px';},
page:function(forElement){
var valueT=0,valueL=0;
var element=forElement;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;}while(element=element.offsetParent);
element=forElement;
do{
valueT-=element.scrollTop||0;
valueL-=element.scrollLeft||0;}while(element=element.parentNode);
return[valueL,valueT];},
clone:function(source,target){
var options=Object.extend({
setLeft:true,
setTop:true,
setWidth:true,
setHeight:true,
offsetTop:0,
offsetLeft:0},arguments[2]||{})
source=$(source);
var p=Position.page(source);
target=$(target);
var delta=[0,0];
var parent=null;
if(Element.getStyle(target,'position')=='absolute'){
parent=Position.offsetParent(target);
delta=Position.page(parent);}
if(parent==document.body){
delta[0]-=document.body.offsetLeft;
delta[1]-=document.body.offsetTop;}
if(options.setLeft)target.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';
if(options.setTop)target.style.top=(p[1]-delta[1]+options.offsetTop)+'px';
if(options.setWidth)target.style.width=source.offsetWidth+'px';
if(options.setHeight)target.style.height=source.offsetHeight+'px';},
absolutize:function(element){
element=$(element);
if(element.style.position=='absolute')return;
Position.prepare();
var offsets=Position.positionedOffset(element);
var top=offsets[1];
var left=offsets[0];
var width=element.clientWidth;
var height=element.clientHeight;
element._originalLeft=left-parseFloat(element.style.left||0);
element._originalTop=top-parseFloat(element.style.top||0);
element._originalWidth=element.style.width;
element._originalHeight=element.style.height;
element.style.position='absolute';
element.style.top=top+'px';;
element.style.left=left+'px';;
element.style.width=width+'px';;
element.style.height=height+'px';;},
relativize:function(element){
element=$(element);
if(element.style.position=='relative')return;
Position.prepare();
element.style.position='relative';
var top=parseFloat(element.style.top||0)-(element._originalTop||0);
var left=parseFloat(element.style.left||0)-(element._originalLeft||0);
element.style.top=top+'px';
element.style.left=left+'px';
element.style.height=element._originalHeight;
element.style.width=element._originalWidth;}}
if(/Konqueror|Safari|KHTML/.test(navigator.userAgent)){
Position.cumulativeOffset=function(element){
var valueT=0,valueL=0;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;
element=element.offsetParent;}while(element);
return[valueL,valueT];}}

//::: Common 00:00:00

function $I(id){Claim.isString(id,"$I.id");var element=$(id);Claim.isObject(element,"Required HTML element id: "+id);return element;}
function $F(id){Claim.isString(id,"$F.id")
Claim.isObject($(id),"Required form element id: "+id)
return Form.Element.getValue(id)}
function $T(tagName){var element=document.getElementsByTagName(tagName).item(0)
Claim.isObject(element,"Required HTML element tag: "+tagName)
return element}
function $SO(id){return $I(id).options[$I(id).selectedIndex]}
Number.prototype.toText=function(base,width){Claim.isNumber(base,"Number.toText.base")
Claim.isTrue(base>0,"Number.toText.base")
Claim.isNumber(width,"Number.toText.width")
Claim.isTrue(width>=0,"Number.toText.width")
var text=this.toString(base||10)+""
while(text.length<width)
text="0"+text
return text}
Number.prototype.toDec=function(width){Claim.isNumber(width,"Number.toText.width")
Claim.isTrue(width>=0,"Number.toText.width")
return this.toText(10,width)}
Number.prototype.toHex=function(width){Claim.isNumber(width,"width","Number.toText.width")
Claim.isTrue(width>=0,"width","Number.toText.width")
return this.toText(16,width)}
Date.prototype.toText=function(){var year=this.getUTCFullYear().toDec(4)
var month=this.getUTCMonth().toDec(2)
var day=this.getUTCDate().toDec(2)
var hours=this.getUTCHours().toDec(2)
var minutes=this.getUTCMinutes().toDec(2)
var seconds=this.getUTCSeconds().toDec(2)
var milliseconds=this.getUTCMilliseconds().toDec(3)
return year+"-"+month+"-"+day+" "+hours+":"+minutes+":"+seconds+"."+milliseconds}
var PreLoad={}
PreLoad.preLoad=function(){PreLoad.log=new Log4Js.Logger("PreLoad")}
PreLoad.onLoad=function(){PreLoad.log.debug("Done pre-load")}
PreLoad.actions=[]
PreLoad.actions.push(PreLoad.preLoad)
Event.observe(window,"load",PreLoad.onLoad)
var Url={}
Url.parse=function(url){Claim.isString(url,"Url.parse.url")
var parsed={}
parsed.full=url
parsed.base=url.replace(/\?.*$/,'')
parsed.protocol=url.replace(/:.*$/,'')
parsed.domain=parsed.base.replace(/^[^:]*:\/[\/]/,'').replace(/[:\/].*$/,'')
parsed.path=parsed.base.replace(/^[^\/]*\/\/[^\/]*[\/]/,'/')
parsed.query=url.replace(/^[^?]*\??/,'')
parsed.params=parsed.query.split("&").inject({},function(params,paramValue){pair=paramValue.split("=")
params[pair[0]]=unescape(pair[1])
return params})
return parsed}
Url.trimAnchor=function(url){var i=url.lastIndexOf("#");var isHasSharpMark=i>-1
var isHasQMark=url.lastIndexOf("?")>-1
if(isHasSharpMark&&((isHasQMark&&i>url.lastIndexOf("="))||!isHasQMark)){url=url.substr(0,i);}
return url;}
Url.appendParams=function(url,params){Claim.isString(url,"Url.appendParams.url")
if(!params||params=="")
return url
if(typeof(params)=="string")
return url+(url.match(/\?/)?"&":"?")+params
return $A($H(params).keys().sort()).inject(url,function(url,param){return Url.appendParamValue(url,param,params[param])})}
Url.appendParamValue=function(url,param,value){Claim.isString(url,"Url.appendParamValue.url")
Claim.isString(param,"Url.appendParamValue.param")
Claim.isScalar(value,"Url.appendParamValue.value")
return url+(url.match(/\?/)?"&":"?")+escape(param)+"="+escape(value)}
Url.relativeUrl=function(options){Claim.isObject(options,"Url.relativeUrl.options")
var protocol=options.protocol||Url.here.protocol
Claim.isString(protocol,"Url.relativeUrl.options.protocol")
var domain=options.domain||Url.here.domain
Claim.isString(domain,"Url.relativeUrl.options.domain")
var path=options.path||Url.here.path
Claim.isString(path,"Url.relativeUrl.options.path")
if(!path.match(/^[\/]/)){var base=Url.here.path
path="../"+path
while(path.match(/^\.\.[\/]/)){path=path.replace(/^\.\.[\/]/,"")
base=base.replace(/\/[^\/]+$/,"")}
path=base+"/"+path}
var params={}
var withHereParams=options.withHereParams||false
Claim.isBoolean(withHereParams,"Url.relativeUrl.options.withHereParams")
if(withHereParams)
Object.extend(params,Url.here.params)
var withClearanceParams=options.withClearanceParams
if(withClearanceParams==undefined)
withClearanceParams=domain!=Url.here.domain
Claim.isBoolean(withClearanceParams,"Url.relativeUrl.options.withClearanceParams")
if(withClearanceParams){Object.extend(params,Clearance.getAllLevelParams())}
var optionsParams=options.params||{}
Claim.isObject(optionsParams,"Url.relativeUrl.options.params")
Object.extend(params,options.params||{})
return Url.appendParams(protocol+":/"+"/"+domain+path,params)}
Url.here=undefined
Url.preLoad=function(){Url.here=Url.parse(location.href)}
PreLoad.actions.push(Url.preLoad)
var Claim={}
Claim.check=function(condition,claim,comment){if(!comment)
comment=claim
else
comment=claim+": "+comment
var log=Claim.log
Claim.log=undefined
try{if(condition){if(log)
log.debug(comment)}
else{if(log)
log.error(comment)
else
alert(comment)
throw new Error(comment)}}
finally{Claim.log=log}}
Claim.valueType=function(object){if(object==undefined)
return"undefined"
if(object==null)
return"null"
return typeof(object)+"("+object+")"}
Claim.isTrue=function(condition,comment){Claim.check(condition,"isTrue("+Claim.valueType(condition)+")",comment)}
Claim.isFalse=function(condition,comment){Claim.check(!condition,"isFalse("+Claim.valueType(condition)+")",comment)}
Claim.isNull=function(object,comment){Claim.check(typeof(object)==null,"isNull("+Claim.valueType(object)+")",comment)}
Claim.isNotNull=function(object,comment){Claim.check(typeof(object)!=null,"isNotNull("+Claim.valueType(object)+")",comment)}
Claim.isUndefined=function(object,comment){Claim.check(typeof(object)=='undefined',"isUndefined("+Claim.valueType(object)+")",comment)}
Claim.isNotUndefined=function(object,comment){Claim.check(typeof(object)!='undefined',"isNotUndefined("+Claim.valueType(object)+")",comment)}
Claim.isObject=function(object,comment){Claim.check(!!object,"isObject("+Claim.valueType(object)+")",comment)}
Claim.isNumber=function(object,comment){Claim.check(typeof(object)=="number","isNumber("+Claim.valueType(object)+")",comment)}
Claim.isBoolean=function(object,comment){Claim.check(typeof(object)=="boolean","isBoolean("+Claim.valueType(object)+")",comment)}
Claim.isString=function(object,comment){Claim.check(typeof(object)=="string","isString("+Claim.valueType(object)+")",comment)}
Claim.isScalar=function(object,comment){Claim.check(typeof(object)=="string"||typeof(object)=="number"||typeof(object)=="boolean","isScalar("+Claim.valueType(object)+")",comment)}
Claim.isArray=function(object,comment){Claim.check(object&&object.length!=undefined,"isArray("+Claim.valueType(object)+")",comment)}
Claim.areEqual=function(object1,object2,comment){Claim.check(object1==object2,"areEqual("+Claim.valueType(object1)+" ? "+Claim.valueType(object2)+")",comment)}
Claim.isFunction=function(object,comment){Claim.check(typeof(object)=='function',"isFunction("+Claim.valueType(object)+")",comment)}
Claim.preLoad=function(){Claim.log=new Log4Js.Logger("Claim")}
PreLoad.actions.push(Claim.preLoad)
var Cookies={}
Cookies.defaultOptions={}
Cookies.rawByName={}
Cookies.valueByName={}
Cookies.set=function(name,value,options){Claim.isString(name,"Cookies.set.name")
Claim.isObject(value,"Cookies.set.value")
var fullOptions=Cookies.fullOptions(name,options)
var raw=Cookies.toJson(value)
Cookies.valueByName[name]=value
Cookies.rawByName[name]=raw
var cookie=Cookies.fullCookie(name,raw,fullOptions)
Cookies.log.info("Set cookie: "+cookie)
document.cookie=cookie}
Cookies.get=function(name){Claim.isString(name,"Cookies.get.name")
return Cookies.valueByName[name]}
Cookies.clear=function(name,options){Claim.isString(name,"Cookies.clear.name")
var fullOptions=Cookies.fullOptions(name,options)
fullOptions.expires=Cookies.expiration(-1)
var cookie=Cookies.fullCookie(name,"",fullOptions)
delete(Cookies.rawByName[name])
delete(Cookies.valueByName[name])
Cookies.log.info("Clear cookie: "+cookie)
document.cookie=cookie}
Cookies.fullOptions=function(name,options){Claim.isString(name,"Cookies.fullOptions.name")
var fullOptions=Object.extend({},Cookies.defaultOptions)
fullOptions=Object.extend(fullOptions,options||{})
if(!fullOptions.path){var error="Set cookie name: "+name+" without a path"
Cookies.log.error(error)
throw error}
if(fullOptions.path.charAt(0)!="/"){var error="Set cookie name: "+name+" invalid path: "+fullOptions.path
Cookies.log.error(error)
throw error}
if(!fullOptions.domain){var error="Set cookie name: "+name+" without a domain"
Cookies.log.error(error)
throw error}
if(fullOptions.domain.charAt(0)!="."){var error="Set cookie name: "+name+" invalid domain: "+fullOptions.domain
Cookies.log.error(error)
throw error}
return fullOptions}
Cookies.expiration=function(millis){Claim.isNumber(millis,"Cookies.expiration.millis")
var today=new Date()
var now=Date.parse(today)
today.setTime(now+1*millis)
return today.toUTCString()}
Cookies.fullCookie=function(name,raw,options){Claim.isString(name,"Cookies.fullCookie.name")
var cookie=name+"="+raw
$H(options).each(function(pair){if(pair[1]!=undefined)
cookie+=";"+pair[0]+"="+pair[1]})
return cookie}
Cookies.toJson=function(object){if(object==undefined)
return"undefined"
if(object==null)
return"null"
if(typeof(object)=="string")
return"\""+Cookies.jsonEscape(object.toString())+"\""
if(typeof(object)=="number"||typeof(object)=="boolean")
return object.toString()
if(object.toJson)
return object.toJson()
var json=""
var seperator=""
if(typeof object=='object'&&object.constructor.toString().match(/array/i)!=null){$A(object).each(function(value){json+=seperator+Cookies.toJson(value)
seperator=","})
return"["+json+"]"}
else{var json=""
$H(object).each(function(pair){json+=seperator+Cookies.toJson(pair[0])+":"+Cookies.toJson(pair[1])
seperator=","})
return"{"+json+"}"}}
Cookies.jsonEscape=function(text){Claim.isString(text,"Claim.jsonEscape.text")
var escaped=""
for(var i=0;i<text.length;i++){var code=text.charCodeAt(i)
if(code<32||code==59){escaped+="\\u"+code.toHex(4)}
else{var nextChar=text.charAt(i)
if(nextChar=="\""||nextChar=="\\")
escaped+="\\"
escaped+=nextChar}}
return escaped}
Cookies.preLoad=function(){Cookies.log=new Log4Js.Logger("Cookies")
Cookies.defaultOptions.path="/"
Cookies.defaultOptions.domain="."+Url.here.domain.replace(/^[a-zA-Z0-9\-]+./,'')
document.cookie.split(';').each(function(cookie){if(!cookie){if(Cookies.rawByName!=undefined){Cookies.rawByName={};Cookies.valueByName={};}
throw $break}
var name=cookie.replace(/^\s*([^=]+)=.*$/,'$1')
var raw=cookie.replace(/^[^=]*=/,'')
Cookies.rawByName[name]=raw
Cookies.log.info("Load cookie name: "+name+" value: "+raw)
try{var value=undefined
eval("value="+raw)
Cookies.valueByName[name]=value}
catch(error){Cookies.log.error("Invalid cookie name: "+name+" value: "+value+" error: "+error)
Cookies.valueByName[name]=null}})}
Cookies.pop=function(){var each,s=[];for(each in this.rawByName){s[s.length]=each
s[s.length]=":"
s[s.length]=this.rawByName[each]
s[s.length]="\n"}
alert(unescape(s.join("")));}
PreLoad.actions.push(Cookies.preLoad)
var Log4Js={}
Log4Js.levelNames=["All","Debug","Info","Warn","Error","Fatal","None"]
Log4Js.ALL=0
Log4Js.DEBUG=1
Log4Js.INFO=2
Log4Js.WARN=3
Log4Js.ERROR=4
Log4Js.FATAL=5
Log4Js.NONE=6
Log4Js.configVersion=0
Log4Js.targetsByName={"*":[]}
Log4Js.setTargets=function(name,targets){Claim.isString(name,"Log4Js.setTargets.name")
Claim.isArray(targets,"Log4Js.setTargets.targets")
Log4Js.targetsByName[name]=targets
Log4Js.configVersion++}
Log4Js.removeTargets=function(name){Claim.isString(name,"Log4Js.removeTargets.name")
if(name=="*")
Log4Js.targetsByName[name]=[]
else
delete(Log4Js.targetsByName[name])
Log4Js.configVersion++}
Log4Js.getTargets=function(name){Claim.isString(name,"Log4Js.getTargets.name")
return Log4Js.targetsByName[name]}
Log4Js.findPrefix=function(name){Claim.isString(name,"Log4Js.findPrefix.name")
while(true){if(name=="")
name="*"
var targets=Log4Js.targetsByName[name]
if(targets)
return name
var lastDot=name.lastIndexOf(".")
name=lastDot>0?name.substring(0,lastDot):""}}
Log4Js.findTargets=function(name){Claim.isString(name,"Log4Js.findTargets.name")
return this.getTargets(this.findPrefix(name))}
Log4Js.toConfig=function(){var anchorsByName={}
var targetAnchorByJson={}
var targetByAnchor={}
var nextAnchor=1
$H(Log4Js.targetsByName).each(function(pair){var name=pair[0]
var targets=pair[1]
anchorsByName[name]=targets.inject([],function(anchors,target){var json=target.toJson()
var anchor=targetAnchorByJson[json]
if(!anchor){anchor=targetAnchorByJson[json]="t"+nextAnchor++
targetByAnchor[anchor]=target}
anchors.push(anchor)
return anchors})})
return{targetByAnchor:targetByAnchor,anchorsByName:anchorsByName}}
Log4Js.fromConfig=function(config){Claim.isObject(config,"Log4Js.fromConfig.config")
Claim.isObject(config.anchorsByName,"Log4Js.fromConfig.config.anchorsByName")
Claim.isObject(config.targetByAnchor,"Log4Js.fromConfig.config.targetByAnchor")
var targetsByName=$H(config.anchorsByName).inject({},function(targetsByName,pair){var name=pair[0]
var anchors=pair[1]
targetsByName[name]=$A(anchors).inject([],function(targets,anchor){targets.push(config.targetByAnchor[anchor])
return targets})
return targetsByName})
Log4Js.targetsByName=targetsByName
Log4Js.configVersion++}
Log4Js.pop=function(conf){if(!conf||typeof(conf)!='object'){conf={anchorsByName:{"*":["t1"],Claim:["t2"]},targetByAnchor:{t1:new Log4Js.PopupTarget(Log4Js.ALL,"log4js-%U-%T",true),t2:new Log4Js.PopupTarget(Log4Js.FATAL,"log4js-%U-%T",true)}};}
Cookies.set("log4js.config",conf,{});this.fromConfig(conf);}
Log4Js.add=function(sClassName,enLEVEL){Claim.isString(sClassName,"Log4Js.add(sClassName, enLEVEL) - sClassName must be a string");Claim.isString(enLEVEL,"Log4Js.add(sClassName, enLEVEL) - enLEVEL must Log Level ALL, DEBUG, WARN, ...");var iLevel=this[enLEVEL.toUpperCase()];Claim.isNumber(iLevel,"Log4Js.add(sClassName, enLEVEL) - Log4Js."+enLEVEL+" is not a valid warn-level");Claim.check(iLevel>=0&&iLevel<=6,"0 <= iLevel <= 6","Log4Js.add(sClassName, enLEVEL) - Log4Js[enLEVEL must be between 0 to 6");var conf=this.toConfig();conf.targetByAnchor.newAnchor=new Log4Js.PopupTarget(iLevel,"log4js-%U-%T",true)
conf.anchorsByName[sClassName]=["newAnchor"];this.pop(conf);}
Log4Js.clear=function(sClassName){Claim.isString(sClassName,"Log4Js.clear(sClassName) - sClassName must be a string");var conf=this.toConfig();delete conf.anchorsByName[sClassName];this.pop(conf);}
Log4Js.stop=function(){var conf={anchorsByName:{"*":["t1"]},targetByAnchor:{t1:new Log4Js.PopupTarget(Log4Js.NONE,"log4js-%U-%T",true)}};Cookies.set("log4js.config",conf,{});this.fromConfig(conf);}
Log4Js.preLoad=function(){var config=Cookies.get("log4js.config")
if(config)
Log4Js.fromConfig(config)
PreLoad.log.debug("Start pre-load")}
PreLoad.actions.push(Log4Js.preLoad)
Log4Js.Logger=Class.create()
Log4Js.Logger.prototype={}
Log4Js.Logger.prototype.initialize=function(name){Claim.isString(name,"Log4Js.Logger.name")
this.name=name
this.configVersion=-1}
Log4Js.Logger.prototype.debug=function(text){this.emit(Log4Js.DEBUG,text)}
Log4Js.Logger.prototype.info=function(text){this.emit(Log4Js.INFO,text)}
Log4Js.Logger.prototype.warn=function(text){this.emit(Log4Js.WARN,text)}
Log4Js.Logger.prototype.error=function(text){this.emit(Log4Js.ERROR,text)}
Log4Js.Logger.prototype.fatal=function(text){this.emit(Log4Js.FATAL,text)}
Log4Js.Logger.prototype.emit=function(level,text){if(this.configVersion<Log4Js.configVersion){this.targets=Log4Js.findTargets(this.name)
this.configVersion=Log4Js.configVersion}
if(this.targets.length>0){Claim.isNumber(level,"Log4Js.Logger.emit.level")
Claim.isTrue(Log4Js.DEBUG<=level&&level<=Log4Js.FATAL)
Claim.isScalar(text,"text")
var event={time:new Date().toText(),level:level,name:this.name,text:text,url:location.href}
this.targets.each(function(target){target.emit(event)})}}
Log4Js.AbstractTarget=function(){}
Log4Js.AbstractTarget.prototype={}
Log4Js.AbstractTarget.prototype.emit=function(event){Claim.isObject(event,"Log4Js.AbstractTarget.emit.event")
Claim.isNumber(event.level,"Log4Js.AbstractTarget.emit.event.level")
if(event.level>=this.level)
this._emit(event)}
Log4Js.AlertTarget=Class.create()
Log4Js.AlertTarget.prototype=new Log4Js.AbstractTarget()
Log4Js.AlertTarget.prototype.initialize=function(level){Claim.isNumber(level,"Log4Js.AlertTarget.level")
Claim.isTrue(Log4Js.ALL<=level&&level<=Log4Js.NONE,"Log4Js.AlertTarget.level")
this.level=level}
Log4Js.AlertTarget.prototype._emit=function(event){Claim.isObject(event,"Log4Js.AlertTarget._emit.event")
alert(event.time+" "+event.url+" "+Log4Js.levelNames[event.level]+" "+event.name+":\n"+event.text)}
Log4Js.AlertTarget.prototype.toJson=function(){return"new Log4Js.AlertTarget(Log4Js."+Log4Js.levelNames[this.level].toUpperCase()+")"}
Log4Js.TableTarget=Class.create()
Log4Js.TableTarget.prototype=new Log4Js.AbstractTarget()
Log4Js.TableTarget.prototype.backLog=[]
Log4Js.TableTarget.prototype.initialize=function(level,table,isLastOnTop){Claim.isNumber(level,"Log4Js.TableTarget.level")
Claim.isTrue(Log4Js.ALL<=level&&level<=Log4Js.NONE,"Log4Js.TableTarget.level")
Claim.isObject(table,"Log4Js.TableTarget.table")
Claim.isBoolean(isLastOnTop,"Log4Js.TableTarget.isLastOnTop")
this.level=level
this.isLastOnTop=isLastOnTop
if(typeof(table)=="string"){this.name=table
this.table=$(table)}
else{this.name=table.id
this.table=table}}
Log4Js.TableTarget.prototype.initTable=function(event){Claim.isObject(event,"Log4Js.TableTarget.initTable.event")
this.table=this.table||$(this.name)
if(!this.table)
return false
if(this.table.rows.length>0)
return true
var row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML="Time"
row.insertCell(-1).innerHTML="Level"
row.insertCell(-1).innerHTML="Name"
row.insertCell(-1).innerHTML="Text"
row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML=event.time
row.insertCell(-1).innerHTML="<hr />"
row.insertCell(-1).innerHTML="LOG4JS"
row.insertCell(-1).innerHTML=event.url
row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML=event.time
row.insertCell(-1).innerHTML="<hr />"
row.insertCell(-1).innerHTML="LOG4JS"
row.insertCell(-1).innerHTML=event.url
row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML="Time"
row.insertCell(-1).innerHTML="Level"
row.insertCell(-1).innerHTML="Name"
row.insertCell(-1).innerHTML="Text"
return true}
Log4Js.TableTarget.prototype._emit=function(event){Claim.isObject(event,"Log4Js.TableTarget._emit.event")
this.backLog.push(event)
if(!this.initTable(event))
return
while(this.backLog.length>0){var event=this.backLog.shift()
var row=this.table.insertRow(this.isLastOnTop?2:-1)
row.insertCell(-1).innerHTML=event.time
row.insertCell(-1).innerHTML=Log4Js.levelNames[event.level]
row.insertCell(-1).innerHTML=event.name
row.insertCell(-1).innerHTML=event.text}}
Log4Js.TableTarget.prototype.toJson=function(){return"new Log4Js.TableTarget(Log4Js."+Log4Js.levelNames[this.level].toUpperCase()+","+Cookies.toJson(this.name)+","+Cookies.toJson(this.isLastOnTop)+")"}
Log4Js.PopupTarget=Class.create()
Log4Js.PopupTarget.prototype=new Log4Js.AbstractTarget()
Log4Js.PopupTarget.windows={}
Log4Js.PopupTarget.prototype.initialize=function(level,name,isLastOnTop){Claim.isNumber(level,"Log4Js.Prototype.level")
Claim.isTrue(Log4Js.ALL<=level&&level<=Log4Js.NONE,"Log4Js.Prototype.level")
Claim.isString(name,"Log4Js.Prototype.name")
Claim.isBoolean(isLastOnTop,"Log4Js.Prototype.isLastOnTop")
this.name=name
name=name.replace(/%T/,new Date().toText())
name=name.replace(/%U/,location.href)
name=name.replace(/\W+/g,'_')
name=name.replace(/[_]+/g,'_')
this.windowName=name
this.level=level
this.isLastOnTop=isLastOnTop}
Log4Js.PopupTarget.prototype._emit=function(event){Claim.isObject(event,"Log4Js.Prototype._emit.event")
if(!this.window||this.window.closed){this.window=Log4Js.PopupTarget.windows[name]
if(!this.window||this.window.closed){this.window=Log4Js.PopupTarget.windows[name]=window.open("",this.windowName,'width=640,height=480,'+'scrollbars=1,status=0,toolbars=0,resizable=1')
if(!this.window||this.window.closed){alert("A popup window manager is blocking the logger "+"popup display.\n"+"You need to allow popups to see the logged events.")
this.emit=function(event){}
return}
this.window.document.writeln("<table id='log-table'></table>")
this.window.document.close()}
this.table=this.window.document.getElementById("log-table")
this.target=new Log4Js.TableTarget(this.level,this.table,this.isLastOnTop)}
this.target._emit(event)}
Log4Js.PopupTarget.prototype.toJson=function(){return"new Log4Js.PopupTarget(Log4Js."+Log4Js.levelNames[this.level].toUpperCase()+","+Cookies.toJson(this.name)+","+Cookies.toJson(this.isLastOnTop)+")"}
var Clearance={}
Clearance.MEMBER=0;Clearance.GUEST=1;Clearance.levelNames=["Anonymnous","Unclassified","Restricted","Confidential"]
Clearance.ANONYMOUS=0
Clearance.UNCLASSIFIED=1
Clearance.RESTRICTED=2
Clearance.CONFIDENTIAL=3
Clearance.level=undefined
Clearance.userId=undefined
Clearance.isLevel=function(level){return Clearance.level==level}
Clearance.hasLevel=function(level){Claim.isNumber(level,"Clearance.hasLevel.level")
Claim.isTrue(0<=level&&level<=Clearance.CONFIDENTIAL,"Clearance.hasLevel.level")
if(Clearance.hasLoginType()==true){return Clearance.level>=level}return false;}
Clearance.requireLevel=function(requiredLevel,loginUrl,urlParam){Claim.isNumber(requiredLevel,"Clearance.requireLevel.requiredLevel")
var minLevel=Clearance.ANONYMOUS
var maxLevel=Url.here.protocol=="https"?Clearance.CONFIDENTIAL:Clearance.UNCLASSIFIED
Claim.isTrue(minLevel<=requiredLevel&&requiredLevel<=maxLevel,"Clearance.requireLevel.requiredLevel")
Claim.isString(loginUrl,"Clearance.requireLevel.loginUrl")
Claim.isString(urlParam,"Clearance.requireLevel.urlParam")
Clearance.log.debug("Required: "+requiredLevel+" level: "+Clearance.level)
if(Clearance.level<requiredLevel){var url=Url.appendParamValue(loginUrl,urlParam,location.href)
Clearance.log.info("Redirect to "+url)
location=url}}
Clearance.isUnclassified=function(){return Clearance.isLevel(Clearance.UNCLASSIFIED)}
Clearance.hasUnclassified=function(){return Clearance.hasLevel(Clearance.UNCLASSIFIED)}
Clearance.isGuest=function(){var currentLoginType=Clearance.loginType();if(currentLoginType){if(currentLoginType==Clearance.GUEST)
return true;return false;}}
Clearance.isMember=function(){var currentLoginType=Clearance.loginType();if(currentLoginType){if(currentLoginType==Clearance.MEMBER)
return true;return false;}}
Clearance.hasLoginType=function(){if(Clearance.loginType())
return true;return false;}
Clearance.loginType=function(){var unclCookie=Cookies.get(Clearance.cookieName(Clearance.UNCLASSIFIED,true));if(unclCookie){var cookieParams=unclCookie.en.toQueryParams()
if(cookieParams["LT"])
return cookieParams["LT"];}
return null}
Clearance.refresh=function(){Cookies.preLoad();Clearance.preLoad();}
Clearance.load=function(sessionToken){var sessionQuerystring=sessionToken.replace(/^[^?]*\??/,'');if(sessionQuerystring.length==0)
sessionQuerystring=sessionToken;Url.here.params=sessionQuerystring.split("&").inject({},function(params,paramValue){pair=paramValue.split("=")
params[pair[0]]=unescape(pair[1])
return params})
Clearance.refresh();}
Clearance.requireUnclassified=function(loginUrl,param){Clearance.requireLevel(Clearance.UNCLASSIFIED,loginUrl,param)}
Clearance.isRestricted=function(){return Clearance.isLevel(Clearance.RESTRICTED)}
Clearance.hasRestricted=function(){return Clearance.hasLevel(Clearance.RESTRICTED)},Clearance.requireRestricted=function(loginUrl,param){Clearance.requireLevel(Clearance.RESTRICTED,loginUrl,param)}
Clearance.isConfidential=function(){return Clearance.isLevel(Clearance.CONFIDENTIAL)}
Clearance.hasConfidential=function(){return Clearance.hasLevel(Clearance.CONFIDENTIAL)}
Clearance.requireConfidential=function(loginUrl,param){Clearance.requireLevel(Clearance.CONFIDENTIAL,loginUrl,param)}
Clearance.getExpiration=function(expiration){if(typeof(expiration)!="number")
return
var dateExpiration=new Date(expiration)
var dateNow=new Date()
shouldbeexpired=Number(dateExpiration.getTime())-Number(dateNow.getTime());if(shouldbeexpired>0)
return shouldbeexpired
else
return}
Clearance.getParams=function(level){Claim.isNumber(level,"Clearance.getEncrypted.level")
Claim.isTrue(level>=Clearance.UNCLASSIFIED&&level<=Clearance.CONFIDENTIAL,"Clearance.getEncrypted.level")
if(!Clearance.hasLevel(level))
return null
var params={}
params.ux=Clearance.getExpiration(Clearance.params.ux)
if(params.ux){params.un=Clearance.params.un
params.ui=Clearance.params.ui}else{Clearance.level=0;return null}
if(level>=Clearance.RESTRICTED){params.rx=Clearance.getExpiration(Clearance.params.rx)
if(params.rx)
params.rn=Clearance.params.rn}
if(level>=Clearance.CONFIDENTIAL){params.cx=Clearance.getExpiration(Clearance.params.cx)
if(params.cx)
params.cn=Clearance.params.cn}
return params}
Clearance.getAllLevelParams=function(){var params={}
for(level=1;level<=3;level=level+1){Object.extend(params,Clearance.getParams(level))}
return params;}
Clearance.getMagic=function(level){params=Clearance.getParams(level)
if(params)
return Url.appendParams("",params)
return null}
Clearance.prefix=["Oberon1.A.","Oberon1.U.","Oberon1.R.","Oberon1.C."],Clearance.cookieName=function(level,isTimed){Claim.isNumber(level,"Clearance.cookieName.level")
Claim.isTrue(level>=Clearance.ANONYMOUS&&level<=Clearance.CONFIDENTIAL,"Clearance.cookieName.level")
Claim.isBoolean(isTimed,"Clearance.cookieName.isTimed")
if(level>Clearance.UNCLASSIFIED)
return Clearance.prefix[level]+(isTimed?"T":"S")
else
return Clearance.prefix[level]}
Clearance.setCookies=function(level,userId,encrypted,expires){Claim.isNumber(level,"Clearance.setCookies.level")
Claim.isTrue(level>=Clearance.ANONYMOUS&&level<=Clearance.CONFIDENTIAL,"Clearance.setCookies.level")
if(level!=Clearance.ANONYMOUS)
Claim.isString(userId,"Clearance.setCookies.userId")
Claim.isString(encrypted,"Clearance.setCookies.encrypted")
var value={ui:userId,en:encrypted}
if(expires){value.ex=expires
var date=new Date()
date.setSeconds(date.getSeconds()+Math.round(expires/1000))
Cookies.set(Clearance.cookieName(level,true),value,{expires:date.toUTCString()})
if(level>Clearance.UNCLASSIFIED){Cookies.set(Clearance.cookieName(level,false),value,{expires:undefined})}}
else{Claim.isTrue(level==Clearance.UNCLASSIFIED||level==Clearance.ANONYMOUS,"Clearance.setCookies.level")
Cookies.set(Clearance.cookieName(level,true),value,{expires:undefined})}}
Clearance.clearCookies=function(level){Claim.isNumber(level,"Clearance.clearCookies.level")
Claim.isTrue(level>=Clearance.UNCLASSIFIED&&level<=Clearance.CONFIDENTIAL,"Clearance.clearCookies.level")
Cookies.clear(Clearance.cookieName(level,false),{})
Cookies.clear(Clearance.cookieName(level,true),{})}
Clearance.forget=function(url){Clearance.log.debug("Forget user")
Clearance.clearCookies(Clearance.UNCLASSIFIED)
Clearance.clearCookies(Clearance.RESTRICTED)
Clearance.clearCookies(Clearance.CONFIDENTIAL)
var url=Url.appendParamValue(url,"ui","none")
Clearance.log.info("Redirect to "+url)
location=url}
Clearance.params={},Clearance.preLoad=function(){Clearance.urlParamsToCookies()
Clearance.level=Clearance.ANONYMOUS
Clearance.log.debug("Achieved Anonymnous")
if(Clearance.processCookies(Clearance.UNCLASSIFIED,"un","ux"))
if(Clearance.processCookies(Clearance.RESTRICTED,"rn","rx"))
Clearance.processCookies(Clearance.CONFIDENTIAL,"cn","cx")}
Clearance.urlParamsToCookies=function(){Clearance.log=new Log4Js.Logger("Clearance")
Clearance.level=Clearance.ANONYMOUS
Clearance.log.debug("Try to access current URL clearance parameters")
if(Url.here.params.an){Clearance.setCookies(Clearance.ANONYMOUS,Url.here.params.ui,Url.here.params.an);}
if(Url.here.params.ui){if(Url.here.params.un&&Url.here.params.ux)
Clearance.setCookies(Clearance.UNCLASSIFIED,Url.here.params.ui,Url.here.params.un,((typeof(Url.here.params.ux)=="number")?(Url.here.params.ux*1000.0):Url.here.params.ux))
else if(Url.here.params.un)
Clearance.setCookies(Clearance.UNCLASSIFIED,Url.here.params.ui,Url.here.params.un,null)
else
Clearance.clearCookies(Clearance.UNCLASSIFIED)}
Clearance.log.debug("Strip clearance params from URL")
delete(Url.here.params["ui"])
delete(Url.here.params["un"])
delete(Url.here.params["ux"])
delete(Url.here.params["rn"])
delete(Url.here.params["rx"])
delete(Url.here.params["cn"])
delete(Url.here.params["cx"])
delete(Url.here.params["an"])}
Clearance.processCookies=function(level,en,ex){Claim.isNumber(level,"Clearance.processCookies.level")
Claim.isTrue(level>Clearance.level&&level<=Clearance.CONFIDENTIAL,"Clearance.processCookies.level")
Clearance.log.debug("Process "+Clearance.prefix[level]+" cookies")
var sessionName=Clearance.cookieName(level,false)
var timedName=Clearance.cookieName(level,true)
var session=Cookies.get(sessionName)
var timed=Cookies.get(timedName)
if(!session){Clearance.log.debug("No "+sessionName+" cookie => "+Clearance.levelNames[Clearance.level])
return false}
if(!timed){Clearance.log.debug("No "+timedName+" cookie => "+Clearance.levelNames[Clearance.level])
return false}
if(!session.ui){Clearance.log.debug("No "+sessionName+".ui => "+Clearance.levelNames[Clearance.level])
return false}
if(!timed.ui){Clearance.log.debug("No "+timedName+".ui => "+Clearance.levelNames[Clearance.level])
return false}
if(session.ui!=timed.ui){Clearance.log.debug("Mismatch {"+sessionName+","+timedName+"}.ui => "+Clearance.levelNames[Clearance.level])
return false}
if(!session.en){Clearance.log.debug("No "+sessionName+".en => "+Clearance.levelNames[Clearance.level])
return false}
if(!timed.en){Clearance.log.debug("No "+timedName+".en => "+Clearance.levelNames[Clearance.level])
return false}
if(session.en!=timed.en){Clearance.log.debug("Mismatch {"+sessionName+","+timedName+"}.en => "+Clearance.levelNames[Clearance.level])
return false}
if(level>Clearance.UNCLASSIFIED){if(session.ui!=Clearance.userId){Clearance.log.debug("Mismatch "+sessionName+".ui => "+Clearance.levelNames[Clearance.level])
return false}}
else{Clearance.params.ui=session.ui
Clearance.userId=session.ui}
Clearance.params[en]=session.en
var dateExpired=new Date()
var millExp=timed.ex?timed.ex:1
Clearance.params[ex]=Number(dateExpired.getTime())+Number(millExp)
Clearance.level=level
Clearance.log.debug("Achieved "+Clearance.levelNames[Clearance.level])
return true}
PreLoad.actions.push(Clearance.preLoad)
var Jast={}
Jast.timeout=20000
Jast.pendingRequestByUrl={}
Jast.pendingRequestById={}
Jast.isPreLoad=true
Jast.nextRequestId=0
Jast.activeRequestCount=0
Jast.response=function(id,isOk,result,caching){Claim.isNumber(id,"Jast.response.id")
Claim.isBoolean(isOk,"Jast.response.isOk")
request=Jast.pendingRequestById[id]
if(!request){Jast.Request.log.warn("Unknown load request id: "+id+" isOk: "+isOk)
return}
request.loaded(isOk,result,caching)}
Jast.clearCache=function(){$H(Cookies.valueByName).keys.each(function(name){if(name.substr(0,5)=="Jast.")
Cookies.clear(name)})}
Jast.Request=Class.create()
Jast.Request.prototype={}
Jast.Request.stateNames=["Uninitialized","Loading","Loaded","Interactive","Complete"]
Jast.Request.UNINITIALIZED=0
Jast.Request.LOADING=1
Jast.Request.LOADED=2
Jast.Request.INTERACTIVE=3
Jast.Request.COMPLETE=4
Jast.Request.statusNames=["Create","Success","Failure","Timeout"]
Jast.Request.CREATE=0
Jast.Request.SUCCESS=1
Jast.Request.FAILURE=2
Jast.Request.TIMEOUT=3
Jast.Request.preLoad=function(){Jast.Request.log=new Log4Js.Logger("Jast.Request")}
PreLoad.actions.push(Jast.Request.preLoad)
Jast.Request.onLoad=function(){Jast.isPreLoad=false
var length=Jast.nextRequestId
Jast.Request.log.debug("Complete "+length+" pre-load request(s)")
length.times(function(id){request=Jast.pendingRequestById[id]
if(request&&!request.uses)
if(request.result)
request.complete()
else{if(request.options.timeout>0){request.setTimeout=setTimeout(request.timedOut.bind(request),request.options.timeout)
Jast.Request.log.debug("Reset timeout for Preloaded Request. Request id: "+request.id+" setTimeout: "+request.setTimeout)}}})}
Event.observe(window,"load",Jast.Request.onLoad)
Jast.Request.prototype.initialize=function(url,options){Claim.isString(url,"Jast.Request.url")
this.url=url
this.options={timeout:Jast.timeout,toReuse:true,unimportant:[]}
Object.extend(this.options,options||{})
var parsed=Url.parse(url)
$A(this.options.unimportant).each(function(param){delete(parsed.params[param])})
$A(["un","ux","rn","rx","cn","cx"]).each(function(param){delete(parsed.params[param])})
this.cacheId=Url.appendParams(parsed.base,parsed.params)
this.cacheId="Just."+this.cacheId.replace(/[=;]/g,'_')
this.usedBy=[]
this.id=Jast.nextRequestId++
this.state=-1
this.status=Jast.Request.CREATE
Jast.Request.log.debug("Create request id: "+this.id+" url: "+this.url+" unimportant: "+Cookies.toJson(this.options.unimportant)+" cacheId: "+this.cacheId+" toReuse: "+this.options.toReuse+" timeout: "+this.options.timeout)
this.advanceTo(Jast.Request.UNINITIALIZED)
this.dispatch("onCreate")
var name
var cached=Cookies.get(name=this.cacheId+".T")||Cookies.get(name=this.cacheId+".S")
if(cached){Jast.Request.log.debug("Fetch request id: "+this.id+" from cookie name: "+name)
if(Jast.isPreLoad){Jast.pendingRequestByUrl[this.cacheId]=this
Jast.pendingRequestById[this.id]=this}
this.loaded(cached.isOk,cached.result,undefined)
return}
var request=Jast.pendingRequestByUrl[this.cacheId]
if(request&&this.options.toReuse&&request.options.toReuse&&request.state<=Jast.Request.LOADED){Jast.Request.log.debug("Merge request id: "+this.id+" with request id: "+request.id+" state: "+Jast.Request.stateNames[request.state]+" status: "+Jast.Request.statusNames[request.status])
this.uses=request
this.advanceTo(request.state)
this.result=request.result
this.status=request.status
request.usedBy.push(this)}
else{this.makeRequest()}}
Jast.Request.prototype.makeRequest=function(){this.fullUrl=Url.appendParamValue(this.url,"jastId",this.id)
Jast.Request.log.info("Make request id: "+this.id+" fullUrl: "+this.fullUrl)
this.scriptId="jast-script-"+this.id
Jast.pendingRequestByUrl[this.cacheId]=this
Jast.pendingRequestById[this.id]=this
var isHeadNotExists=(0==document.getElementsByTagName("HEAD").length);if(Jast.isPreLoad&&isHeadNotExists){Jast.Request.log.debug("Write script id: "+this.scriptId+" for request id: "+this.id)
document.write("<"+"script")
document.write(' id="'+this.scriptId+'"')
document.write(' type="text/javascript"')
document.write(' src="'+this.fullUrl+'"')
document.write("></"+"script"+">")}
else{Jast.Request.log.debug("Create script id: "+this.scriptId+" for request id: "+this.id)
script=document.createElement("script")
script.setAttribute("id",this.scriptId)
script.setAttribute("type","text/javascript")
script.setAttribute("src",this.fullUrl)
$T("head").appendChild(script)
if(this.options.timeout>0){this.setTimeout=setTimeout(this.timedOut.bind(this),this.options.timeout)
Jast.Request.log.debug("Request id: "+this.id+" setTimeout: "+this.setTimeout)}}
this.advanceTo(Jast.Request.LOADING)}
Jast.Request.prototype.loaded=function(isOk,result,caching){Claim.isBoolean(isOk,"Jast.Request.loaded.isOk")
if(this.state>=Jast.Request.LOADED){Jast.Request.log.warn("Reloaded request id: "+this.id+" isOk: "+isOk)
return}
Jast.Request.log.info("Loaded request id: "+this.id+" isOk: "+isOk)
if(this.setTimeout){clearTimeout(this.setTimeout)
Jast.Request.log.debug("Request id: "+this.id+" clearTimeout: "+this.setTimeout)
delete(this["setTimeout"])}
if(caching&&caching.expires||session){var value={isOk:isOk,result:result}
var session=caching.session
delete(caching["session"])
if(caching.expires){Jast.Request.log.debug("Cache in: "+this.cacheId+".T for "+caching.expires+"ms")
Cookies.set(this.cacheId+".T",value,caching)}
delete(caching["expires"])
if(session){Jast.Request.log.debug("Cache in: "+this.cacheId+".S for rest of session")
Cookies.set(this.cacheId+".S",value,caching)}}
this.advanceTo(Jast.Request.LOADED)
this.result=result
this.status=isOk?Jast.Request.SUCCESS:Jast.Request.FAILURE
var status=this.status
this.usedBy.each(function(request){request.result=result
request.status=status})
if(!Jast.isPreLoad)
this.complete()}
Jast.Request.prototype.timedOut=function(){if(this.state>=Jast.Request.LOADED){Jast.Request.log.warn("Retimedout request id: "+this.id)
return}
Jast.Request.log.info("Timedout request id: "+this.id)
this.advanceTo(Jast.Request.LOADED)
this.status=Jast.Request.TIMEOUT
this.usedBy.each(function(request){request.status=Jast.Request.TIMEOUT})
this.complete()}
Jast.Request.prototype.complete=function(){Jast.Request.log.debug("Complete request id: "+this.id)
this.advanceTo(Jast.Request.INTERACTIVE)
this.dispatchUsed("on"+Jast.Request.statusNames[this.status])
this.advanceTo(Jast.Request.COMPLETE)
delete(Jast.pendingRequestByUrl[this.cacheId])
delete(Jast.pendingRequestById[this.id])
this.usedBy.each(function(request){delete(Jast.pendingRequestById[request.id])})
if(this.scriptId){Jast.Request.log.debug("Remove script id: "+this.scriptId+" for request id: "+this.id)
var script=$I(this.scriptId)
script.parentNode.removeChild(script)}}
Jast.Request.prototype.advanceTo=function(state){Claim.isNumber(state,"Jast.Remove.advanceTo.state")
Claim.isTrue(0<=state&&state<=Jast.Request.COMPLETE,"Jast.Remove.advanceTo.state")
while(this.state<state){var nextState=this.state++
this.dispatch("on"+Jast.Request.stateNames[this.state])
this.usedBy.each(function(request){request.advanceTo(nextState)})}}
Jast.Request.prototype.dispatch=function(event){Claim.isString(event,"Jast.Request.dispatch.event")
Jast.Request.log.debug("Dispatch event: "+event+" for request id: "+this.id)
if(this.options[event]){try{this.options[event](this)}
catch(e){Jast.Request.log.warn("Exception in "+event+" for request id: "+request.id+" exception: "+e.message);}}
Jast.Responders.dispatch(event,this)}
Jast.Request.prototype.dispatchUsed=function(event){Claim.isString(event,"Jast.Responders.dispatchUsed.event")
Jast.Request.log.debug("DispatchUsed event: "+event+" for request id: "+this.id)
this.dispatch(event)
this.usedBy.each(function(request){request.dispatchUsed(event)})}
Jast.Responders={}
Jast.Responders.responders=[]
Jast.Responders._each=function(iterator){Claim.isObject(iterator,"Jast.Responders._each.iterator")
this.responders._each(iterator)}
Jast.Responders.register=function(responderToAdd){Claim.isObject(responderToAdd,"Jast.Request.register.responderToAdd")
if(!this.include(responderToAdd))
this.responders.push(responderToAdd)}
Jast.Responders.unregister=function(responderToRemove){Claim.isObject(responderToRemove,"Jast.Responders.unregister.responderToRemove")
this.responders=this.responders.without(responderToRemove)}
Jast.Responders.dispatch=function(event,request){Claim.isString(event,"Jast.Responders.dispatch.event")
Claim.isObject(request,"Jast.Responders.dispatch.request")
Claim.isNumber(request.id,"Jast.Responders.dispatch.request.id")
this.log.debug("Dispatch event "+event+" for request id: "+request.id)
this.each(function(responder){if(responder[event]){try{responder[event](request)}
catch(e){this.log.warn(" Exception in "+event+" for request id: "+request.id+" exception: "+e.message);}}})}
Jast.Responders.preLoad=function(){Jast.Responders.log=new Log4Js.Logger("Jast.Responders")}
Object.extend(Jast.Responders,Enumerable)
PreLoad.actions.push(Jast.Responders.preLoad)
Jast.Responders.register({onCreate:function(){Jast.activeRequestCount++
Jast.Responders.log.debug("Active requests up to "+Jast.activeRequestCount)
Claim.isTrue(Jast.activeRequestCount>=1,"Jast.Responders.activeRequestCount")},onComplete:function(){Jast.activeRequestCount--
Jast.Responders.log.debug("Active requests down to "+Jast.activeRequestCount)
Claim.isTrue(Jast.activeRequestCount>=0,"Jast.Responders.activeRequestCount")}})
$A(PreLoad.actions).each(function(action){action()})//::: UserAccount 00:00:00.0156255

Object.extend(Class,{isInheritable:function(parentClassName){if(!parentClassName)return false;var parentClass;switch(typeof(parentClassName)){case"function":parentClass=parentClassName;parentClassName=parentClass.toString();return(!parantClassName.match(/function\(/gi)&&window[parentClassName]!=null&&window[parentClassName]==eval(parentClassName));case"string":try{parentClass=eval(parentClassName);}catch(ex){return false;}
return(parentClass!=null&&typeof(parentClass)=='function');default:return false;}},createSubclass:function(parentClassName){var parentClass;if(!Class.isInheritable(parentClassName))
throw"Illegal parameter for Class.createSubclass:"+parentClassName+". Class.create accepts a valid class-name as string, or a reference to the class if the class has a static override for the toString(), providing its class name as string.";if(typeof(parentClassName)=='string'){parentClass=eval(parentClassName);}else{parentClass=parentClass;parentClassName=parentClass.toString();}
Claim.isString(parentClassName,"Class.createSubclass(parentClassName)");Claim.check(typeof(parentClass)=='function'&&typeof(parentClass.prototype.initialize)=='function',"typeof(eval(parentClassName).prototype.initialize) == 'function'","Class.createSubclass(parentClassName): parentClassName is not inheritable using the createSubclass mechanizm.");var f=new Function(parentClassName+".prototype.initialize.apply(this, arguments);\n"
+"this.initialize.apply(this, arguments)");return f;}});Object.extend(Claim,{isFunction:function(object,comment)
{{Claim.check(typeof(object)=='function',"isFunction("+Claim.valueType(object)+")",comment)}}});Object.extend(Element,{log:new Log4Js.Logger("Element"),setText:function(e,sText){var tag=e.tagName.toUpperCase();switch(tag){case"INPUT":case"TEXTAREA":e.value=sText;break;case"SELECT":e.value=sText;break;default:try{e.innerHTML=sText;}catch(ex){try{if(typeof e.innerText=='undefined')
e.textContent=sText;else
e.innerText=sText;}catch(ex){this.log.error("Element.setText: failed to set to element the text: "+sText);}}}}});Serialize=function(obj){if(!obj)return'null';var str='';var psik='';for(each in obj){str+=psik;psik=",";str+=each+":"
switch(typeof(obj[each])){case'function':break;case'object':str+=Serialize(obj[each]);break;case'string':str+='"'+obj[each].replace(/\"/,"\"")+'"';break;default:str+=obj[each];}}
return"{"+str+"}";}
Function.prototype.insert=function(sCodeLine){var a=this.toString().split("{");a[1]="\n\t"+sCodeLine+a[1];return(eval("a = "+a.join("{")));}
Glossary={_terms:{},addPair:function addPair(key,value){this._terms[key]=value;},term:function term(key){return this._terms[key];}};Glossary.addPair('{JAST_REQUEST_TIMEOUT_DEF_MSG}','Problems connecting to the server.');Glossary.addPair('{JAST_REQUEST_REFUSED_DEF_MSG}','Server failes the request');function ask(){var s='';while(s!="STOP"){s=prompt('To close - enter "STOP"',s);if(s=="STOP")return;alert(eval(s));}}
function CreateHiddenInput(sName,sValue)
{var input=document.createElement("input");input.setAttribute("type","hidden");input.setAttribute("name",sName);input.setAttribute("value",sValue);return input;}
function PostIframeRequest(form,callback){var parts=window.location.hostname.split(".");document.domain=parts[parts.length-2]+"."+parts[parts.length-1];var remotingDiv=document.createElement("div");document.body.appendChild(remotingDiv);remotingDiv.id="remotingDiv";remotingDiv.innerHTML="<iframe name='remotingFrame' id='remotingFrame' style='border:0;width:0;height:0;'></iframe>";remotingDiv.iframe=document.getElementById('remotingFrame');remotingDiv.form=form;remotingDiv.form.setAttribute('target','remotingFrame');remotingDiv.form.target='remotingFrame';remotingDiv.appendChild(remotingDiv.form);remotingDiv.callback=callback;remotingDiv.form.submit();}
function InvokeCallback(returnStatus){try
{document.getElementById('remotingDiv').callback(returnStatus);}
catch(ex){}}
if(!window.UA)UA={};UA.UserUtils=Class.create();UA.UserUtils.prototype.Callback;UA.UserUtils.DoLogIn=function(tickInterval,numOfTicks,callback,paramsList){UA.UserUtils.prototype.Callback=callback;UserLogIn();UA.UserUtils.runPolling(tickInterval,numOfTicks,paramsList);}
UA.UserUtils.DoLogOut=function(callback){UserLogOut();}
UA.UserUtils.DoRegister=function(callback){UserRegister();}
UA.UserUtils.DoEndGameFlow=function(launcherObjects){EndGameFlow(launcherObjects);}
UA.UserUtils.runPolling=function(tickInterval,numOfTicks,paramsList){var funcStringBuilder="UA.UserUtils.polling("+tickInterval+","+numOfTicks;if(paramsList!=null&&paramsList!=undefined)
funcStringBuilder+=(",'"+paramsList+"')");else
funcStringBuilder+=")";setTimeout(funcStringBuilder,tickInterval);}
UA.UserUtils.polling=function(tickInterval,numOfTicks,paramsList){if(numOfTicks==0)
{UA.UserUtils.prototype.Callback("User is still Logged off.");return;}
if(!UA.User.prototype.IsLoggedOn())
{numOfTicks=numOfTicks-1;UA.UserUtils.runPolling(tickInterval,numOfTicks,paramsList);return;}
UA.UserUtils.InitializeUA(UA.UserUtils.prototype.Callback,paramsList);}
UA.UserUtils.InitializeUA=function(callback,paramsList){var methodsArr=new Array(UA.User.Methods.ISSUBSCRIBED,UA.User.Methods.GETUSER,UA.User.Methods.HASFREETRIAL,UA.User.Methods.GET_OBERON_CLIENT_USERID,UA.User.Methods.GET_PARTNER_PROGRAM_ID);if(paramsList==undefined)
paramsList=null;else
methodsArr.push(UA.User.Methods.ISAUTHORIZED);UA.UserUtils.prototype.Callback=callback;UA.User.prototype.GetData(methodsArr,paramsList,InitializeUASuccess,InitializeUAFail,InitializeUATimeout);}
function InitializeUASuccess(request){var user={};user.IsSuccessful=true;user.IsCompleted=true;if(request.IsAuthorized!=undefined){if(request.IsAuthorized.Status!="ACCOUNT_ERROR")
user.IsAuthorized=request.IsAuthorized.Data.isAuthorized;else
user.IsCompleted=false;}
if(request.IsSubscribed.Status!="ACCOUNT_ERROR")
user.IsSubscribed=(request.IsSubscribed.Data.isSubscribed=="True")?true:false;else
user.IsCompleted=false;if(request.HasFreeTrial.Status!="ACCOUNT_ERROR")
user.HasFreeTrial=(request.HasFreeTrial.Data.hasFreeTrial=="True")?true:false;else
user.IsCompleted=false;if(request.GetOberonClientUserId.Status!="ACCOUNT_ERROR")
user.OberonClientUserId=request.GetOberonClientUserId.Data.userGuid;else
user.IsCompleted=false;if(request.GetPartnerProgramId.Status!="ACCOUNT_ERROR")
user.PartnerProgramId=request.GetPartnerProgramId.Data.ProgramId;else
user.IsCompleted=false;if(request.GetBasicUserDetails.Status!="ACCOUNT_ERROR"){user.Nickname=request.GetBasicUserDetails.Data.Nickname;user.AvatarURL=request.GetBasicUserDetails.Data.AvatarURL;user.AvatarName=request.GetBasicUserDetails.Data.AvatarName;}
else
user.IsCompleted=false;UA.UserUtils.prototype.Callback(user);}
function InitializeUAFail(request){var user={};user.IsSuccessful=false;user.ErrorMessage=request.Status;UA.UserUtils.prototype.Callback(user);}
function InitializeUATimeout(request){var user={};user.IsSuccessful=false;user.ErrorMessage="Timeout";UA.UserUtils.prototype.Callback(user);}
UA.daysToDate=function(){var i,arr=[];for(i=0;i<arguments.length;i++)
arr[i]=new Date(arguments[i]*86400000);return arr;}
if(!window.UA)UA={};UA.Request=Class.create();UA.Request.STATUS_OK="OK";UA.Request.STATUS_GENERAL_ERROR="GENERAL_ERROR";UA.Request.toString=function(){return"UA.Request";}
UA.Request.AsPrototype=function(){return new UA.Request({},new Function());}
UA.Request.prototype.initialize=function(oBoss,fSuccessCallback,fFailCallback,fTimeoutCallback){this.log=Object.extend({},this.log);this.boss=this.log.boss=oBoss;this.successCallbacks=[];this.failiorCallbacks=[];this.timeoutCallbacks=[];Claim.isFunction(fSuccessCallback,"fSuccessCallback not provided in constructor for: "+this.toString());this.successCallbacks.push(fSuccessCallback);if(!fFailCallback)fFailCallback=oBoss.defaultOnFailior;if(typeof(fFailCallback)=='function')this.failiorCallbacks.push(fFailCallback);if(!fTimeoutCallback)fTimeoutCallback=oBoss.defaultOnTimeout;if(typeof(fTimeoutCallback)=='function')this.timeoutCallbacks.push(fTimeoutCallback);this.parameters={};}
UA.Request.prototype.log={emit:function(iLevel,sText){if(this.boss.log&&typeof(this.boss.log.emit)=='function'){this.boss.log.emit(iLevel,sText);}else
this.log.error("Cannot log for caller-object: "+this.boss.toString()+". Level: "+iLevel+", Message: "+sText);},fatal:function(sText){this.emit(Log4Js.FATAL,sText);},error:function(sText){this.emit(Log4Js.ERROR,sText);},warn:function(sText){this.emit(Log4Js.WARN,sText);},info:function(sText){this.emit(Log4Js.INFO,sText);},debug:function(sText){this.emit(Log4Js.DEBUG,sText);},log:new Log4Js.Logger("UA.Request.log"),boss:null,toString:function(){return"UA.Request.log";}}
UA.Request.prototype.url="UNSET-VALUE";UA.Request.prototype.isSent=false;UA.Request.prototype.dispatch=function request_Dispatch(retObj,arrHandlers,sEventName){if(arrHandlers.length==0){this.log.info(sEventName+' from '+this.toString()+' contained no handlers.');return;}
this.log.info('Dispatching '+sEventName+' from '+this.toString());var i,cb;for(i=0;i<arrHandlers.length;i++){cb=arrHandlers[i];if(cb&&typeof(cb)=='function'){cb.call(this.boss,retObj,this.parameters);}}}
UA.Request.prototype.toString=function(){return"[UA.Request("+this.id+")] of "+this.boss.toString();}
UA.Request.prototype.onSuccess=function(request){this.dispatch(request.result.Data,this.successCallbacks,"onSuccess");}
UA.Request.prototype.onFailure=function(request){this.log.error("Failed on request of: "+this.boss.toString()+" to url: "+this.urlWithParams+", Status: "+request.result.Status);this.dispatch(request.result,this.failiorCallbacks,"onFailure");}
UA.Request.prototype.onTimeout=function(request){this.log.error("Timeout on request of: "+this.boss.toString()+" to url: "+this.urlWithParams);this.dispatch(request,this.timeoutCallbacks,"onTimeout");}
UA.Request.prototype.apply=function(){if(this.isSent)
return;this.isSent=true;if(Clearance.level>=Clearance.UNCLASSIFIED)
this.parameters.cookieData=Clearance.getMagic(Clearance.UNCLASSIFIED);var url=Url.appendParams(this.url,this.parameters);this.urlWithParams=url;this._JAST=new Jast.Request(url,this);}
var EMPTY_RESULT="EMPTY_RESULT";window.OK="OK";if(!window.UA)UA={};UA.Game=Class.create();UA.Game.Requests=[];UA.Game.Methods={GAMEHIGHSCORES:"GetGameHighScores",USERSCORE:"GetUserScoreData",SESSION_CERT:"GetSingleSessionCert",GRACE_CERTS:"GetGraceCerts",GETGAMEEVERHIGHSCORES:"GetGameEverHighScores",GETGAMEWEEKLYHIGHSCORES:"GetGameWeeklyHighScores",GETGAMEHOURLYHIGHSCORES:"GetGameHourlyHighScores"}
UA.Game.Scores={};UA.Game.Scores.Periods={};UA.Game.Scores.Periods.WEEK="WEEK";UA.Game.Scores.Periods.HOUR="HOUR";UA.Game.Scores.Periods.EVER="EVER";UA.Game.Avatar={};UA.Game.Avatar.Size={};UA.Game.Avatar.Size.Size150x200="Size150x200";UA.Game.Avatar.Size.Size65x87="Size65x87";UA.Game.Avatar.Size.Size86x115="Size86x115";UA.Game.Avatar.Size.Size98x131="Size98x131";UA.Game.Avatar.Size.Size124x165="Size124x165";UA.Game.Avatar.Size.Size24x24="Size24x24";UA.Game.Avatar.Size.Size48x48="Size48x48";UA.Game.prototype.SEND_GAME_DATA_POST_URL="UNSET_VALUE";UA.Game.prototype.isCachedResponse=false;UA.Game.prototype.initialize=function(p_sku){this._prv={Sku:p_sku,scores:{}};this.log=new Log4Js.Logger(this.toString())
this.log.info("UA.Game("+p_sku+") initiated.");}
UA.Game.GameRequest=Class.createSubclass("UA.Request");UA.Game.GameRequest.prototype=UA.Request.AsPrototype()
UA.Game.GameRequest.prototype.initialize=function gameCtor(oGame,fSuccessCallback,fFailCallback,fTimeoutCallback){if(oGame.isCachedResponse){this.url=this.boss.USER_CACHED_HANDLER_URL}else{this.url=this.boss.PRIME_HANDLER_URL;}
this.parameters={Sku:oGame._prv.Sku,Period:"",Mode:""};}
UA.Game.prototype.getGameRequest=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.Game.GameRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.id=UA.Game.Requests.length;UA.Game.Requests[r.id]=r;return r;}
UA.Game.prototype.defaultOnFailior=null;UA.Game.prototype.defaultOnTimeout=null;UA.Game.prototype.toString=function gameToString(){return"[UI.Game("+this._prv.Sku+")]";}
UA.Game.prototype.GetUserHighScore=function(iMode,fSuccess,fFailure,fTimeout){if(iMode==null||isNaN(iMode))iMode=0;var r=this.getGameRequest(fSuccess,fFailure,fTimeout);r.parameters.Mode=iMode;r.parameters.MethodName=UA.Game.Methods.USERSCORE;r.apply();return r;}
UA.Game.prototype.GetSingleSessionCert=function(iMode,fSuccess,fFailure,fTimeout){var r=this.getGameRequest(fSuccess,fFailure,fTimeout);r.parameters.methodName=UA.User.Methods.GETDATA;r.parameters.MethodList=UA.Game.Methods.SESSION_CERT;r.apply();return r;}
UA.Game.prototype.GetGraceCerts=function(iMode,fSuccess,fFailure,fTimeout){var r=this.getGameRequest(fSuccess,fFailure,fTimeout);r.parameters.MethodName=UA.User.Methods.GETDATA;r.parameters.MethodList=UA.Game.Methods.GRACE_CERTS;r.apply();return r;}
UA.Game.prototype.GetGameHighScores=function(iMode,iAmount,ePeriod,fSuccess,fFail,fTimeout,eSize){var r=this.getGameRequest(fSuccess,fFail,fTimeout);r.parameters.Mode=iMode;r.parameters.TopScores=iAmount;r.parameters.Period=ePeriod;if(eSize==null||eSize==undefined)
delete r.parameters.Size;else
r.parameters.Size=eSize;r.parameters.MethodName=UA.Game.Methods.GAMEHIGHSCORES;r.apply();}
UA.Game.prototype.SendGameData=function(gameData,callback){var formSendGameData=document.createElement("form");formSendGameData.setAttribute("method","POST");formSendGameData.setAttribute("action",UA.Game.prototype.SEND_GAME_DATA_POST_URL);formSendGameData.appendChild(CreateHiddenInput("GameData",gameData));formSendGameData.appendChild(CreateHiddenInput("channel",UA.CHANNEL));PostIframeRequest(formSendGameData,callback);}
if(!window.UA)UA={};UA.StaticUser=Class.create();UA.User=Class.create();UA.User.Requests=[];UA.User.Methods={GETUSERDETAILS:"GetUserDetails",GETALLSCORES:"GetAllScores",GETUSERGAMES:"GetUserGames",HASFREETRIAL:"HasFreeTrial",ISSUBSCRIBED:"IsSubscribed",ISAUTHORIZED:"IsAuthorized",GETCURRENTPERMITTEDSKUS:"GetCurrentPermittedSKUs",GETPLANNEDPERMITTEDSKUS:"GetPlannedPermittedSKUs",GETPACKAGEEXPIRATIONUTCDATE:"GetPackageExpirationUTCDate",ISNICKNAMEAVAILABLE:"IsNicknameAvailable",GETAVATARXML:"GetAvatarXml",GETWARDROBEXML:"GetWardrobeXml",ISUSERNAMEAVAILABLE:"IsUsernameAvailable",ISCAPTCHAMATCH:"IsCaptchaMatch",GETUSERTOKENS:"GetUserTokens",GETUSERLOGINDAYS:"GetUserLoginDays",GETHIGHESTMEDAL:"GetHighestMedal",GETPERSONADATABYNICKNAME:"GetPersonaDataByNickname",GETDATA:"GetData",GET_OBERON_CLIENT_USERID:"GetOberonClientUserId",GET_PARTNER_PROGRAM_ID:"GetPartnerProgramId"}
UA.User.USER_HANDLER_URL="UNSET-VALUE";UA.User.POST_DATA_REDIRECT_URL="UNSET-VALUE";UA.User.LOGGED_IN="LoggedIn";UA.User.ANONYMOUS="Anonymous";UA.User.prototype.initialize=function(){this.log=new Log4Js.Logger("[UA.User]");this.params={};}
UA.User.prototype.IsLoggedOn=function(dontReloadCookies){if(dontReloadCookies==undefined||dontReloadCookies==false)
Clearance.refresh();return Clearance.hasUnclassified();}
UA.User.prototype.isGuest=function(dontReloadCookies){return(!UA.User.prototype.IsLoggedOn(dontReloadCookies)||Clearance.isGuest());}
UA.User.prototype.LogOff=function(){Clearance.forget(Url.relativeUrl({withClearanceParams:false,withHereParams:true}));}
UA.User.prototype.getCookieData=function(isEscaped){var cookieData=Clearance.getMagic(Clearance.UNCLASSIFIED);if(isEscaped)
cookieData=escape(cookieData);return cookieData;}
UA.User.UserRequest=Class.createSubclass("UA.Request");UA.User.UserRequest.prototype=UA.Request.AsPrototype()
UA.User.UserRequest.prototype.initialize=function userReqCTor(oUser,fSuccessCallback,fFailCallback,fTimeoutCallback){var curUrl=this.boss.USER_HANDLER_URL;if((oUser.params.isSecured)&&(curUrl.indexOf('HTTPS')==-1)&&(curUrl.indexOf('https')==-1))
curUrl=curUrl.replace('HTTP','HTTPS').replace('http','https');this.url=curUrl;delete oUser.params.isSecured;this.boss=this.log.boss=oUser;this.parameters=Object.extend({},this.boss.params);}
UA.User.UserRequest.prototype.addParameter=function(key,val){this.parameters[key]=val;}
UA.User.prototype.GetUserDetails=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERDETAILS;r.apply();}
UA.User.prototype.GetUserGames=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERGAMES;r.apply();}
UA.User.prototype.IsNicknameAvailable=function(sNickname,sLanguage,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.Nickname=sNickname;r.parameters.Language=sLanguage;r.parameters.methodName=UA.User.Methods.ISNICKNAMEAVAILABLE;r.apply();}
UA.User.prototype.IsUsernameAvailable=function(sUsername,sLanguage,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.Username=sUsername;r.parameters.Language=sLanguage;r.parameters.methodName=UA.User.Methods.ISUSERNAMEAVAILABLE;r.apply();}
UA.User.prototype.IsCaptchaMatch=function(sUsername,sRandomNum,sCaptchaUserText,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.username=sUsername;r.parameters.randomNum=sRandomNum;r.parameters.captchaUserText=sCaptchaUserText;r.parameters.methodName=UA.User.Methods.ISCAPTCHAMATCH;r.apply();}
UA.User.prototype.GetAvatarXml=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETAVATARXML;r.apply();}
UA.User.prototype.GetWardrobeXml=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETWARDROBEXML;r.apply();}
UA.User.prototype.GetUserTokens=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERTOKENS;r.apply();}
UA.User.prototype.GetUserLoginDays=function(fSuccessCallback,fFailCallback,fTimeoutCallback){if(this.isGuest()){var data={};data.Status="ACCOUNT_NOT_CREATED";fFailCallback(data);return;}
var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERLOGINDAYS;r.apply();}
UA.User.prototype.GetHighestMedal=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETHIGHESTMEDAL;r.apply();}
UA.User.prototype.GetPersonaDataByNickname=function(nickname,avatarSize,sku,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);if(nickname!=null)
r.parameters.Nickname=encodeURIComponent(nickname);r.parameters.AvatarSize=avatarSize;r.parameters.Sku=sku;r.parameters.methodName=UA.User.Methods.GETPERSONADATABYNICKNAME;r.apply();}
UA.User.prototype.GetPersonaData=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETPERSONADATABYNICKNAME;r.apply();}
UA.User.prototype.GetCaptchaUrl=function(username,randomNum){var url;url=UA.User.prototype.CAPTCHA_IMAGE_URL;url=Url.appendParamValue(url,"username",username);url=Url.appendParamValue(url,"randomNum",randomNum);return url;}
UA.User.ReportAbuse=function(abusingNickname,description,utcTime,retURL){var formReportAbuse=document.createElement("form");formReportAbuse.setAttribute("method","POST");formReportAbuse.setAttribute("action",UA.User.POST_DATA_REDIRECT_URL);cookieData=Clearance.getMagic(Clearance.UNCLASSIFIED);formReportAbuse.appendChild(CreateHiddenInput("cookieData",cookieData));formReportAbuse.appendChild(CreateHiddenInput("abusingNickname",abusingNickname));formReportAbuse.appendChild(CreateHiddenInput("description",description));formReportAbuse.appendChild(CreateHiddenInput("utcTime",utcTime));formReportAbuse.appendChild(CreateHiddenInput("retUrl",retURL));formReportAbuse.appendChild(CreateHiddenInput("failUrl",Url.here.full));formReportAbuse.appendChild(CreateHiddenInput("methodName","ReportAbuse"));formReportAbuse.appendChild(CreateHiddenInput("channel",UA.CHANNEL));document.body.insertBefore(formReportAbuse,null);formReportAbuse.submit();}
UA.User.prototype.defaultOnFailior=null;UA.User.prototype.defaultOnTimeout=null;UA.User.prototype.toString=function(){return"[User: "+this.Nickname+"]";}
UA.User.prototype.getUserRequest=function(fSuccessCallback){var r=new UA.User.UserRequest(this,fSuccessCallback);r.id=UA.User.Requests.length;UA.User.Requests[r.id]=r;return r;}
UA.User.prototype.GetData=function(methodsArr,paramsList,fSuccessCallback,fFailCallback,fTimeoutCallback){if(methodsArr.length==0){return;}
var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETDATA;var methodsStr=methodsArr[0];for(var i=1;i<methodsArr.length;i++)
{methodsStr+=(","+methodsArr[i]);}
r.parameters.MethodList=methodsStr;if(paramsList!=null)
{var paramsArr=paramsList.split(",");for(var i=0;i<paramsArr.length;i++)
{var kNv=paramsArr[i].split(":");r.addParameter(kNv[0],kNv[1]);}}
r.apply();}
UA.User.prototype.getCachedData=function(fSuccessCallback,fFailCallback,fTimeoutCallback)
{UA.User.prototype.getCachedData.CACHED_DATA_COOKIE_NAME='uaCachedData';this.getCachedData_OnSuccess=fSuccessCallback;this.log.debug('getCachedData - Searching for cached data in cookie.');this.cachedData=Cookies.get(UA.User.prototype.getCachedData.CACHED_DATA_COOKIE_NAME);if(this.cachedData!=undefined&&this.cachedData!=null)
{this.log.debug('getCachedData - Cached data found in cookie.');this.getCachedData_OnSuccess(this.cachedData);}
else
{this.log.debug('getCachedData - No cached data in cookie. Retreiving data from server.');this.GetUserDetails(UA.User.prototype.getCachedData_OnSuccess,fFailCallback,fTimeoutCallback);}}
UA.User.prototype.getCachedData_OnSuccess=function(userDetails)
{this.cachedData={};this.cachedData.gender=userDetails.gender;this.cachedData.birthYear=parseInt(userDetails.birthYear);this.cachedData.zipCode=parseInt(userDetails.zipCode);this.log.debug('getCachedData - Writing cached data in cookie.');Cookies.set(UA.User.prototype.getCachedData.CACHED_DATA_COOKIE_NAME,this.cachedData,{expires:Cookies.expiration(86400000)});this.getCachedData_OnSuccess(this.cachedData);}
UA.User.prototype.PostData=function(methodName){var form=document.createElement("form");form.setAttribute("method","POST");form.setAttribute("action",UA.User.POST_DATA_REDIRECT_URL);form.appendChild(CreateHiddenInput("methodName",methodName));if(this.params!=null)
for(var paramName in this.params)
form.appendChild(CreateHiddenInput(paramName,this.params[paramName]));document.body.insertBefore(form,null);form.submit();}//::: UserAccount Channel=11040857 00:00:00.0156255
try{
  UA.Game.prototype.PRIME_HANDLER_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/ProcessJAccount.ashx?channel=11040857';
  UA.Game.prototype.SEND_GAME_DATA_POST_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/SendGameData.ashx';
  UA.User.POST_DATA_REDIRECT_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/PostData.ashx';
  UA.User.prototype.USER_HANDLER_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/ProcessJAccount.ashx?channel=11040857';
  UA.User.prototype.USER_LOGIN_REDIRECT_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/LoginRedirect.ashx';
  UA.User.prototype.SAVE_AVATAR_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/SetAvatar.ashx';
  UA.User.prototype.GET_AVATAR_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/1900.1/APP/AvatarXML.ashx';
  UA.Game.prototype.USER_CACHED_HANDLER_URL = 'http://userassets.apizone.betaregion.oberon-media.com/UserAccount/Processing/1900.1/APP/ProcessJAccount.ashx?channel=11040857';
  UA.User.prototype.GET_CACHED_AVATAR_URL = 'http://userassets.apizone.betaregion.oberon-media.com/UserAccount/Processing/1900.1/APP/AvatarXML.ashx';
  UA.UserUtils.IFrameLoginURL = '';
  UA.CHANNEL = 11040857;
}
catch (e) {}
//::: GameCatalog Code 00:00:00.0312510

Function.prototype.getArgNamesArray=function(){try{return/function[^\(]*\(([^\)]*)\)/.exec(this.toString())[1].replace(/\s*/g,"").split(",");}catch(ex){return[];}}
Array.prototype.cut=function(iStart,iCount)
{var iEnd=undefined;if(iStart==undefined)iStart=0;iEnd=(iCount==undefined)?this.length:iStart+iCount;return this.slice(iStart,iEnd);}
Array.prototype.page=function(iPage,iItemsInPage)
{return this.cut(iPage*iItemsInPage,iItemsInPage);}
if(window.GameCatalog==null)
GameCatalog={};GameCatalog.PRODUCT_CODE_VARNAME="code";GameCatalog.LANGUAGE_VARNAME="lc";GameCatalog.CHANNEL_VARNAME="channel";GameCatalog.BILLING_CNTRY_VARNAME="BillingCountry";GameCatalog.LOBBY_VARNAME="lobby";GameCatalog.language="";GameCatalog.channelCode=-1;GameCatalog.baseBuyURL="";GameCatalog.baseGamePageURL="";GameCatalog.baseLobbyURL="";GameCatalog.billingCountry="";GameCatalog.millisPerDay=24*60*60*1000;GameCatalog.TagSkuLinks=function()
{this.initialize();var e,a=new Array()
for(e in this)a[e]=this[e];for(e=0;e<arguments.length;e++)a[e]=arguments[e];return a;}
GameCatalog.TagSkuLinks.prototype.initialize=function()
{this.dictionary={}}
GameCatalog.TagSkuLinks.prototype.byWeight=function(iStart,iCount,isForceSort)
{if(!this._byWeight||isForceSort)
{this._byWeight=this.concat().sort(function(a,b)
{return b.weight-a.weight;});}
return this._byWeight.cut(iStart,iCount);}
GameCatalog.TagSkuLinks.prototype.bySkuProperty=function(sSkuProp,isDescSort,iStart,iCount,isForceSort)
{if(!this["_sku_"+sSkuProp]||isForceSort){var orderVar=-1;if(isDescSort)
orderVar=1;this["_sku_"+sSkuProp]=this.concat().sort(function(a,b){if(b.sku[sSkuProp]==a.sku[sSkuProp])return 0;return(b.sku[sSkuProp]>a.sku[sSkuProp])?orderVar:(orderVar*(-1));});}
return this["_sku_"+sSkuProp].cut(iStart,iCount);}
GameCatalog.SkuTagLinks=function()
{this.initialize();var e,a=new Array()
for(e in this)a[e]=this[e];for(e=0;e<arguments.length;e++)a[e]=arguments[e];return a;}
GameCatalog.SkuTagLinks.prototype.initialize=GameCatalog.TagSkuLinks.prototype.initialize;GameCatalog.SkuTagLinks.prototype.byWeight=GameCatalog.TagSkuLinks.prototype.byWeight;GameCatalog.SkuTagLinks.prototype.byTagProperty=function(sTagProp,isDescSort,iStart,iCount,isForceSort)
{if(!this["_tag_"+sTagProp]||isForceSort){var orderVar=-1;if(isDescSort)
orderVar=1;var arr=this.concat().sort(function(a,b){if(b.tag[sTagProp]==a.tag[sTagProp])return 0;return(b.tag[sTagProp]>a.tag[sTagProp])?orderVar:(orderVar*(-1));});this["_tag_"+sTagProp]=arr;}
return this["_tag_"+sTagProp].cut(iStart,iCount);}
GameCatalog.Category=Class.create();GameCatalog.Category.prototype.initialize=function(code,name,internalName,categoryURL)
{var params=this.initialize.getArgNamesArray();for(var i=0;i<params.length;i++)
if(arguments[i]!==undefined)this[params[i]]=arguments[i];this.games={};this.games.All=[];this.games.All.bySkuProperty=GameCatalog.Game.All.bySkuProperty}
GameCatalog.Category.All=[];GameCatalog.Category.All.byCategoryProperty=function(sPropName,iStart,iCount,isForceSort){if(!this[0]||undefined===this[0][sPropName])
return this;if(!this["_"+sPropName]||isForceSort)
{this["_"+sPropName]=this.concat().sort(function(a,b)
{if(a[sPropName]==b[sPropName])return 0;return(a[sPropName]<b[sPropName])?-1:1;});}
return this["_"+sPropName].cut(iStart,iCount);}
GameCatalog.Category.ByCode={};GameCatalog.Game=Class.create();GameCatalog.Game.All=[];GameCatalog.Game.All.bySkuProperty=GameCatalog.Category.All.byCategoryProperty;GameCatalog.Game.All.dictionary={};GameCatalog.Game.All.BySku=GameCatalog.Game.All.dictionary;GameCatalog.Game.prototype.initialize=function(sku,name,smallThumbnail,categoryCode,productCode,lobbyUID,isMultiPlayer,thumbnail16x16,isNew,publishDate,thumbnail100x75,thumbnail179x135,thumbnail320x240,isLocalized,thumbnail130x75,downloadURL,oneThirdDesc,twoThirdsDesc,isOnline)
{if(typeof(arguments[0])=='object')arguments=arguments[0];var params=this.initialize.getArgNamesArray();for(var i=0;i<params.length;i++)
if(arguments[i]!==undefined)this[params[i]]=arguments[i];this['publishDate']=new Date(this['publishDate']*GameCatalog.millisPerDay);this['gamePageURL']=GameCatalog.Game.generateGamePageURL(this['productCode']);this['buyURL']=GameCatalog.Game.generateBuyURL(this['productCode']);this['lobbyURL']=GameCatalog.Game.generateLobbyURL(this['lobbyUID']);this.tagLinks=new GameCatalog.SkuTagLinks();}
GameCatalog.Game.prototype.getRecentGames=function(count){var isNew="isNew",pDate="publishDate";var a=GameCatalog.Game.All.bySkuProperty(isNew).concat();var arr=[];for(var i=a.length-1;i>=0;i--){if(a[i].isNew==false)
break;arr.push(a[i]);}
arr=arr.sort(function(a,b)
{if(a[pDate]==b[pDate])return 0;return(a[pDate]>b[pDate])?-1:1;});return arr.cut(0,count);}
GameCatalog.Game.addTag=function(oTag,dblWeight){if(this.tagLinks.dictionary[oTag.internalName])
return this.tagLinks.dictionary[oTag.internalName];return this.addTagLink({weight:dblWeight,tag:oTag,sku:this});}
GameCatalog.Game.prototype.addTagLink=function(oLink){if(!this.tagLinks.dictionary[oLink.tag.internalName])
this.tagLinks[this.tagLinks.length]=this.tagLinks.dictionary[oLink.tag.internalName]=oLink;if(!oLink.tag.skuLinks.dictionary[this.sku])
oLink.tag.addSkuLink(oLink);return oLink;}
GameCatalog.Tag=Class.create();GameCatalog.Tag.keyProperty="internalName";GameCatalog.Tag.propertyList="name, count";GameCatalog.Tag.prototype.initialize=function()
{if(typeof(arguments[0])=='object')args=arguments[0];this[GameCatalog.Tag.keyProperty]=args[0];var prop=GameCatalog.Tag.propertyList.replace(/\s*/g,"").split(",");this.tagPageURL=GameCatalog.URLs.tagPageURL.replace(/TAG_INTERNAL_NAME/g,args[0]);for(var i=0;i<prop.length;i++)
if(args[i+1]!==undefined)
{var val=args[i+1];if(prop[i].indexOf('Date')!=-1)
val=new Date(val*GameCatalog.millisPerDay)
this[prop[i]]=val;}
this.skuLinks=new GameCatalog.TagSkuLinks();}
GameCatalog.Tag.prototype.addSkuLink=function(oLink)
{if(!this.skuLinks.dictionary[oLink.sku.sku])
this.skuLinks.dictionary[oLink.sku.sku]=this.skuLinks[this.skuLinks.length]=oLink;if(!oLink.sku.tagLinks.dictionary[this.internalName])
oLink.sku.addTagLink(oLink);}
GameCatalog.Tag.prototype.addSku=function(sku,dblWeight){if(typeof(sku)=='number')sku=GameCatalog.Game.All.dictionary[sku];if(!sku)return;this.addSkuLink({weight:dblWeight,sku:sku,tag:this});}
GameCatalog.Tag.prototype.addSkus=function()
{var i=0;while(i<arguments.length){this.addSku(arguments[i++],arguments[i++]);}}
GameCatalog.Tag.prototype.isFullyLoaded=function()
{return this.count==this.skuLinks.length;}
GameCatalog.Tag.All=[];GameCatalog.Tag.All.byTagProperty=function(sProp,isDescSort,iStart,iCount,isForceSort)
{if(!this["_by_"+sProp]||isForceSort)
{var orderVar=-1;if(isDescSort)
orderVar=1;this["_by_"+sProp]=this.concat().sort(function(a,b)
{if((b[sProp]==a[sProp]))return 0;return(b[sProp]>a[sProp])?orderVar:(orderVar*(-1));});}
return this["_by_"+sProp].cut(iStart,iCount);}
GameCatalog.Tag.All.dictionary={}
GameCatalog.URLs={gamePageURL:'/Deluxe.aspx?code=GAME_SKU&lc=en&channel=110167437',gameImageBase:'/images/games/',buyURL:'http://Jeuxentelechargement-beta.jeu.orange.fr/Checkout.asp?code=CHECKOUT_SKU&channel=110167437&lc=fr&BillingCountry=FR',lobbyURL:'/Lobby.aspx?lobby=LOBBY_ID&channel=110167437&lc=en',categoryURL:'/Category.aspx?code=CATEGORY_CODE',tagPageURL:'/Tag.aspx?tag=TAG_INTERNAL_NAME&ln=en'};GameCatalog.addCategory=function(code,name,internalName)
{var categoryURL=GameCatalog.URLs.categoryURL.replace(/CATEGORY_CODE/g,code);var category=new GameCatalog.Category(code,name,internalName,categoryURL);GameCatalog.Category.ByCode[code]=GameCatalog.Category.All[GameCatalog.Category.All.length]=category;return category;}
GameCatalog.addGame=function(sku,name,smallThumbnail,categoryCode,productCode,lobbyUID,isMultiPlayer,thumbnail16x16,isNew,publishDate,thumbnail100x75,thumbnail179x135,thumbnail320x240,isLocalized,thumbnail130x75,downloadURL,oneThirdDesc,twoThirdsDesc,isOnline)
{var newGame=new GameCatalog.Game(sku,name,smallThumbnail,categoryCode,productCode,lobbyUID,isMultiPlayer,thumbnail16x16,isNew,publishDate,thumbnail100x75,thumbnail179x135,thumbnail320x240,isLocalized,thumbnail130x75,downloadURL,oneThirdDesc,twoThirdsDesc,isOnline)
GameCatalog.Game.All[GameCatalog.Game.All.length]=newGame;GameCatalog.Game.All.BySku[newGame.sku]=newGame;return newGame;}
GameCatalog.addTag=function(){var tag=this.Tag.All.dictionary[arguments[0]];if(tag)return tag;var newTag=new this.Tag(arguments);this.Tag.All[this.Tag.All.length]=newTag;this.Tag.All.dictionary[arguments[0]]=newTag;return newTag;}
GameCatalog.Game.generateGamePageURL=function(productCode)
{var gamePageURLBuilder=new Array();gamePageURLBuilder=gamePageURLBuilder.concat(GameCatalog.baseGamePageURL,"?",GameCatalog.PRODUCT_CODE_VARNAME,"=",productCode,"&",GameCatalog.LANGUAGE_VARNAME,"=",GameCatalog.language,"&",GameCatalog.CHANNEL_VARNAME,"=",GameCatalog.channelCode);return gamePageURLBuilder.join("");}
GameCatalog.Game.generateBuyURL=function(productCode)
{var buyURLBuilder=new Array();buyURLBuilder=buyURLBuilder.concat(GameCatalog.baseBuyURL,"?",GameCatalog.PRODUCT_CODE_VARNAME,"=",productCode,"&",GameCatalog.CHANNEL_VARNAME,"=",GameCatalog.channelCode,"&",GameCatalog.LANGUAGE_VARNAME,"=",GameCatalog.language,"&",GameCatalog.BILLING_CNTRY_VARNAME,"=",GameCatalog.billingCountry);return buyURLBuilder.join("");}
GameCatalog.Game.generateLobbyURL=function(lobbyUID)
{if(lobbyUID!="")
{var lobbyURLBuilder=new Array();lobbyURLBuilder=lobbyURLBuilder.concat(GameCatalog.baseLobbyURL,"?",GameCatalog.LOBBY_VARNAME,"=",lobbyUID,"&",GameCatalog.CHANNEL_VARNAME,"=",GameCatalog.channelCode,"&",GameCatalog.LANGUAGE_VARNAME,"=",GameCatalog.language);return lobbyURLBuilder.join("");}
return"";}//::: GameCatalog Data 00:00:00.0312510

GameCatalog.CurrentProcessing=function()
{var g=GameCatalog;var ag=g.addGame;var ac=g.addCategory;g.language="es";g.channelCode=11040857;g.baseBuyURL="https://www.oberon-media.com/checkout/commonCheckout/checkout12.htm";g.baseGamePageURL="game.htm";g.baseLobbyURL="game.htm";g.billingCountry="ES";ac(110044360,'Multijugador','MP_Texas Hold em Poker');ag(1104993,'Texas Hold ’em Poker','/images/games/texas_mp/texas_mp81x46.gif',110044360,110500140,'a0c3cfee-3ae5-4ace-8e8b-aa03a6a355e9','true','/images/games/texas_mp/texas_mp16x16.gif',false,11323,'/images/games/texas_mp/texas_mp100x75.jpg','/images/games/texas_mp/texas_mp179x135.jpg','/images/games/texas_mp/texas_mp320x240.jpg','false','/images/games/thumbnails_med_2/texas_mp130x75.gif','','El juego de póquer conocido en todo el mundo.','Disfruta de esta versión uno-a-uno del famoso juego de póquer.','true',true,true,'MP_Texas Hold em Poker');ag(1110927,'Pool: 9-ball','/images/games/9ball_mp/9ball_mp81x46.gif',110044360,111105303,'c5af9955-9104-4239-bbf5-a51eb41165e6','true','/images/games/9ball_mp/9ball_mp16x16.gif',false,11323,'/images/games/9ball_mp/9ball_mp100x75.jpg','/images/games/9ball_mp/9ball_mp179x135.jpg','/images/games/9ball_mp/9ball_mp320x240.jpg','false','/images/games/thumbnails_med_2/9ball_mp130x75.gif','','La variación del billar más famosa del mundo.','Lleva al extremo tus habilidades en el billar con 9 bolas.','true',true,true,'MP_Pool9-ball');ac(110125467,'Clásicos','Mosaic');ag(1112100,'Mosaic: Tomb of Mystery','/images/games/Mosaic/Mosaic81x46.gif',110125467,111222640,'ebf83f96-f455-48cb-9407-7290ad18213c','false','/images/games/Mosaic/mosaic16x16.gif',false,11323,'/images/games/Mosaic/Mosaic100x75.jpg','/images/games/Mosaic/Mosaic179x135.jpg','/images/games/Mosaic/Mosaic320x240.jpg','false','/images/games/thumbnails_med_2/Mosaic130x75.gif','/exe/Mosaic-setup.exe?lc=es&ext=Mosaic-setup.exe','Explora las antiguas catacumbas egipcias.','Descubre lo que se oculta tras la muerte del rey Tut.','false',false,false,'Mosaic');ac(1007,'Rompecabezas','7 Artifacts');ag(1146603,'7 Artifacts','/images/games/7_Artifacts/7_Artifacts81x46.gif',1007,114693800,'','false','/images/games/7_Artifacts/7_Artifacts16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/7_artifacts/7_artifacts320x240.jpg','false','/images/games/thumbnails_med_2/7_Artifacts130x75.gif','/exe/7_Artifacts-setup.exe?lc=es&ext=7_Artifacts-setup.exe','Empareja gemas para desencriptar un mensaje.','Desencripta un mensaje secreto para evitar una guerra entre los dioses griegos.','false',false,false,'7 Artifacts');ac(110012530,'Arcade','The Great Tree');ag(1149060,'The Great Tree','/images/games/the_great_tree/the_great_tree81x46.gif',110012530,114939720,'','false','/images/games/the_great_tree/the_great_tree16x16.gif',false,11323,'/images/games/the_great_tree/the_great_tree100x75.jpg','/images/games/the_great_tree/the_great_tree179x135.jpg','/images/games/the_great_tree/the_great_tree320x240.jpg','true','/images/games/thumbnails_med_2/the_great_tree130x75.gif','/exe/The_Great_Tree-setup.exe?lc=es&ext=The_Great_Tree-setup.exe','¡Salva a las hadas y su mundo moribundo!','¡Salva a las hadas y su mundo moribundo en esta fantástica aventura!','false',false,false,'The Great Tree');ac(110081853,'Más valorados','Diamond Mine OLT1');ag(1151867,'Diamond Mine','/images/games/diamond_mine/diamond_mine81x46.gif',110081853,115219473,'68eddcd6-2361-4f9a-89f9-61aded43f44b','false','/images/games/diamond_mine/diamond_mine16x16.gif',false,11323,'/images/games/diamond_mine/diamond_mine100x75.jpg','/images/games/diamond_mine/diamond_mine179x135.jpg','/images/games/diamond_mine/diamond_mine320x240.jpg','false','/images/games/thumbnails_med_2/diamond_mine130x75.gif','','¡Cambia tus gemas para lograr megapuntos!','Forma hileras de tres o más gemas en este adictivo acertijo.','true',true,true,'Diamond Mine OLT1');ac(110083820,'Nuevos en línea','Arctic Quest OL');ag(1152360,'Arctic Quest','/images/games/arctic_quest/arctic_quest81x46.gif',110083820,115269283,'1f1b4939-a180-45d4-b679-4818035bb6e6','false','/images/games/arctic_quest/arctic_quest16x16.gif',false,11323,'/images/games/arctic_quest/arctic_quest100x75.jpg','/images/games/arctic_quest/arctic_quest179x135.jpg','/images/games/arctic_quest/arctic_quest320x240.jpg','false','/images/games/thumbnails_med_2/arctic_quest130x75.gif','','Tienes que resolver los rompecabezas.','Tienes que resolver los rompecabezas.','true',false,false,'Arctic Quest OL');ag(1154190,'Photo Mania','/images/games/photo_mania/photo_mania81x46.gif',110012530,115454737,'','false','/images/games/photo_mania/photo_mania16x16.gif',false,11323,'/images/games/photo_mania/photo_mania100x75.jpg','/images/games/photo_mania/photo_mania179x135.jpg','/images/games/photo_mania/photo_mania320x240.jpg','false','/images/games/thumbnails_med_2/photo_mania130x75.gif','/exe/photo_mania-setup.exe?lc=es&ext=photo_mania-setup.exe','¡Abre tu propio estudio de fotografía!','Saca fotos de personas y lugares y mejora tus habilidades fotográficas.','false',false,false,'Photo Mania');ac(110119360,'Puntería','Luxor: Quest for the Afterlife');ag(1156157,'Luxor: Quest for the Afterlife','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife81x46.gif',110119360,115650680,'','false','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife16x16.gif',false,11323,'/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife100x75.jpg','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife179x135.jpg','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife320x240.jpg','true','/images/games/thumbnails_med_2/luxor_quest_for_the_afterlife130x75.gif','/exe/luxor_quest_for_the_afterlife-setup.exe?lc=es&ext=luxor_quest_for_the_afterlife-setup.exe','¡Encuentra los sagrados artefactos robados!','¡Descubre a los ladrones de los artefactos sagrados de la Reina Nefertiti!','false',false,false,'Luxor: Quest for the Afterlife');ag(1174860,'Be a King: Lost Lands','/images/games/be_a_king/be_a_king81x46.gif',110012530,117524547,'','false','/images/games/be_a_king/be_a_king16x16.gif',false,11323,'/images/games/be_a_king/be_a_king100x75.jpg','/images/games/be_a_king/be_a_king179x135.jpg','/images/games/be_a_king/be_a_king320x240.jpg','false','/images/games/thumbnails_med_2/be_a_king130x75.gif','/exe/be_a_king-setup.exe?lc=es&ext=be_a_king-setup.exe','Construye y defiende un reino medieval.','Construye y mantén tu reino medieval, defendiendo a los pueblos frente a monstruos y bandidos.','false',false,false,'Be A King');ag(1175830,'Cooking Dash: Diner Town Studios','/images/games/CookingDash_DT_studios/CookingDash_DT_studios81x46.gif',110012530,117622670,'','false','/images/games/CookingDash_DT_studios/CookingDash_DT_studios16x16.gif',false,11323,'/images/games/CookingDash_DT_studios/CookingDash_DT_studios100x75.jpg','/images/games/CookingDash_DT_studios/CookingDash_DT_studios179x135.jpg','/images/games/CookingDash_DT_studios/CookingDash_DT_studios320x240.jpg','false','/images/games/thumbnails_med_2/CookingDash_DT_studios130x75.gif','/exe/cooking_dash_diner_town-setup.exe?lc=es&ext=cooking_dash_diner_town-setup.exe','Luces, cámara, ¡a cocinar! ¡Comida rápida en escena!','Luces, cámara, ¡a cocinar! ¡Alimenta el ego y el estómago de un reparto de locura!','false',false,false,'Cooking Dash Diner Town');ag(1176780,'Treasures of The Serengeti','/images/games/treasures_of_serengeti/treasures_of_serengeti81x46.gif',1007,117718267,'','false','/images/games/treasures_of_serengeti/treasures_of_serengeti16x16.gif',false,11323,'/images/games/treasures_of_serengeti/treasures_of_serengeti100x75.jpg','/images/games/treasures_of_serengeti/treasures_of_serengeti179x135.jpg','/images/games/treasures_of_serengeti/treasures_of_serengeti320x240.jpg','false','/images/games/thumbnails_med_2/treasures_of_serengeti130x75.gif','/exe/treasures_of_the_serengeti-setup.exe?lc=es&ext=treasures_of_the_serengeti-setup.exe','¡Restaura el Serengeti en este rompecabezas de combinaciones!','Embárcate en una aventura musical única en la que combinaciones y rompecabezas coinciden.','false',false,false,'Treasures of The Serengeti');ac(110109903,'Adrenalina','Air Strike 3D');ag(11008330,'Air Strike 3D','/images/games/air_Strike/air_Strike81x46.gif',110109903,110089733,'','false','/images/games/air_Strike/air_Strike16x16.gif',false,11323,'/images/games/air_Strike/air_Strike100x75.jpg','/images/games/air_Strike/air_Strike179x135.jpg','/images/games/air_Strike/air_Strike320x240.jpg','false','/images/games/thumbnails_med_2/air_Strike130x75.gif','/exe/Air_Strike_3D-Setup.exe?lc=es&ext=Air_Strike_3D-Setup.exe','¡Enfréntate a la amenaza terrorista en tu helicóptero!','¡Dirige diez helicópteros sobre territorio enemigo y acaba con los terroristas!','false',false,false,'Air Strike 3D');ag(11015843,'Ricochet Lost Worlds','/images/games/ricochetlostworlds/ricochetlostworlds81x46.jpg',110012530,110164187,'','false','/images/games/ricochetlostworlds/ricochetlostworlds16x16.gif',false,11323,'/images/games/ricochetlostworlds/ricochetlostworlds100x75.jpg','/images/games/ricochetlostworlds/ricochetlostworlds179x135.jpg','/images/games/ricochetlostworlds/ricochetlostworlds320x240.jpg','false','/images/games/thumbnails_med_2/richchetLostWorlds130x75.gif','/exe/ricochet_lost_worlds-setup.exe?lc=es&ext=ricochet_lost_worlds-setup.exe','¡160 niveles de enloquecedora destrucción de ladrillos!','¡La secuela de Ricochet Xtreme, ahora con 160 niveles llenos de ladrillos que destruir!','false',false,false,'RicochetLostWorlds');ag(11028163,'Reversi','/images/games/reversi_mp/reversi_mp81x46.gif',110044360,110288360,'3ae5015c-5059-40b8-bf8a-1344b353bee9','true','/images/games/reversi_mp/reversi_mp16x16.gif',false,11323,'/images/games/reversi_mp/reversi_mp100x75.jpg','/images/games/reversi_mp/reversi_mp179x135.jpg','/images/games/reversi_mp/reversi_mp320x240.jpg','false','/images/games/thumbnails_med_2/reversi_mp130x75.gif','','¡Gana este juego clásico de tablero con táctica y estrategia!','La estrategia es fundamental en este clásico de tablero que se tarda un minuto en aprender pero toda una vida en dominar.','true',true,true,'MP_Reversi');ag(11028247,'Cubis Gold 2','/images/games/cubisgold2/cubisgold281x46.gif',1007,110289377,'4796622c-0a98-488e-951c-bb28c45b2ccf','false','/images/games/cubisgold2/cubisgold216x16.gif',false,11323,'/images/games/cubisgold2/cubisgold2100x75.jpg','/images/games/cubisgold2/cubisgold2179x135.jpg','/images/games/cubisgold2/cubisgold2320x240.jpg','false','/images/games/thumbnails_med_2/cubisgold2130x75.gif','/exe/cubisgold2-setup.exe?lc=es&ext=cubisgold2-setup.exe','¡300 nuevos niveles fascinantes!','¡Experimenta la nueva dimensión del juego que consiste en hacer coincidir cubos en 3D!','false',false,false,'cubisgold2');ac(1000,'Los mejores','bricks_of_egypt');ag(11029123,'Bricks of Egypt','/images/games/bricks_of_egypt/bricks_of_egypt81x46.gif',1000,110298790,'c29d81db-2e42-4031-a839-e754b894abb3','false','/images/games/bricks_of_egypt/bricks_of_egypt16x16.gif',false,11323,'/images/games/bricks_of_egypt/bricks_of_egypt100x75.jpg','/images/games/bricks_of_egypt/bricks_of_egypt179x135.jpg','/images/games/bricks_of_egypt/bricks_of_egypt320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt130x75.gif','/exe/bricks_of_egypt-setup.exe?lc=es&ext=bricks_of_egypt-setup.exe','¡Machaca ladrillos al estilo egipcio!','¡8 niveles de clásico machaque de ladrillos al estilo egipcio!','false',false,true,'bricks_of_egypt');ag(11037623,'Tradewinds 2','/images/games/tradewinds2/tradewinds281x46.gif',110012530,110379990,'1d1dd83e-c3e2-4fba-9029-bb5d7a16cef9','false','/images/games/tradewinds2/tradewinds216x16.gif',false,11323,'/images/games/tradewinds2/tradewinds2100x75.jpg','/images/games/tradewinds2/tradewinds2179x135.jpg','/images/games/tradewinds2/tradewinds2320x240.jpg','false','/images/games/thumbnails_med_2/tradewinds2130x75.gif','/exe/tradewinds2-setup.exe?lc=es&ext=tradewinds2-setup.exe','Lucha contra los piratas para acumular grandes riquezas.','Tu propio imperio comercial te espera en el Caribe. Comercia con valiosas mercancías y lucha contra los piratas.','false',false,false,'Tradewinds 2');ag(11050883,'Bricks of Atlantis','/images/games/bricks_of_atlantis/bricks_of_atlantis81x46.gif',110012530,110509177,'9f0a8714-328d-452e-a262-f98ebd7b0ad5','false','/images/games/bricks_of_atlantis/bricks_of_atlantis16x16.gif',false,11323,'/images/games/bricks_of_atlantis/bricks_of_atlantis100x75.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis179x135.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_atlantis130x75.jpg','/exe/bricks_of_atlantis-setup.exe?lc=es&ext=bricks_of_atlantis-setup.exe','¡Una exitosa aventura en los fondos marinos!','¡Toma tu arpón y sumérgete en esta exitosa aventura en los fondos marinos!','false',false,true,'Bricks of Atlantis');ag(11052313,'Magic Match','/images/games/magic_match/magic_match81x46.gif',1007,110524983,'436dde14-6309-4560-b5b5-1c8f29318935','false','/images/games/magic_match/magic_match16x16.gif',false,11323,'/images/games/magic_match/magic_match100x75.jpg','/images/games/magic_match/magic_match179x135.jpg','/images/games/magic_match/magic_match320x240.jpg','false','/images/games/thumbnails_med_2/magic_match130x75.gif','/exe/magic_match_1hr-setup.exe?lc=es&ext=magic_match_1hr-setup.exe','¡Explora seis absorbentes reinos de fantasía!','¡Explora seis reinos místicos en las Tierras de Arcane!','false',false,false,'Magic Match');ag(11109097,'Luxor: Amun Rising','/images/games/luxor_amun/luxor_amun81x46.gif',110119360,111103570,'f5700530-4529-414a-8da6-c22d05eaddc7','false','/images/games/luxor_amun/luxor_amun16x16.gif',false,11323,'/images/games/luxor_amun/luxor_amun100x75.jpg','/images/games/luxor_amun/luxor_amun179x135.jpg','/images/games/luxor_amun/luxor_amun320x240.jpg','true','/images/games/thumbnails_med_2/luxor_amun130x75.gif','/exe/Luxor_Amun_Rising-setup.exe?lc=es&ext=Luxor_Amun_Rising-setup.exe','¡Salva al antiguo Egipto de la destrucción!','¡Destruye las esferas invasoras antes de que alcancen las pirámides del antiguo Egipto!','false',false,false,'Luxor: Amun Rising');ag(11123740,'Atlantis Quest','/images/games/Atlantis_Quest/Atlantis_Quest81x46.gif',1007,111249247,'ec312c1a-02ec-46ab-92d5-00d13068cac3','false','/images/games/Atlantis_Quest/Atlantis_Quest16x16.gif',false,11323,'/images/games/Atlantis_Quest/Atlantis_Quest100x75.jpg','/images/games/Atlantis_Quest/Atlantis_Quest179x135.jpg','/images/games/Atlantis_Quest/Atlantis_Quest320x240.jpg','true','/images/games/thumbnails_med_2/Atlantis_Quest130x75.gif','/exe/Atlantis_Quest-setup.exe?lc=es&ext=Atlantis_Quest-setup.exe','Explora el Mediterráneo en busca de Atlantis.','Viaja por el Mediterráneo en busca de Atlantis, el continente perdido.','false',false,false,'Atlantis Quest');ag(11131240,'Charm Tale','/images/games/charm_tale/charm_tale81x46.gif',1007,111324897,'','false','/images/games/charm_tale/charm_tale16x16.gif',false,11323,'/images/games/charm_tale/charm_tale100x75.jpg','/images/games/charm_tale/charm_tale179x135.jpg','/images/games/charm_tale/charm_tale320x240.jpg','false','/images/games/thumbnails_med_2/charm_tale130x75.gif','/exe/CharmTale_new-setup.exe?lc=es&ext=CharmTale_new-setup.exe','¡Deshaz la maldición!','¡Rellena los mosaicos para deshacer la terrible maldición!','false',false,false,'CharmTale_new');ag(11144067,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',110012530,11145467,'d6e3faeb-5515-40c8-8d76-decdb4ad1b08','false','/images/games/bricks_of_egypt2/bricks_of_egypt216x16.gif',false,11323,'/images/games/bricks_of_egypt2/bricks_of_egypt2100x75.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2179x135.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt2130x75.gif','/exe/Bricks_of_Egypt_2-setup.exe?lc=es&ext=Bricks_of_Egypt_2-setup.exe','Explora el pasadizo secreto de una pirámide.','Explora el pasadizo secreto de una pirámide en busca de las antiguas inscripciones del faraón.','false',false,false,'Bricks of Egypt 2');ag(11179723,'Dreamworld’s Open Mini Golf','/images/games/dream_mgolf/dream_mgolf81x46.gif',110119360,111812773,'71ce6af0-36ef-46fe-bd59-973682770101','false','/images/games/dream_mgolf/dream_mgolf16x16.gif',false,11323,'/images/games/dream_mgolf/dream_mgolf100x75.jpg','/images/games/dream_mgolf/dream_mgolf179x135.jpg','/images/games/dream_mgolf/dream_mgolf320x240.jpg','false','/images/games/thumbnails_med_2/dream_mgolf130x75.gif','/exe/Dreamworlds_Open-setup.exe?lc=es&ext=Dreamworlds_Open-setup.exe','¡Tira al hoyo y supera los obstáculos!','¡Tira al hoyo y supera colinas, baches, trampolines, bajadas y otros obstáculos!','false',false,false,'Dreamworlds Open Mini Golf');ag(11187383,'Rainbow Mystery','/images/games/rainbowmystery/rainbowmystery81x46.gif',1007,111889130,'','false','/images/games/rainbowmystery/rainbowmystery16x16.gif',false,11323,'/images/games/rainbowmystery/rainbowmystery100x75.jpg','/images/games/rainbowmystery/rainbowmystery179x135.jpg','/images/games/rainbowmystery/rainbowmystery320x240.jpg','true','/images/games/thumbnails_med_2/rainbowmystery130x75.jpg','/exe/Rainbow_Mystery-setup.exe?lc=es&ext=Rainbow_Mystery-setup.exe','¡Recupera los colores del arco iris maldito!','¡Rompe la maldición para recuperar los colores del Mundo del arco iris!','false',false,false,'Rainbow Mystery');ag(11198580,'Fizzball','/images/games/Fizzball/Fizzball81x46.gif',110012530,112002863,'','false','/images/games/Fizzball/fizzball16x16.gif',false,11323,'/images/games/Fizzball/Fizzball100x75.jpg','/images/games/Fizzball/Fizzball179x135.jpg','/images/games/Fizzball/Fizzball320x240.jpg','false','/images/games/thumbnails_med_2/fizzball130x75.gif','/exe/Fizzball-setup.exe?lc=es&ext=Fizzball-setup.exe','¡Alimenta y rescata a los animales hambrientos!','¡Rescata a los animales hambrientos en esta emocionante aventura rompeladrillos!','false',false,false,'Fizzball');ag(11219217,'Cradle of Rome','/images/games/cradle_rome/cradle_rome81x46.gif',1007,11221030,'','false','/images/games/cradle_rome/cradle_rome16x16.gif',false,11323,'/images/games/cradle_rome/cradle_rome100x75.jpg','/images/games/cradle_rome/cradle_rome179x135.jpg','/images/games/cradle_rome/cradle_rome320x240.jpg','false','/images/games/thumbnails_med_2/cradle_rome130x75.gif','/exe/Cradle_of_Rome-setup.exe?lc=es&ext=Cradle_of_Rome-setup.exe','¡Reconstruye el Antiguo Imperio Romano!','¡Reconstruye el Antiguo Imperio Romano y conviértete en su emperador!','false',false,false,'Cradle of Rome');ag(11223730,'Treasures of Montezuma','/images/games/treasures_montezuma/treasures_montezuma81x46.gif',1007,112255903,'','false','/images/games/treasures_montezuma/treasures_montezuma16x16.gif',false,11323,'/images/games/treasures_montezuma/treasures_montezuma100x75.jpg','/images/games/treasures_montezuma/treasures_montezuma179x135.jpg','/images/games/treasures_montezuma/treasures_montezuma320x240.jpg','true','/images/games/thumbnails_med_2/treasures_montezuma130x75.gif','/exe/Treasures_of_Montezuma-setup.exe?lc=es&ext=Treasures_of_Montezuma-setup.exe','¡Haz descubrimientos arqueológicos sorprendentes!','Haz descubrimientos arqueológicos sorprendentes con la Dra. Emily Jones.','false',false,false,'Treasures of Montezuma');ag(11231247,'Peggle','/images/games/peggle/peggle81x46.gif',110012530,112330860,'be51d120-aa29-4e78-b4f6-165d824fdfdc','false','/images/games/peggle/peggle16x16.gif',false,11323,'/images/games/peggle/peggle100x75.jpg','/images/games/peggle/peggle179x135.jpg','/images/games/peggle/peggle320x240.jpg','false','/images/games/thumbnails_med_2/peggle130x75.gif','/exe/Peggle-setup.exe?lc=es&ext=Peggle-setup.exe','¡Preparados, listos ...ya!','Apunta, dispara y elimina fichas en los 55 niveles más divertidos.','false',false,false,'Peggle');ag(11273477,'Amazonia','/images/games/amazonia/amazonia81x46.gif',1007,112761873,'0bc650e5-bf74-46a1-8edf-d302699b277c','false','/images/games/amazonia/amazonia16x16.gif',false,11323,'/images/games/amazonia/amazonia100x75.jpg','/images/games/amazonia/amazonia179x135.jpg','/images/games/amazonia/amazonia320x240.jpg','false','/images/games/thumbnails_med_2/amazonia130x75.gif','/exe/Amazonia-setup.exe?lc=es&ext=Amazonia-setup.exe','¡Tesoros escondidos y agrupación de hexágonos!','Consigue increíbles tesoros de Amazonia en este juego de agrupación de hexágonos.','false',false,false,'Amazonia');ag(11313343,'7 Wonders II','/images/games/7_wonders_2/7_wonders_281x46.gif',1007,113164700,'','false','/images/games/7_wonders_2/7_wonders_216x16.gif',false,11323,'/images/games/7_wonders_2/7_wonders_2100x75.jpg','/images/games/7_wonders_2/7_wonders_2179x135.jpg','/images/games/7_wonders_2/7_wonders_2320x240.jpg','true','/images/games/thumbnails_med_2/7_wonders_2130x75.gif','/exe/7_Wonders_2-setup.exe?lc=es&ext=7_Wonders_2-setup.exe','Construye las estructuras más magníficas del mundo.','Utiliza tus capacidades para realizar combinaciones para construir las estructuras más magníficas del mundo.','false',false,false,'7 Wonders 2');ag(11318463,'Secrets of Great Art','/images/games/secrets-of-great-art/secrets-of-great-art81x46.gif',110125467,113215907,'','false','/images/games/secrets-of-great-art/secrets-of-great-art16x16.gif',false,11323,'/images/games/secrets-of-great-art/secrets-of-great-art100x75.jpg','/images/games/secrets-of-great-art/secrets-of-great-art179x135.jpg','/images/games/secrets-of-great-art/secrets-of-great-art320x240.jpg','false','/images/games/thumbnails_med_2/secrets-of-great-art130x75.gif','/exe/Secrets_of_Great_Art-setup.exe?lc=es&ext=Secrets_of_Great_Art-setup.exe','¡Encuentra objetos ocultos en pinturas!','¿Puedes resolver el misterio oculto en las pinceladas?','false',false,false,'Secrets of Great Art');ac(110097120,'En línea','bejeweled2 OL');ag(11339060,'Bejeweled 2 Deluxe','/images/games/bejeweled2/bejeweled2_81x46.gif',110097120,11342127,'30cb8ba2-fb90-46d8-a79a-f65d2f9c0581','false','/images/games/bejeweled2/bejeweled216x16.gif',false,11323,'/images/games/bejeweled2/bejeweled2100x75.jpg','/images/games/bejeweled2/bejeweled2179x135.jpg','/images/games/bejeweled2/bejeweled2320x240.jpg','false','/images/games/thumbnails_med_2/bejeweled2130x75.gif','/exe/bejeweled2-setup.exe?lc=es&ext=bejeweled2-setup.exe','¡Nuevos efectos especiales y piedras preciosas explosivas!','¡La continuación del rompecabezas de piedras preciosas, ahora más adictivo que nunca!','true',false,false,'bejeweled2 OL');ag(11369860,'Chicken Invaders 2','/images/games/chickeninvaders2/chickeninvaders2_81x46.jpg',110081853,11372927,'835f6280-4ba9-42f6-bd32-e6eb039f492a','false','/images/games/chickeninvaders2/chickeninvaders216x16.gif',false,11323,'/images/games/chickeninvaders2/Chickeninvader2100x75.jpg','/images/games/chickeninvaders2/Chickeninvader2179x135.jpg','/images/games/chickeninvaders2/Chickeninvader2320x240.jpg','false','/images/games/thumbnails_med_2/chickeninvaders130x75.gif','','¡Salva al mundo de los pollos vengativos!','¡Salva al mundo de los pollos mutantes que ansían vengarse de la humanidad!','true',true,true,'Chicken Invaders 2 OLT1');ag(11374097,'Peggle','/images/games/peggle/peggle81x46.gif',110097120,11377183,'be51d120-aa29-4e78-b4f6-165d824fdfdc','false','/images/games/peggle/peggle16x16.gif',false,11323,'/images/games/peggle/peggle100x75.jpg','/images/games/peggle/peggle179x135.jpg','/images/games/peggle/peggle320x240.jpg','false','/images/games/thumbnails_med_2/peggle130x75.gif','/exe/Peggle-setup.exe?lc=es&ext=Peggle-setup.exe','¡Preparados, listos ...ya!','Apunta, dispara y elimina fichas en los 55 niveles más divertidos.','true',false,false,'Peggle_OL');ag(11384030,'Knights of Rock','/images/games/knights_of_rock/knights_of_rock81x46.gif',110097120,113872860,'93a4bae6-5b04-4531-b108-089b1fb6f4ec','false','/images/games/knights_of_rock/knights_of_rock16x16.gif',false,11323,'/images/games/knights_of_rock/knights_of_rock100x75.jpg','/images/games/knights_of_rock/knights_of_rock179x135.jpg','/images/games/knights_of_rock/knights_of_rock320x240.jpg','false','/images/games/thumbnails_med_2/knights_of_rock130x75.gif','','¡Lucha manteniendo el ritmo!','¡Lucha al ritmo de una canción de rock!','true',false,false,'Knights of Rock OL');ag(11386547,'Farm Frenzy','/images/games/farm_frenzy/farm_frenzy81x46.gif',1007,113897860,'','false','/images/games/farm_frenzy/farm_frenzy16x16.gif',false,11323,'/images/games/farm_frenzy/farm_frenzy100x75.jpg','/images/games/farm_frenzy/farm_frenzy179x135.jpg','/images/games/farm_frenzy/farm_frenzy320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy130x75.gif','/exe/Farm_Frenzy-setup.exe?lc=es&ext=Farm_Frenzy-setup.exe','Alimenta y cría animales de granja.','Vive una vida rural mientras cultivas campos y alimentas el ganado.','false',false,false,'Farm Frenzy');ag(11388713,'Indestructotank 2','/images/games/Indestructotank_2/Indestructotank_281x46.gif',110097120,113919797,'3c42ff87-89d0-45cb-895b-74de85432248','false','/images/games/Indestructotank_2/Indestructotank_216x16.gif',false,11323,'/images/games/Indestructotank_2/Indestructotank_2100x75.jpg','/images/games/Indestructotank_2/Indestructotank_2179x135.jpg','/images/games/Indestructotank_2/Indestructotank_2320x240.jpg','false','/images/games/thumbnails_med_2/Indestructotank_2130x75.gif','','¡Destroza a tus enemigos con tu propia fuerza!','¡Lánzate contra los enemigos para sumar combos y experiencia!','true',false,false,'Indestructotank 2 OL');ag(11391370,'Mr. Bigshot','/images/games/Mr_Big_Shot/Mr_Big_Shot81x46.gif',110083820,113945837,'f4ba52c6-326b-4b89-b680-1e5b5bff5bce','false','/images/games/Mr_Big_Shot/Mr_Big_Shot16x16.gif',false,11323,'/images/games/Mr_Big_Shot/Mr_Big_Shot100x75.jpg','/images/games/Mr_Big_Shot/Mr_Big_Shot179x135.jpg','/images/games/Mr_Big_Shot/Mr_Big_Shot320x240.jpg','false','/images/games/thumbnails_med_2/Mr_Big_Shot130x75.gif','','Selecciona, rastrea y vende stocks.','Selecciona, rastrea y vende stocks en este juego de simulación del mercado.','true',false,false,'Mr Big Shot OL');ag(11407490,'Season Match','/images/games/seasonmatch/seasonmatch81x46.gif',110012530,114106903,'','false','/images/games/seasonmatch/seasonmatch16x16.gif',false,11323,'/images/games/seasonmatch/seasonmatch100x75.jpg','/images/games/seasonmatch/seasonmatch179x135.jpg','/images/games/seasonmatch/seasonmatch320x240.jpg','false','/images/games/thumbnails_med_2/seasonmatch130x75.gif','/exe/Season_Match-setup.exe?lc=es&ext=Season_Match-setup.exe','Salva el país de las hadas del invierno eterno.','Junta los pedazos de un espejo hecho añicos para salvar el país de las hadas del invierno eterno.','false',false,false,'Season Match');ag(11408540,'Magic Match Adventures','/images/games/magic_match_adventures/magic_match_adventures81x46.gif',110012530,114117383,'','false','/images/games/magic_match_adventures/magic_match_adventures16x16.gif',false,11323,'/images/games/magic_match_adventures/magic_match_adventures100x75.jpg','/images/games/magic_match_adventures/magic_match_adventures179x135.jpg','/images/games/magic_match_adventures/magic_match_adventures320x240.jpg','false','/images/games/thumbnails_med_2/magic_match_adventures130x75.gif','/exe/Magic_Match_Adventures-setup.exe?lc=es&ext=Magic_Match_Adventures-setup.exe','Restaura el estado de los pueblos de diablillos en esta desafiante aventura.','Restaura el estado de los pueblos de diablillos en esta desafiante aventura.','false',false,false,'Magic Match Adventures');ag(11446430,'Vogue Tales','/images/games/vogue_tales/vogue_tales81x46.gif',110012530,11449730,'','false','/images/games/vogue_tales/vogue_tales16x16.gif',false,11323,'/images/games/vogue_tales/vogue_tales100x75.jpg','/images/games/vogue_tales/vogue_tales179x135.jpg','/images/games/vogue_tales/vogue_tales320x240.jpg','false','/images/games/thumbnails_med_2/vogue_tales130x75.gif','/exe/Vogue_Tales-setup.exe?lc=es&ext=Vogue_Tales-setup.exe','¡Una aventura londinense llena de moda!','¡Acompaña a Wendy por las calles de Londres en una aventura de gestión del tiempo llena de moda!','false',false,false,'Vogue Tales');ag(11446517,'Heart of Egypt','/images/games/heart_of_egypt/heart_of_egypt81x46.gif',1007,114498390,'','false','/images/games/heart_of_egypt/heart_of_egypt16x16.gif',false,11323,'/images/games/heart_of_egypt/heart_of_egypt100x75.jpg','/images/games/heart_of_egypt/heart_of_egypt179x135.jpg','/images/games/heart_of_egypt/heart_of_egypt320x240.jpg','false','/images/games/thumbnails_med_2/heart_of_egypt130x75.gif','/exe/Heart_of_Egypt-setup.exe?lc=es&ext=Heart_of_Egypt-setup.exe','¡Excava en busca de antiguos tesoros egipcios!','¡Podrás acompañar a una arqueóloga en una excavación llena de tesoros egipcios!','false',false,false,'Heart of Egypt');ac(1003,'Acción','Polly Pride Pet Detective');ag(11465580,'PJ Pride: Pet Detective','/images/games/pj_pride/pj_pride81x46.gif',1003,11468863,'','false','/images/games/pj_pride/pj_pride16x16.gif',false,11323,'/images/games/pj_pride/pj_pride100x75.jpg','/images/games/pj_pride/pj_pride179x135.jpg','/images/games/pj_pride/pj_pride320x240.jpg','true','/images/games/thumbnails_med_2/pj_pride130x75.gif','/exe/PJ_Pride-setup.exe?lc=es&ext=PJ_Pride-setup.exe','¡Encuentra 90 mascotas perdidas!','Investiga 96 escenas únicas en tu búsqueda de mascotas perdidas.','false',false,false,'Polly Pride Pet Detective');ag(11465737,'Sprill - The Mystery of The Bermuda Triangle','/images/games/sprill/sprill81x46.gif',1007,114690410,'','false','/images/games/sprill/sprill16x16.gif',false,11323,'/images/games/sprill/sprill100x75.jpg','/images/games/sprill/sprill179x135.jpg','/images/games/sprill/sprill320x240.jpg','true','/images/games/thumbnails_med_2/sprill130x75.gif','/exe/Sprill_The_Mystery_of_The_Bermuda_Triangle-setup.exe?lc=es&ext=Sprill_The_Mystery_of_The_Bermuda_Triangle-setup.exe','Investiga desapariciones de barcos y aviones.','Busca barcos y aviones que se han perdido en el Triángulo de las Bermudas.','false',false,false,'Sprill - The Mystery of The Be');ag(11470857,'CattlePult','/images/games/cattlepult/cattlepult81x46.gif',110097120,114741430,'6bcd7e01-7553-4609-bcd8-189bdb21beb5','false','/images/games/cattlepult/cattlepult16x16.gif',false,11323,'/images/games/cattlepult/cattlepult100x75.jpg','/images/games/cattlepult/cattlepult179x135.jpg','/images/games/cattlepult/cattlepult320x240.jpg','false','/images/games/thumbnails_med_2/cattlepult130x75.gif','','Destruye platos disparando reses.','Utiliza tu plataforma de lanzamiento para disparar reses y destruir la exquisita porcelana.','true',false,false,'CattlePult OL');ag(11473793,'Amazonia','/images/games/amazonia/amazonia81x46.gif',110081853,11477017,'0bc650e5-bf74-46a1-8edf-d302699b277c','false','/images/games/amazonia/amazonia16x16.gif',false,11323,'/images/games/amazonia/amazonia100x75.jpg','/images/games/amazonia/amazonia179x135.jpg','/images/games/amazonia/amazonia320x240.jpg','false','/images/games/thumbnails_med_2/amazonia130x75.gif','/exe/Amazonia-setup.exe?lc=es&ext=Amazonia-setup.exe','¡Tesoros escondidos y agrupación de hexágonos!','Consigue increíbles tesoros de Amazonia en este juego de agrupación de hexágonos.','true',true,true,'Amazonia OLT1');ag(11477363,'In Living Colors!','/images/games/in_living_colors/in_living_colors81x46.gif',110012530,114806750,'','false','/images/games/in_living_colors/in_living_colors16x16.gif',false,11323,'/images/games/in_living_colors/in_living_colors100x75.jpg','/images/games/in_living_colors/in_living_colors179x135.jpg','/images/games/in_living_colors/in_living_colors320x240.jpg','true','/images/games/thumbnails_med_2/in_living_colors130x75.gif','/exe/In_Living_Colors-setup.exe?lc=es&ext=In_Living_Colors-setup.exe','Colorea plantas y animales exóticos.','Colorea las plantas exóticas y los entrañables animales que encuentres durante una excursión.','false',false,false,'In Living Colors');ag(11481587,'Bubble Town','/images/games/bubble_town/bubble_town81x46.gif',110081853,114848900,'50876bf7-46cd-42cd-8b42-9f41211aaf18','false','/images/games/bubble_town/bubble_town16x16.gif',false,11323,'/images/games/bubble_town/bubble_town100x75.jpg','/images/games/bubble_town/bubble_town179x135.jpg','/images/games/bubble_town/bubble_town320x240.jpg','false','/images/games/thumbnails_med_2/bubble_town130x75.gif','','¡Salva a los habitantes de la bahía Borb del desastre!','Salva a los habitantes de la bahía Borb del desastre en este adictivo rompecabezas arcade.','true',true,true,'Bubble Town OLT1');ag(11499560,'Spikey’s Bounce Around','/images/games/spikeys_bounce_around/spikeys_bounce_around81x46.gif',110081853,115028480,'2ca90be8-16f6-467a-b417-89b53e6520b4','false','/images/games/spikeys_bounce_around/spikeys_bounce_around16x16.gif',false,11323,'/images/games/spikeys_bounce_around/spikeys_bounce_around100x75.jpg','/images/games/spikeys_bounce_around/spikeys_bounce_around179x135.jpg','/images/games/spikeys_bounce_around/spikeys_bounce_around320x240.jpg','false','/images/games/thumbnails_med_2/spikeys_bounce_around130x75.gif','','¡Rescata todas las mariposas!','¡Ayuda a Spikey a rescatar todas las mariposas!','true',true,true,'Spikeys Bounce Around OLT1');ag(11501350,'Wedding Dash™','/images/games/wedding_dash/wedding_dash81x46.gif',110097120,1150463,'903c352b-3ff0-4c79-8ac8-5a5c601a60e3','false','/images/games/wedding_dash/wedding_dash16x16.gif',false,11323,'/images/games/wedding_dash/wedding_dash100x75.jpg','/images/games/wedding_dash/wedding_dash179x135.jpg','/images/games/wedding_dash/wedding_dash320x240.jpg','false','/images/games/thumbnails_med_2/wedding_dash130x75.gif','','Organiza el banquete de bodas perfecto.','Elige las flores, la tarta y muchas cosas más para el banquete de bodas perfecto.','true',false,false,'Wedding Dash OL');ag(11502630,'Micro Olympics','/images/games/micro_olympics/micro_olympics81x46.gif',110081853,115059750,'8bca5f3c-c11e-457b-82df-8f20376f0acb','false','/images/games/micro_olympics/micro_olympics16x16.gif',false,11323,'/images/games/micro_olympics/micro_olympics100x75.jpg','/images/games/micro_olympics/micro_olympics179x135.jpg','/images/games/micro_olympics/micro_olympics320x240.jpg','false','/images/games/thumbnails_med_2/micro_olympics130x75.gif','','Lanza tu avión tan lejos como puedas…','Lanza tu avión tan lejos como puedas…','true',true,true,'Micro Olympics OLT1');ag(11505173,'Airport Mania: First Flight','/images/games/airport_mania_first_flight/airport_mania_first_flight81x46.gif',110012530,115084950,'','false','/images/games/airport_mania_first_flight/airport_mania_first_flight16x16.gif',false,11323,'/images/games/airport_mania_first_flight/airport_mania_first_flight100x75.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight179x135.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight320x240.jpg','true','/images/games/thumbnails_med_2/airport_mania_first_flight130x75.gif','/exe/Airport_Mania_First_Flight-setup.exe?lc=es&ext=Airport_Mania_First_Flight-setup.exe','¡Gestiona un aeropuerto la mar de ajetreado!','En este juego, eres el director de un aeropuerto y debes dirigir el aterrizaje de los aviones y evitar retrasos.','false',false,false,'Airport Mania First Flight');ag(11515487,'Gold Miner Vegas','/images/games/gold_miner_vegas/gold_miner_vegas81x46.gif',110081853,115187350,'02a12f6e-aa9a-4d76-aa3b-7021554684ff','false','/images/games/gold_miner_vegas/gold_miner_vegas16x16.gif',false,11323,'/images/games/gold_miner_vegas/gold_miner_vegas100x75.jpg','/images/games/gold_miner_vegas/gold_miner_vegas179x135.jpg','/images/games/gold_miner_vegas/gold_miner_vegas320x240.jpg','false','/images/games/thumbnails_med_2/gold_miner_vegas130x75.gif','/exe/Gold_Miner_Vegas-setup.exe?lc=es&ext=Gold_Miner_Vegas-setup.exe','Extrae oro de las minas con nuevos artilugios.','Con los nuevos artilugios para extraer oro, la tarea es más fácil que nunca.','true',true,true,'Gold Miner Vegas OLT1');ag(11518240,'Master Qwan’s Mahjong Deluxe','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe81x46.gif',110081853,115215103,'546e30f7-61c4-48b6-abf8-e65104ffa1cc','false','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe16x16.gif',false,11323,'/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe100x75.jpg','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe179x135.jpg','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/master_qwans_mahjongg_deluxe130x75.gif','','¡El Maestro Qwan regresa con este clásico de mahjong!','El Maestro Qwan regresa renovando el arte del mahjong.','true',true,true,'Master Qwanâ€™s Mahjongg D');ag(11518310,'Tower Blaster','/images/games/tower_blaster/tower_blaster81x46.gif',110081853,115216277,'57e5b0f1-2f53-4046-9e8d-b69f5794f7fe','false','/images/games/tower_blaster/tower_blaster16x16.gif',false,11323,'/images/games/tower_blaster/tower_blaster100x75.jpg','/images/games/tower_blaster/tower_blaster179x135.jpg','/images/games/tower_blaster/tower_blaster320x240.jpg','false','/images/games/thumbnails_med_2/tower_blaster130x75.gif','','¡Frenético juego de rompecabezas!','¡Derriba la torre de tu contrincante y vence en este rápido rompecabezas!','true',true,true,'Tower Blaster OLT1');ag(11518413,'SpeedX2','/images/games/speed_x2/speed_x281x46.gif',110081853,115217860,'67b4b8b6-1215-4046-a84c-7df17a442cc5','false','/images/games/speed_x2/speed_x216x16.gif',false,11323,'/images/games/speed_x2/speed_x2100x75.jpg','/images/games/speed_x2/speed_x2179x135.jpg','/images/games/speed_x2/speed_x2320x240.jpg','false','/images/games/thumbnails_med_2/speed_x2130x75.gif','','¿Te crees rápido? ¡Prueba SpeedX2!','¿Te crees rápido? ¡Prueba SpeedX2: Summer Vacation!','true',true,true,'SpeedX2 OLT1');ac(1006,'Mahjong','Mah Jong Quest III');ag(11519340,'Mah Jong Quest 3: Balance of Life','/images/games/mah_jong_quest_3/mah_jong_quest_381x46.gif',1006,115226917,'','false','/images/games/mah_jong_quest_3/mah_jong_quest_316x16.gif',false,11323,'/images/games/mah_jong_quest_3/mah_jong_quest_3100x75.jpg','/images/games/mah_jong_quest_3/mah_jong_quest_3179x135.jpg','/images/games/mah_jong_quest_3/mah_jong_quest_3320x240.jpg','true','/images/games/thumbnails_med_2/mah_jong_quest_3130x75.gif','/exe/Mah_Jong_Quest_III-setup.exe?lc=es&ext=Mah_Jong_Quest_III-setup.exe','¡Encuentra la felicidad y la plenitud espiritual!','¡Toma decisiones vitales en la búsqueda del equilibrio y la plenitud espiritual!','false',false,false,'Mah Jong Quest III');ag(11522637,'The Secret of Margrave Manor','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor81x46.gif',1007,115259550,'','false','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor16x16.gif',false,11323,'/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor100x75.jpg','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor179x135.jpg','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor320x240.jpg','true','/images/games/thumbnails_med_2/the_secret_of_margrave_manor130x75.gif','/exe/The_Secret_of_Margrave_Manor-setup.exe?lc=es&ext=The_Secret_of_Margrave_Manor-setup.exe','¡Descubre los oscuros secretos de tu familia!','Busca en la espeluznante casa Margrave para descubrir el oscuro pasado de tu familia.','false',false,false,'The Secret of Margrave Manor');ag(11524173,'Turtix','/images/games/turtix/turtix81x46.gif',110083820,115274810,'d069e5be-7132-4227-9a04-aa3e13182a98','false','/images/games/turtix/turtix16x16.gif',false,11323,'/images/games/turtix/turtix100x75.jpg','/images/games/turtix/turtix179x135.jpg','/images/games/turtix/turtix320x240.jpg','false','/images/games/thumbnails_med_2/turtix130x75.gif','','Ayuda a Turtix a rescatar a las tortugas secuestradas.','¡Ayuda a Turtix a rescatar a sus amigas tortugas en esta encantadora aventura!','true',false,false,'Turtix OL');ag(11525223,'Paulo the Penguin','/images/games/paulothepenguin/paulothepenguin81x46.gif',110081853,11528523,'922c1ac9-ac8e-42b6-823f-50a148ec25a2','false','/images/games/paulothepenguin/paulothepenguin16x16.gif',false,11323,'/images/games/paulothepenguin/paulothepenguin100x75.jpg','/images/games/paulothepenguin/paulothepenguin179x135.jpg','/images/games/paulothepenguin/paulothepenguin320x240.jpg','false','/images/games/thumbnails_med_2/paulothepenguin130x75.gif','','¡Refréscate con Paulo!','Ayuda al pingüino Paulo a vencer el calentamiento global.','true',true,true,'Paulo the Penguin OLT1');ag(11526143,'Snowy: Treasure Hunter 2','/images/games/snowytreasurehunter2/snowytreasurehunter281x46.gif',110083820,115294417,'46f99099-b00d-413f-9842-8d479a13cc6c','false','/images/games/snowytreasurehunter2/snowytreasurehunter216x16.gif',false,11323,'/images/games/snowytreasurehunter2/snowytreasurehunter2100x75.jpg','/images/games/snowytreasurehunter2/snowytreasurehunter2179x135.jpg','/images/games/snowytreasurehunter2/snowytreasurehunter2320x240.jpg','false','/images/games/thumbnails_med_2/snowytreasurehunter2130x75.gif','','¡Participa con Snowy en esta nueva aventura!','¡Participa con Snowy en esta nueva aventura!','true',false,false,'Snowy: Treasure Hunter 2 OL');ag(11528550,'Pathways','/images/games/pathways/pathways81x46.gif',110083820,11531850,'82f4d89f-c55d-446e-95ae-5d051803627e','false','/images/games/pathways/pathways16x16.gif',false,11323,'/images/games/pathways/pathways100x75.jpg','/images/games/pathways/pathways179x135.jpg','/images/games/pathways/pathways320x240.jpg','false','/images/games/thumbnails_med_2/pathways130x75.gif','','Encuentra el camino utilizando matemáticas básicas.','Intenta encontrar el camino correcto hacia el final del juego utilizando la regla matemática dada.','true',false,false,'Pathways OL');ag(11531173,'Farm Frenzy 2','/images/games/farm_frenzy_2/farm_frenzy_281x46.gif',110012530,115344917,'','false','/images/games/farm_frenzy_2/farm_frenzy_216x16.gif',false,11323,'/images/games/farm_frenzy_2/farm_frenzy_2100x75.jpg','/images/games/farm_frenzy_2/farm_frenzy_2179x135.jpg','/images/games/farm_frenzy_2/farm_frenzy_2320x240.jpg','true','/images/games/thumbnails_med_2/farm_frenzy_2130x75.gif','/exe/farm_frenzy_2-setup.exe?lc=es&ext=farm_frenzy_2-setup.exe','¡Gestiona una granja trepidante!','¡Cría animales, cultiva tu campo y envía tus productos al mercado!','false',false,false,'Farm Frenzy 2');ag(11531933,'¡Billar nuevo y mejorado!','/images/games/pool_v2_mp/pool_v2_mp81x46.gif',110044360,115352427,'3e36becc-559b-4d09-8468-7911ce6ba1e3','true','/images/games/pool_v2_mp/pool_v2_mp16x16.gif',false,11323,'/images/games/pool_v2_mp/pool_v2_mp100x75.jpg','/images/games/pool_v2_mp/pool_v2_mp179x135.jpg','/images/games/pool_v2_mp/pool_v2_mp320x240.jpg','false','/images/games/thumbnails_med_2/pool_v2_mp130x75.gif','','¡Billar nuevo y mejorado!','¡Nuevo y mejorado! Con las funciones del nuevo billar las partidas de varios jugadores serán más divertidas.','true',true,true,'Pool v2 MP');ag(11532417,'The Great Chocolate Chase','/images/games/the_great_chocolate_chase/the_great_chocolate_chase81x46.gif',1007,115357610,'','false','/images/games/the_great_chocolate_chase/the_great_chocolate_chase16x16.gif',false,11323,'/images/games/the_great_chocolate_chase/the_great_chocolate_chase100x75.jpg','/images/games/the_great_chocolate_chase/the_great_chocolate_chase179x135.jpg','/images/games/the_great_chocolate_chase/the_great_chocolate_chase320x240.jpg','false','/images/games/thumbnails_med_2/the_great_chocolate_chase130x75.gif','/exe/the_great_chocolate_chase-setup.exe?lc=es&ext=the_great_chocolate_chase-setup.exe','¡Administra tiendas internacionales de chocolate exótico!','¡Haz dulces de chocolate para clientes internacionales a principios de la década de 1900!','false',false,false,'The Great Chocolate Chase');ag(11545430,'School House Shuffle','/images/games/school_house_shuffle/school_house_shuffle81x46.gif',110012530,115489657,'','false','/images/games/school_house_shuffle/school_house_shuffle16x16.gif',false,11323,'/images/games/school_house_shuffle/school_house_shuffle100x75.jpg','/images/games/school_house_shuffle/school_house_shuffle179x135.jpg','/images/games/school_house_shuffle/school_house_shuffle320x240.jpg','false','/images/games/thumbnails_med_2/school_house_shuffle130x75.gif','/exe/school_house_shuffle-setup.exe?lc=es&ext=school_house_shuffle-setup.exe','Ayuda a los estudiantes a aprender y a desarrollarse.','Ayuda a los estudiantes de la Escuela Elemental Brainiac a aprender y a desarrollarse.','false',false,false,'School House Shuffle');ag(11547073,'Home Sweet Home 2','/images/games/home_sweet_home_2/home_sweet_home_281x46.gif',1007,115505793,'','false','/images/games/home_sweet_home_2/home_sweet_home_216x16.gif',false,11323,'/images/games/home_sweet_home_2/home_sweet_home_2100x75.jpg','/images/games/home_sweet_home_2/home_sweet_home_2179x135.jpg','/images/games/home_sweet_home_2/home_sweet_home_2320x240.jpg','false','/images/games/thumbnails_med_2/home_sweet_home_2130x75.gif','/exe/home_sweet_home_2-setup.exe?lc=es&ext=home_sweet_home_2-setup.exe','¡Embellece habitaciones como si fueras interiorista!','¡Crea las habitaciones más bonitas para tus clientes como si fueras interiorista!','false',false,false,'Home Sweet Home 2');ag(11551673,'OPERATION MANIA','/images/games/operation_mania/operation_mania81x46.gif',110012530,115551197,'','false','/images/games/operation_mania/operation_mania16x16.gif',false,11323,'/images/games/operation_mania/operation_mania100x75.jpg','/images/games/operation_mania/operation_mania179x135.jpg','/images/games/operation_mania/operation_mania320x240.jpg','false','/images/games/thumbnails_med_2/operation_mania130x75.gif','/exe/OPERATION_Mania-setup_regular.exe?lc=es&ext=OPERATION_Mania-setup_regular.exe','¡Caos médico en urgencias!','¡Trabaja a contrarreloj para tratar a pacientes con enfermedades imposibles en urgencias!','false',false,false,'OPERATION Mania (regular)');ac(110127790,'Gestión del tiempo','Parking Dash');ag(11551977,'Parking Dash','/images/games/parking_dash/parking_dash81x46.gif',110127790,115554873,'','false','/images/games/parking_dash/parking_dash16x16.gif',false,11323,'/images/games/parking_dash/parking_dash100x75.jpg','/images/games/parking_dash/parking_dash179x135.jpg','/images/games/parking_dash/parking_dash320x240.jpg','false','/images/games/thumbnails_med_2/parking_dash130x75.gif','/exe/parking_dash-setup.exe?lc=es&ext=parking_dash-setup.exe','¡Aparca los coches en la parte de atrás del restaurante Flo’s!','¡Aparca los coches en la parte de atrás del restaurante Flo’s en el último juego de DASH!','false',false,false,'Parking Dash');ag(11557850,'4 Elements','/images/games/4_elements/4_elements81x46.gif',110081853,115613850,'1669fc0a-c7f9-4aba-affc-6f6a24755bea','false','/images/games/4_elements/4_elements16x16.gif',false,11323,'/images/games/4_elements/4_elements100x75.jpg','/images/games/4_elements/4_elements179x135.jpg','/images/games/4_elements/4_elements320x240.jpg','false','/images/games/thumbnails_med_2/4_elements130x75.gif','','¡Descubre cuatro antiguos libros de magia!','¡Descubre cuatro antiguos libros para restablecer la paz en el reino!','true',true,true,'4 Elements OLT1');ag(11558267,'Mark and Mandi’s Love Story','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story81x46.gif',1007,115617643,'','false','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story16x16.gif',false,11323,'/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story100x75.jpg','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story179x135.jpg','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story320x240.jpg','false','/images/games/thumbnails_med_2/mark_and_mandis_love_story130x75.gif','/exe/mark_and_mandi_love_story-setup.exe?lc=es&ext=mark_and_mandi_love_story-setup.exe','¡Encuentra las diferencias en esta romántica aventura!','Encuentra las diferencias en esta aventura de objetos ocultos llena de romanticismo.','false',false,false,'Mark and Mandi Love Story');ag(11558597,'7 Wonders - Treasures of Seven','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven81x46.gif',1007,115620987,'','false','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven16x16.gif',false,11323,'/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven100x75.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven179x135.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders_treasures_of_seven130x75.gif','/exe/7_wonders_treasures_of_seven-setup.exe?lc=es&ext=7_wonders_treasures_of_seven-setup.exe','¡Construye nueve estructuras históricas!','Une piezas para construir tu camino hacia la oculta Ciudad de los Dioses.','false',false,false,'7 Wonders - Treasures of Seven');ac(1004,'Cartas','Solitaire For Dummies - Regula');ag(11560627,'Solitaire for Dummies®','/images/games/solitaire_for_dummies/solitaire_for_dummies81x46.gif',1004,115641887,'','false','/images/games/solitaire_for_dummies/solitaire_for_dummies16x16.gif',false,11323,'/images/games/solitaire_for_dummies/solitaire_for_dummies100x75.jpg','/images/games/solitaire_for_dummies/solitaire_for_dummies179x135.jpg','/images/games/solitaire_for_dummies/solitaire_for_dummies320x240.jpg','false','/images/games/thumbnails_med_2/solitaire_for_dummies130x75.gif','/exe/solitaire_for_dummies_regular-setup.exe?lc=es&ext=solitaire_for_dummies_regular-setup.exe','Conoce y domina 10 juegos Solitario distintos.','Perfecciona tus habilidades en los juegos clásicos del Solitario o descubre nuevos talentos.','false',false,false,'Solitaire For Dummies - Regula');ag(11561070,'Herod’s Lost Tomb ©','/images/games/herods_lost_tomb/herods_lost_tomb81x46.gif',1007,115645380,'','false','/images/games/herods_lost_tomb/herods_lost_tomb16x16.gif',false,11323,'/images/games/herods_lost_tomb/herods_lost_tomb100x75.jpg','/images/games/herods_lost_tomb/herods_lost_tomb179x135.jpg','/images/games/herods_lost_tomb/herods_lost_tomb320x240.jpg','true','/images/games/thumbnails_med_2/herods_lost_tomb130x75.gif','/exe/herods_lost_tomb-setup.exe?lc=es&ext=herods_lost_tomb-setup.exe','¡Una aventura arqueológica emocionante!','Embárcate en una emocionante aventura arqueológica en este juego de objetos escondidos.','false',false,false,'Herods Lost Tomb');ag(11564540,'Gourmania','/images/games/gourmania/gourmania81x46.gif',1007,115680870,'','false','/images/games/gourmania/gourmania16x16.gif',false,11323,'/images/games/gourmania/gourmania100x75.jpg','/images/games/gourmania/gourmania179x135.jpg','/images/games/gourmania/gourmania320x240.jpg','true','/images/games/thumbnails_med_2/gourmania130x75.gif','/exe/gourmania-setup.exe?lc=es&ext=gourmania-setup.exe','¡Gana una competición de cocina de chefs!','Enfréntate a chefs expertos en una competición de cocina.','false',false,false,'Gourmania');ag(11565287,'Frogs In Love','/images/games/frogs_in_love/frogs_in_love81x46.gif',110012530,115687400,'','false','/images/games/frogs_in_love/frogs_in_love16x16.gif',false,11323,'/images/games/frogs_in_love/frogs_in_love100x75.jpg','/images/games/frogs_in_love/frogs_in_love179x135.jpg','/images/games/frogs_in_love/frogs_in_love320x240.jpg','false','/images/games/thumbnails_med_2/frogs_in_love130x75.gif','/exe/frogs_in_love-setup.exe?lc=es&ext=frogs_in_love-setup.exe','¡Encuentra el amor en un viaje encantador!','¡Domina románticos minijuegos en un viaje en busca del amor verdadero!','false',false,false,'Frogs In Love');ag(11640417,'Hospital Hustle','/images/games/hospital_hustle/hospital_hustle81x46.gif',1003,116439173,'','false','/images/games/hospital_hustle/hospital_hustle16x16.gif',false,11323,'/images/games/hospital_hustle/hospital_hustle100x75.jpg','/images/games/hospital_hustle/hospital_hustle179x135.jpg','/images/games/hospital_hustle/hospital_hustle320x240.jpg','true','/images/games/thumbnails_med_2/hospital_hustle130x75.gif','/exe/hospital_hustle-setup.exe?lc=es&ext=hospital_hustle-setup.exe','Se necesita una enfermera - ¡Ponte los guantes!','¡Ponte los guantes como la enfermera Sarah para diagnosticar, tratar pacientes y dirigir urgencias!','false',false,false,'Hospital Hustle');ag(11660890,'Wendy’s Wellness','/images/games/wendys_wellness/wendys_wellness81x46.gif',110127790,116644887,'','false','/images/games/wendys_wellness/wendys_wellness16x16.gif',false,11323,'/images/games/wendys_wellness/wendys_wellness100x75.jpg','/images/games/wendys_wellness/wendys_wellness179x135.jpg','/images/games/wendys_wellness/wendys_wellness320x240.jpg','false','/images/games/thumbnails_med_2/wendys_wellness130x75.gif','/exe/wendys_wellness-setup.exe?lc=es&ext=wendys_wellness-setup.exe','Gestiona una cadena de gimnasios.','Gestiona tu propia cadena de 10 gimnasios completamente equipados.','false',false,false,'Wendys Wellness');ag(11666120,'Call Of Atlantis','/images/games/call_of_atlantis/call_of_atlantis81x46.gif',110081853,116697363,'5256966b-8a0f-4a51-8fe6-a08b70ed13a5','false','/images/games/call_of_atlantis/call_of_atlantis16x16.gif',false,11323,'/images/games/call_of_atlantis/call_of_atlantis100x75.jpg','/images/games/call_of_atlantis/call_of_atlantis179x135.jpg','/images/games/call_of_atlantis/call_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/call_of_atlantis130x75.gif','','¡Salva al legendario continente de la Atlántida!','¡Consigue los siete cristales del poder necesarios para salvar la Atlántida!','true',true,true,'Call Of Atlantis OLT1');ag(11675450,'Party Down','/images/games/party_down/party_down81x46.gif',110083820,116790847,'fb4d2818-c79a-49f8-bd80-4b4ed353678a','false','/images/games/party_down/party_down16x16.gif',false,11323,'/images/games/party_down/party_down100x75.jpg','/images/games/party_down/party_down179x135.jpg','/images/games/party_down/party_down320x240.jpg','false','/images/games/thumbnails_med_2/party_down130x75.gif','','¡La última novedad en organización de fiestas!','¡Conoce la última y suprema novedad en organización de fiestas mientras te encargas de satisfacer las exigencias de la élite de Hollywood!','true',false,false,'Party Down OL');ag(11679990,'The Enchanting Islands','/images/games/the_enchanting_islands/the_enchanting_islands81x46.gif',1007,116835607,'','false','/images/games/the_enchanting_islands/the_enchanting_islands16x16.gif',false,11323,'/images/games/the_enchanting_islands/the_enchanting_islands100x75.jpg','/images/games/the_enchanting_islands/the_enchanting_islands179x135.jpg','/images/games/the_enchanting_islands/the_enchanting_islands320x240.jpg','true','/images/games/thumbnails_med_2/the_enchanting_islands130x75.gif','/exe/the_enchanting_islands-setup.exe?lc=es&ext=the_enchanting_islands-setup.exe','¡Empareja elementos para lanzar hechizos!','¡Devuélveles la belleza de las Enchanting Islands recogiendo elementos y lanzando hechizos!','false',false,false,'The Enchanting Islands');ag(11681637,'Jewel Quest Solitaire 3','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_381x46.gif',1004,116852880,'','false','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_316x16.gif',false,11323,'/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_3100x75.jpg','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_3179x135.jpg','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_3320x240.jpg','true','/images/games/thumbnails_med_2/jewel_quest_solitaire_3130x75.gif','/exe/jewel_quest_solitaire_3-setup.exe?lc=es&ext=jewel_quest_solitaire_3-setup.exe','Una persecución explosiva en busca de secretos exóticos.','Una persecución exótica con diseños del solitario adictivos y NUEVOS tableros de Jewel Quest.','false',false,false,'Jewel Quest Solitaire 3');ag(11691993,'Grandpa’s Candy Factory','/images/games/grandpas_candy_factory/grandpas_candy_factory81x46.gif',1007,116955890,'','false','/images/games/grandpas_candy_factory/grandpas_candy_factory16x16.gif',false,11323,'/images/games/grandpas_candy_factory/grandpas_candy_factory100x75.jpg','/images/games/grandpas_candy_factory/grandpas_candy_factory179x135.jpg','/images/games/grandpas_candy_factory/grandpas_candy_factory320x240.jpg','false','/images/games/thumbnails_med_2/grandpas_candy_factory130x75.gif','/exe/grandpas_candy_factory-setup.exe?lc=es&ext=grandpas_candy_factory-setup.exe','Domina la creación de dulces para salvar la fábrica.','Ayuda a Cathy a dominar la creación de dulces y regresa esta fábrica a su gloria anterior.','false',false,false,'Grandpas Candy Factory');ag(11702957,'Drugstore Mania','/images/games/drugstore_mania/drugstore_mania81x46.gif',110127790,117065497,'','false','/images/games/drugstore_mania/drugstore_mania16x16.gif',false,11323,'/images/games/drugstore_mania/drugstore_mania100x75.jpg','/images/games/drugstore_mania/drugstore_mania179x135.jpg','/images/games/drugstore_mania/drugstore_mania320x240.jpg','false','/images/games/thumbnails_med_2/drugstore_mania130x75.gif','/exe/drugstore_mania-setup.exe?lc=es&ext=drugstore_mania-setup.exe','¡Obtén tu dosis de diversión farmacéutica! Exactamente lo que el médico ha recetado.','Dale a los clientes precisamente lo que el médico ha recetado y forma un imperio farmacéutico.','false',false,false,'Drugstore Mania');ag(11708390,'Battalion: Nemesis','/images/games/battalion_nemesis/battalion_nemesis81x46.gif',110083820,117119793,'87ec563d-32f1-4ffd-a977-b7f58cc463cb','false','/images/games/battalion_nemesis/battalion_nemesis16x16.gif',false,11323,'/images/games/battalion_nemesis/battalion_nemesis100x75.jpg','/images/games/battalion_nemesis/battalion_nemesis179x135.jpg','/images/games/battalion_nemesis/battalion_nemesis320x240.jpg','false','/images/games/thumbnails_med_2/battalion_nemesis130x75.gif','','¡Toma el mando del equipo de ataque rápido!','Conviértete en comandante del equipo de respuesta y ataque rápido de la Federación del Norte.','true',true,true,'Battalion: Nemesis OLT1');ag(11729970,'Art Detective','/images/games/art_detective/art_detective81x46.gif',1007,117335663,'','false','/images/games/art_detective/art_detective16x16.gif',false,11323,'/images/games/art_detective/art_detective100x75.jpg','/images/games/art_detective/art_detective179x135.jpg','/images/games/art_detective/art_detective320x240.jpg','true','/images/games/thumbnails_med_2/art_detective130x75.gif','/exe/art_detective-setup.exe?lc=es&ext=art_detective-setup.exe','¡Atrapa a un falsificador de obras de arte!','Atrapa a un ladrón que sustituye las pinturas auténticas con réplicas idénticas.','false',false,false,'Art Detective');ag(11738453,'Burger Shop 2','/images/games/burger_shop_2/burger_shop_281x46.gif',110127790,117420850,'','false','/images/games/burger_shop_2/burger_shop_216x16.gif',false,11323,'/images/games/burger_shop_2/burger_shop_2100x75.jpg','/images/games/burger_shop_2/burger_shop_2179x135.jpg','/images/games/burger_shop_2/burger_shop_2320x240.jpg','false','/images/games/thumbnails_med_2/burger_shop_2130x75.gif','/exe/burger_shop_2-setup.exe?lc=es&ext=burger_shop_2-setup.exe','¡Reconstruye tu imperio de comida rápida!','¡Reconstruye tu imperio de comida rápida! Desvela los secretos que explican la caída de tu original cadena.','false',false,false,'Burger Shop 2');ag(11740190,'Slingo Supreme','/images/games/slingo_supreme/slingo_supreme81x46.gif',110083820,117437230,'916e3490-2ada-40d6-a749-36e1a5cf5149','false','/images/games/slingo_supreme/slingo_supreme16x16.gif',false,11323,'/images/games/slingo_supreme/slingo_supreme100x75.jpg','/images/games/slingo_supreme/slingo_supreme179x135.jpg','/images/games/slingo_supreme/slingo_supreme320x240.jpg','false','/images/games/thumbnails_med_2/slingo_supreme130x75.gif','','¡Crea 16.000 juegos de Slingo diferentes!','¡Descubre nuevos potenciadores para crear 16.000 juegos de Slingo diferentes!','true',false,false,'Slingo Supreme OL');ag(11745870,'Margrave Manor 2: The Lost Ship','/images/games/margrave_manor_2/margrave_manor_281x46.gif',1007,117494990,'','false','/images/games/margrave_manor_2/margrave_manor_216x16.gif',false,11323,'/images/games/margrave_manor_2/margrave_manor_2100x75.jpg','/images/games/margrave_manor_2/margrave_manor_2179x135.jpg','/images/games/margrave_manor_2/margrave_manor_2320x240.jpg','true','/images/games/thumbnails_med_2/margrave_manor_2130x75.gif','/exe/margrave_manor_2-setup.exe?lc=es&ext=margrave_manor_2-setup.exe','¡Descubre los secretos del Aurora Dusk!','¡Descubre los secretos escondidos en el Aurora Dusk, un terrorífico barco del tesoro!','false',false,false,'Margrave Manor 2');ag(11765287,'Burger Time Deluxe','/images/games/burger_time_deluxe/burger_time_deluxe81x46.gif',110012530,117691883,'','false','/images/games/burger_time_deluxe/burger_time_deluxe16x16.gif',false,11323,'/images/games/burger_time_deluxe/burger_time_deluxe100x75.jpg','/images/games/burger_time_deluxe/burger_time_deluxe179x135.jpg','/images/games/burger_time_deluxe/burger_time_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/burger_time_deluxe130x75.gif','/exe/burger_time_deluxe-setup.exe?lc=es&ext=burger_time_deluxe-setup.exe','¡Una cruzada de condimentos donde se enfrentan el bien y el mal!','¡Apila hamburguesas y frustra los planes del villano avinagrado en esta cruzada de condimentos donde se enfrentan el bien y el mal!','false',false,false,'Burger Time Deluxe');ag(11778787,'Double Play: Jojo’s Fashion Show 1 & 2','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_281x46.gif',110127790,117829807,'','false','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_216x16.gif',false,11323,'/images/games/jojos_fashion_show1_2/jojos_fashion_show1_2100x75.jpg','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_2179x135.jpg','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_2320x240.jpg','true','/images/games/thumbnails_med_2/jojos_fashion_show1_2130x75.gif','/exe/jojos_fashion_show_bundle-setup.exe?lc=es&ext=jojos_fashion_show_bundle-setup.exe','Demuestra tu estilo en las pasarelas: 2 por 1.','Demuestra tu estilo en las pasarelas de todo el mundo: 2 juegos por el precio de 1.','false',false,false,'Jojos Fashion Show bundle');ag(11807553,'Hotel Dash™: Suite Success™','/images/games/hoteldash_suite_success/hoteldash_suite_success81x46.gif',110127790,118136913,'','false','/images/games/hoteldash_suite_success/hoteldash_suite_success16x16.gif',false,11323,'/images/games/hoteldash_suite_success/hoteldash_suite_success100x75.jpg','/images/games/hoteldash_suite_success/hoteldash_suite_success179x135.jpg','/images/games/hoteldash_suite_success/hoteldash_suite_success320x240.jpg','true','/images/games/thumbnails_med_2/hoteldash_suite_success130x75.gif','/exe/hotel_dash_suite_success-setup.exe?lc=es&ext=hotel_dash_suite_success-setup.exe','Administración de hotel caótica en DinerTown™.','Ayuda a administrar el caos y los percances del hotel en la apreciada DinerTown™.','false',false,false,'Hotel Dash Suite Success');ag(11819523,'Tropical Mania','/images/games/Tropical_mania/Tropical_mania81x46.gif',110127790,118256240,'','false','/images/games/Tropical_mania/Tropical_mania16x16.gif',false,11323,'/images/games/Tropical_mania/Tropical_mania100x75.jpg','/images/games/Tropical_mania/Tropical_mania179x135.jpg','/images/games/Tropical_mania/Tropical_mania320x240.jpg','false','/images/games/thumbnails_med_2/Tropical_mania130x75.gif','/exe/tropical_mania_53129567-setup.exe?lc=es&ext=tropical_mania_53129567-setup.exe','Gestiona un centro turístico en una isla.','Gestiona un centro turístico de una remota isla en este auténtico paraíso de gestión del tiempo.','false',false,false,'Tropical Mania');ag(110012700,'Atomaders','/images/games/Atomader/atomaders81x46.jpg',110109903,110012623,'','false','/images/games/Atomader/atomaders16x16.gif',false,11323,'/images/games/Atomader/atomaders100x75.jpg','/images/games/Atomader/atomaders179x135.jpg','/images/games/Atomader/atomaders320x240.jpg','false','/images/games/thumbnails_med_2/atomaders130x75.gif','/exe/Atomaders-Setup.exe?lc=es&ext=Atomaders-Setup.exe','Libera planetas lejanos de la amenaza de los cyborgs.','Acaba con las máquinas enemigas mientras liberas planetas lejanos de la amenaza de los cyborgs.','false',false,false,'atomaders');ag(110028110,'Ricochet Xtreme','/images/games/rebound/ricochet81x46.gif',110012530,1100280,'','false','/images/games/rebound/ricochet16x16.gif',false,11323,'/images/games/rebound/ricochet100x75.jpg','/images/games/rebound/ricochet179x135.jpg','/images/games/rebound/ricochet320x240.jpg','false','/images/games/thumbnails_med_2/ricochet130x75.gif','/exe/Ricochet-Setup.exe?lc=es&ext=Ricochet-Setup.exe','170 niveles que te pondrán el corazón en un puño.','¡Maniobra a través de 170 niveles que te pondrán el corazón en un puño!','false',false,false,'Ricochet');ag(110030700,'Gutterball','/images/games/gutterball/gb81x46.jpg',110119360,110030590,'','false','/images/games/gutterball/gb16x16.gif',false,11323,'/images/games/gutterball/gb100x75.jpg','/images/games/gutterball/gb179x135.jpg','/images/games/gutterball/gb320x240.jpg','false','/images/games/thumbnails_med_2/gutterball130x75.gif','/exe/Gutterball-Setup.exe?lc=es&ext=Gutterball-Setup.exe','¡Diviértete jugando a los bolos!','Derriba todos los bolos y hazte con la victoria.','false',false,false,'Gutterball');ag(110056577,'Backgammon','/images/games/backgammon_mp/backgammon_mp81x46.gif',110044360,110057420,'7e7d30a4-5ab6-4d45-b77a-83fa355bb390','true','/images/games/backgammon_mp/backgammon_mp16x16.gif',false,11323,'/images/games/backgammon_mp/backgammon_mp100x75.jpg','/images/games/backgammon_mp/backgammon_mp179x135.jpg','/images/games/backgammon_mp/backgammon_mp320x240.jpg','false','/images/games/thumbnails_med_2/backgammon_mp130x75.gif','','','Disfruta del Backgammon clásico con un amigo o encuentra a alguien con quien jugar en línea.','true',true,true,'MP_Backgammon');ag(110060513,'Checkers','/images/games/checkers/checkers81x46.gif',110044360,110060403,'2e50669d-31aa-42b6-a0a2-039b263e6b76','true','/images/games/checkers/checkers16x16.gif',false,11323,'/images/games/checkers/checkers100x75.jpg','/images/games/checkers/checkers179x135.jpg','/images/games/checkers/checkers320x240.jpg','false','/images/games/thumbnails_med_2/checkers130x75.gif','','Disfruta de las damas clásicas con un amigo o encuentra a alguien con quien jugar en línea.','Disfruta del juego de damas clásico con un amigo o encuentra a alguien con quien jugar en línea.','true',true,true,'MP_Checkers');ag(110074983,'BeTrapped!','/images/games/betrapped/betrapped81x46_1.gif',1007,11007977,'64ff098b-057f-4020-8c4b-78ebf2dff443','false','/images/games/betrapped/betrapped16x16.gif',false,11323,'/images/games/betrapped/betrapped100x75.jpg','/images/games/betrapped/betrapped179x135.jpg','/images/games/betrapped/betrapped320x240.jpg','false','/images/games/thumbnails_med_2/betrapped130x75.gif','/exe/betrapped-setup.exe?lc=es&ext=betrapped-setup.exe','Descubre las pistas para resolver un asesinato.','Descubre las pistas para resolver un asesinato en este apasionante juego policíaco.','false',false,false,'betrapped_adventure');ag(110075733,'Chainz','/images/games/chainz/chainz81x46.gif',1007,110080263,'b4845d30-d887-4918-ad87-f9b025c6fdf6','false','/images/games/chainz/chainz16x16.gif',false,11323,'/images/games/chainz/chainz100x75.jpg','/images/games/chainz/chainz179x135.jpg','/images/games/chainz/chainz320x240.jpg','false','/images/games/thumbnails_med_2/chainz130x75.gif','/exe/Chainz-Setup.exe?lc=es&ext=Chainz-Setup.exe','¡Desencadena tu cerebro!','¡Crea reacciones en cadena con este fascinante rompecabezas!','false',false,false,'chainz');ag(110082360,'Alien Shooter','/images/games/alienShooter/alienShooter81x46.jpg',110109903,110088530,'','false','/images/games/alienShooter/alienShooter16x16.gif',false,11323,'/images/games/alienShooter/alienShooter100x75.jpg','/images/games/alienShooter/alienShooter179x135.jpg','/images/games/alienShooter/alienShooter320x240.jpg','false','/images/games/thumbnails_med_2/alienShooter130x75.gif','/exe/Alien_Shooter-setup.exe?lc=es&ext=Alien_Shooter-setup.exe','¡Salva a la raza humana de los extraterrestres!','Destruye a esas sanguinarias criaturas con pistolas, explosivos y armamento de tecnología punta. ','false',false,false,'Alien_shooter');ag(110091403,'Alien Sky','/images/games/alien_sky/alien_sky81x46.gif',110109903,110097840,'','false','/images/games/alien_sky/alien_sky16x16.gif',false,11323,'/images/games/alien_sky/alien_sky100x75.jpg','/images/games/alien_sky/alien_sky179x135.jpg','/images/games/alien_sky/alien_sky320x240.jpg','false','/images/games/thumbnails_med_2/alien_sky130x75.gif','/exe/Alien_Sky-Setup.exe?lc=es&ext=Alien_Sky-Setup.exe','¡Salva la Tierra de los extraterrestres!','¡Defiende la Tierra de un enjambre de extraterrestres invasores!','false',false,false,'Alien_Sky');ag(110109903,'Flip Words','/images/games/flipwords/flipwords81x46.gif',1007,110115763,'11ba0e23-80fc-45f2-946b-8cfd10d9b9fb','false','/images/games/flipwords/flipwords16x16.gif',false,11323,'/images/games/flipwords/flipwords100x75.jpg','/images/games/flipwords/flipwords179x135.jpg','/images/games/flipwords/flipwords320x240.jpg','true','/images/games/thumbnails_med_2/flipwords130x75.gif','/exe/Flip_Words-Setup.exe?lc=es&ext=Flip_Words-Setup.exe','¡Un rompecabezas con palabras para ases del lenguaje!','Haz clic en las letras para formar palabras y resolver frases similares.','false',false,true,'flip_words');ag(110111700,'Zuma Deluxe','/images/games/zuma/zuma81x46.gif',110119360,11011713,'e8a09536-9041-4700-b600-790f893f7ea0','false','/images/games/zuma/zuma16x16.gif',false,11323,'/images/games/zuma/zuma100x75.jpg','/images/games/zuma/zuma179x135.jpg','/images/games/zuma/zuma320x240.jpg','false','/images/games/thumbnails_med_2/zuma130x75.gif','/exe/Zuma_Deluxe-setup.exe?lc=es&ext=Zuma_Deluxe-setup.exe','¡Descubre los secretos legendarios de Zuma!','Descubre más de veinte antiguos templos en este rompecabezas lleno de acción.','false',false,false,'Zuma');ag(110125217,'Infinite Crosswords','/images/games/infinite_crosswords/infinite_crosswords81x46.jpg',110125467,110131217,'','false','/images/games/infinite_crosswords/infinite_crosswords16x16.gif',false,11323,'/images/games/infinite_crosswords/infinite_crosswords100x75.jpg','/images/games/infinite_crosswords/infinite_crosswords179x135.jpg','/images/games/infinite_crosswords/infinite_crosswords320x240.jpg','false','/images/games/thumbnails_med_2/infinite_crosswords130x75.gif','/exe/infinite_crosswords-setup.exe?lc=es&ext=infinite_crosswords-setup.exe','¡Resuelve más de cien difíciles crucigramas!','Escoge entre cien crucigramas de siete categorías y varios niveles de dificultad.','false',false,false,'infinite_crosswords');ag(110160733,'Slingo','/images/games/slingo/slingo81x46.gif',1004,11016643,'a283bb51-32c5-4612-ac7f-26f3e3f847ba','false','/images/games/slingo/slingo16x16.gif',false,11323,'/images/games/slingo/slingo100x75.jpg','/images/games/slingo/slingo179x135.jpg','/images/games/slingo/slingo320x240.jpg','false','/images/games/thumbnails_med_2/slingo130x75.gif','/exe/slingo-setup.exe?lc=es&ext=slingo-setup.exe','¡El bingo y las máquinas tragaperras se unen!','¡Una adictiva y emocionante combinación de máquinas tragaperras y bingo!','false',false,false,'slingo');ag(110184263,'Puzzle Express','/images/games/puzzleexpress/puzzleexpress81x46.gif',1007,110190170,'b6f74596-5a4e-4dd2-97d2-4a0d8dcb2737','false','/images/games/puzzleexpress/puzzleexpress16x16.gif',false,11323,'/images/games/puzzleexpress/puzzleexpress100x75.jpg','/images/games/puzzleexpress/puzzleexpress179x135.jpg','/images/games/puzzleexpress/puzzleexpress320x240.jpg','false','/images/games/thumbnails_med_2/puzzleexpress130x75.gif','/exe/puzzle_express-setup.exe?lc=es&ext=puzzle_express-setup.exe','¡Súbete al tren de los rompecabezas!','Descubre imágenes en los rompecabezas mientras viajas en el ferrocarril.','false',false,false,'puzzle_express');ag(110186437,'Air Strike 2','/images/games/airstrike2/airstrike2_81x46.gif',110109903,110192153,'','false','/images/games/airstrike2/airstrike216x16.gif',false,11323,'/images/games/airstrike2/airstrike2_100x75.jpg','/images/games/airstrike2/airstrike2_179x135.jpg','/images/games/airstrike2/airstrike2_320x240.jpg','false','/images/games/thumbnails_med_2/airstrike2_130x75.gif','/exe/airstrike2-setup.exe?lc=es&ext=airstrike2-setup.exe','¡Sumérgete en una infernal batalla aérea!','¡Enfréntate a los helicópteros de combate y las unidades terrestres del enemigo en intensos combates tridimensionales!','false',false,false,'airstrike2');ag(110194827,'Jewel Quest','/images/games/jewelquest/jewelquest81x46.gif',1007,110200560,'15f15f7f-502e-4891-829f-76b7c2e04418','false','/images/games/jewelquest/jewelquest16x16.gif',false,11323,'/images/games/jewelquest/jewelquest100x75.jpg','/images/games/jewelquest/jewelquest179x135.jpg','/images/games/jewelquest/jewelquest320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest130x75.gif','/exe/jewelquest-setup.exe?lc=es&ext=jewelquest-setup.exe','¡Un fascinante rompecabezas arqueológico!','¡Encuentra rutilantes tesoros en las antiguas ruinas mayas de este fascinante rompecabezas!','false',false,false,'jewel_quest');ag(110206700,'Bejeweled','/images/games/bejeweled/bejeweled81x46.gif',1007,110212733,'','false','/images/games/bejeweled/bejeweled16x16.gif',false,11323,'/images/games/bejeweled/bejeweled100x75.jpg','/images/games/bejeweled/bejeweled179x135.jpg','/images/games/bejeweled/bejeweled320x240.jpg','false','/images/games/thumbnails_med_2/bejeweled130x75.gif','/exe/bejeweled-setup.exe?lc=es&ext=bejeweled-setup.exe','¡Un intenso rompecabezas de intercambiar gemas!','Haz rápidas conexiones visuales en este intenso rompecabezas de intercambiar gemas.','false',false,false,'bejeweled');ag(110246513,'Catan: el juego de computadora','/images/games/catan/catan81x46.gif',1004,110252700,'','false','/images/games/catan/catan16x16.gif',false,11323,'/images/games/catan/catan100x75.jpg','/images/games/catan/catan179x135.jpg','/images/games/catan/catan320x240.jpg','false','/images/games/thumbnails_med_2/catan130x75.gif','/exe/catan-setup.exe?lc=es&ext=catan-setup.exe','¡Descubre ya el Mundo de Catan!','¡Experimenta el Mundo de Catan en esta versión del juego de mesa Los Colonizadores de Catan!','false',false,false,'Catan_carb_60');ag(110249297,'Wik And The Fable of Souls','/images/games/wik/wik81x46.jpg',110125467,11025560,'','false','/images/games/wik/wik16x16.gif',false,11323,'/images/games/wik/wik100x75.jpg','/images/games/wik/wik179x135.jpg','/images/games/wik/wik320x240.jpg','false','/images/games/thumbnails_med_2/wik130x75.jpg','/exe/wik-setup.exe?lc=es&ext=wik-setup.exe','Participa en una encantadora fábula llena de acción.','¡Una fábula llena de acción que te cautivará y te llenará de emoción!','false',false,false,'Wik');ag(110250590,'Una serie de desafortunados sucesos','/images/games/unfortunate_events/unfortunate_events81x46.gif',1007,110256293,'','false','/images/games/unfortunate_events/unfortunate_events16x16.gif',false,11323,'/images/games/unfortunate_events/unfortunate_events100x75.jpg','/images/games/unfortunate_events/unfortunate_events179x135.jpg','/images/games/unfortunate_events/unfortunate_events320x240.jpg','false','/images/games/thumbnails_med_2/unfortunate_events130x75.gif','/exe/unfortunate_events-setup.exe?lc=es&ext=unfortunate_events-setup.exe','¡Encuentra y detiene a un cobarde malvado!','El Conde Olaf aterroriza a 3 niños huérfanos en escenas de espanto indescriptible.','false',false,false,'A Series of Unfortunate Events');ag(110261550,'Shape Solitaire','/images/games/shape_solitaire/shapesolitaire81x46.jpg',1004,110268750,'5a9cb568-7fcb-450e-b6d1-cc2a0e5854c9','false','/images/games/shape_solitaire/shapesolitaire16x16.gif',false,11323,'/images/games/shape_solitaire/shapesolitaire100x75.jpg','/images/games/shape_solitaire/shapesolitaire179x135.jpg','/images/games/shapesolitaire/shapesolitaire320x240.jpg','false','/images/games/thumbnails_med_2/ShapeSolitaire130x75.jpg','/exe/shape_solitaire-setup.exe?lc=es&ext=shape_solitaire-setup.exe','¡Un solitario con un formato totalmente nuevo!','¡Los aficionados al solitario adorarán esta nueva variante del juego clásico!','false',false,false,'shape_solitaire');ag(110265407,'Bejeweled 2 Deluxe','/images/games/bejeweled2/bejeweled2_81x46.gif',1007,110272767,'30cb8ba2-fb90-46d8-a79a-f65d2f9c0581','false','/images/games/bejeweled2/bejeweled216x16.gif',false,11323,'/images/games/bejeweled2/bejeweled2100x75.jpg','/images/games/bejeweled2/bejeweled2179x135.jpg','/images/games/bejeweled2/bejeweled2320x240.jpg','false','/images/games/thumbnails_med_2/bejeweled2_130x75.jpg','/exe/bejeweled2-setup.exe?lc=es&ext=bejeweled2-setup.exe','¡Nuevos efectos especiales y piedras preciosas explosivas!','¡La continuación del rompecabezas de piedras preciosas, ahora más adictivo que nunca!','false',false,false,'bejeweled2');ag(110273157,'Ricochet Lost Worlds: Recharged','/images/games/ricochet_recharged/ricochet_recharged81x46.gif',110012530,110280723,'','false','/images/games/ricochet_recharged/ricochet_recharged16x16.gif',false,11323,'/images/games/ricochet_recharged/ricochet_recharged100x75.jpg','/images/games/ricochet_recharged/ricochet_recharged179x135.jpg','/images/games/ricochet_recharged/ricochet_recharged320x240.jpg','false','/images/games/thumbnails_med_2/ricochet_recharged170x135.gif','/exe/ricochet_recharged-setup.exe?lc=es&ext=ricochet_recharged-setup.exe','¡Vuelve el machacaladrillos, ahora mejor que nunca!','¡Ábrete paso a través de 350 niveles de machacar ladrillos!','false',false,false,'ricochet_recharged');ag(110293343,'Billar','/images/games/pool_mp/pool_mp81x46.gif',110044360,110300993,'c8f21f20-a51d-48a3-9081-21acb8154589','true','/images/games/pool_mp/pool_mp16x16.gif',false,11323,'/images/games/pool_mp/pool_mp100x75.jpg','/images/games/pool_mp/pool_mp179x135.jpg','/images/games/pool_mp/pool_mp320x240.jpg','false','/images/games/thumbnails_med_2/pool_mp130x75.gif','','El clásico juego de 8 bolas. Elige bolas lisas o a rayas y sé el primero en embocar las 8 bolas para ganar.','Apunta y dispara en esta versión en línea del juego clásico de 8 bolas. Elige bolas lisas o a rayas, cuela tus siete bolas y después emboca la bola 8 para ganar; no emboques la bola negra.','true',true,true,'MP_Pool');ag(110294723,'Mah Jong Quest','/images/games/mah_jong_quest/mah_jong_quest81x46.gif',1006,110301223,'b0f1ad34-255c-4dce-927a-fb4ac18e34da','false','/images/games/mah_jong_quest/mah_jong_quest16x16.gif',false,11323,'/images/games/mah_jong_quest/mah_jong_quest100x75.jpg','/images/games/mah_jong_quest/mah_jong_quest179x135.jpg','/images/games/mah_jong_quest/mah_jong_quest320x240.jpg','true','/images/games/thumbnails_med_2/mah_jong_quest130x75.jpg','/exe/mah_jong_quest-setup.exe?lc=es&ext=mah_jong_quest-setup.exe','¡Reconstruye el imperio con fichas!','¡Reconstruye el imperio usando un antiguo juego de fichas de Mah Jong!','false',false,false,'mah_jong_quest');ag(110300453,'Spin And Win','/images/games/spin_and_win/spin_and_win81x46.gif',1004,110307530,'6283055e-8558-4a66-8f9c-fde4de3b8214','false','/images/games/spin_and_win/spin_and_win16x16.gif',false,11323,'/images/games/spin_and_win/spin_and_win100x75.jpg','/images/games/spin_and_win/spin_and_win179x135.jpg','/images/games/spin_and_win/spin_and_win320x240.jpg','false','/images/games/thumbnails_med_2/spin_and_win130x75.gif','/exe/spin_and_win-setup.exe?lc=es&ext=spin_and_win-setup.exe','¡Gira la rueda y gana!','¡Juega a las tragaperras, tira los dados y apuesta a los caballos para ganar grandes premios!','false',false,false,'spin_and_win');ag(110305887,'Diner Dash','/images/games/diner_dash/diner_dash81x46.gif',110012530,11031273,'32f2ee89-9f7c-47e6-a122-a532c5d50618','false','/images/games/diner_dash/diner_dash16x16.gif',false,11323,'/images/games/diner_dash/diner_dash100x75.jpg','/images/games/diner_dash/diner_dash179x135.jpg','/images/games/diner_dash/diner_dash320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash130x75.gif','/exe/diner_dash-setup.exe?lc=es&ext=diner_dash-setup.exe','¡Crea un imperio de restaurantes!','Ayuda a Flo, una antigua corredora de bolsa, a convertir su pequeño café en un restaurante de cinco estrellas.','false',false,false,'diner_dash');ag(110313550,'Jigsaw 365','/images/games/jigsaw365/jigsaw36581x46.gif',1007,110320740,'','false','/images/games/jigsaw365/jigsaw36516x16.gif',false,11323,'/images/games/jigsaw365/jigsaw365100x75.jpg','/images/games/jigsaw365/jigsaw365179x135.jpg','/images/games/jigsaw365/jigsaw365320x240.jpg','false','/images/games/thumbnails_med_2/jigsaw365130x75.gif','/exe/jigsaw365-setup.exe?lc=es&ext=jigsaw365-setup.exe','¡Un año de rompecabezas a tu disposición!','Disfruta de una diversión interminable con 365 rompecabezas a tu disposición y ochenta estilos distintos.¡Utiliza también tus propias fotografías!','false',false,false,'Jigsaw 365');ag(110322783,'Big Kahuna Reef','/images/games/big_kahuna_reef/big_kahuna_reef81x46.gif',1007,110327910,'9f1756a1-87ea-44ce-9001-cefec7ba3121','false','/images/games/big_kahuna_reef/big_kahuna_reef16x16.gif',false,11323,'/images/games/big_kahuna_reef/big_kahuna_reef100x75.jpg','/images/games/big_kahuna_reef/big_kahuna_reef179x135.jpg','/images/games/big_kahuna_reef/big_kahuna_reef320x240.jpg','false','/images/games/thumbnails_med_2/big_kahuna_reef130x75.gif','/exe/big_kahuna_reef-setup.exe?lc=es&ext=big_kahuna_reef-setup.exe','¡Embárcate en una aventura submarina!','Bucea por los arrecifes hawaianos en busca del tótem místico.','false',false,false,'Big Kahuna Reef');ag(110339673,'Chess','/images/games/chess_mp/chess_mp81x46.gif',110044360,110342160,'6c777168-e7b4-43c8-95c1-ff0dad3a074d','true','/images/games/chess_mp/chess_mp16x16.gif',false,11323,'/images/games/chess_mp/chess_mp100x75.jpg','/images/games/chess_mp/chess_mp179x135.jpg','/images/games/chess_mp/chess_mp320x240.jpg','false','/images/games/thumbnails_med_2/chess_mp130x75.gif','','Conviértete en un campeón de ajedrez en línea. Aprende a dominar el juego contra tus amigos o encuentra a alguien con quien iniciar una rivalidad instantánea en línea.','Conviértete en un campeón de ajedrez en línea. Aprende a dominar el juego contra tus amigos o encuentra a alguien con quien iniciar una rivalidad instantánea en línea.','true',true,true,'MP_chess');ag(110386197,'Darts: 301','/images/games/darts_mp/darts_mp81x46.gif',110044360,110390167,'5db05c41-2457-4b3c-8905-0eba04c66a1c','true','/images/games/darts_mp/darts_mp16x16.gif',false,11323,'/images/games/darts_mp/darts_mp100x75.jpg','/images/games/darts_mp/darts_mp179x135.jpg','/images/games/darts_mp/darts_mp320x240.jpg','false','/images/multi/darts_mp/darts_mp130x75.gif','','¡Acierta en la diana en este juego de dardos clásico!','Apunta al blanco y sé el primero en reducir la puntuación a cero lanzando los dardos a la diana.','true',true,true,'MP_darts(beta)');ag(110409783,'Air Strike 2: Gulf Thunder','/images/games/air_strike2_gulf_thunder/airstrike_gulf_thunder_81x46.gif',110109903,110410580,'','false','/images/games/air_strike2_gulf_thunder/airstrike_gulf_thunder16x16.gif',false,11323,'/images/games/air_strike2_gulf_thunder/airstrike_gulf_thunder_100x75.jpg','/images/games/air_strike2_gulf_thunder/airstrike_gulf_thunder_179x135.jpg','/images/games/air_strike2_gulf_thunder/airstrike_gulf_thunder320x240.jpg','false','/images/games/thumbnails_med_2/airstrike_gulf_thunder_130x75.jpg','/exe/air_strike2_gulf_thunder-setup.exe?lc=es&ext=air_strike2_gulf_thunder-setup.exe','¡Asalta una base terrorista en el desierto!','¡Asalta una base terrorista en este juego de combate de helicópteros en tres dimensiones!','false',false,false,'Air Strike 2: Gulf Thunder');ac(110015873,'Niños','Chuzzle');ag(110411970,'Chuzzle','/images/games/Chuzzle/Chuzzle81x46.gif',110015873,110412127,'548d93bc-b5ed-439b-8358-1ed4b8812a05','false','/images/games/Chuzzle/Chuzzle16x16.gif',false,11323,'/images/games/Chuzzle/Chuzzle100x75.jpg','/images/games/Chuzzle/Chuzzle179x135.jpg','/images/games/Chuzzle/Chuzzle320x240.jpg','false','/images/games/thumbnails_med_2/Chuzzle130x75.gif','/exe/chuzzle-setup.exe?lc=es&ext=chuzzle-setup.exe','¡Oye cómo ríen y chillan!','¡Gana trofeos, desbloquea juegos secretos y óyelos chillar!','false',false,false,'Chuzzle');ag(110422467,'Tik’s Texas Hold ’em','/images/games/tiks_texas_holdem/tiks_texas81x46.gif',1004,110423840,'','false','/images/games/tiks_texas_holdem/tiks_texas16x16.gif',false,11323,'/images/games/tiks_texas_holdem/tiks_texas100x75.jpg','/images/games/tiks_texas_holdem/tiks_texas179x135.jpg','/images/games/tiks_texas_holdem/tiks_texas320x240.jpg','false','/images/games/thumbnails_med_2/tiks_texas130x75.gif','/exe/tiks_texas_holdem-setup.exe?lc=es&ext=tiks_texas_holdem-setup.exe','¡El juego de póquer más realista!','¡Diviértete con la emoción de la mano perfecta… o el farol perfecto!','false',false,false,'Tiks Texas Hold em');ag(110432550,'Astroavenger','/images/games/astroavenger/astroavenger81x46.gif',110109903,110433990,'','false','/images/games/astroavenger/astroavenger16x16.gif',false,11323,'/images/games/astroavenger/astroavenger100x75.jpg','/images/games/astroavenger/astroavenger179x135.jpg','/images/games/astroavenger/astroavenger320x240.jpg','false','/images/games/thumbnails_med_2/astroavenger_130x75.gif','/exe/astroavenger-setup.exe?lc=es&ext=astroavenger-setup.exe','¡La misión espacial que no te esperabas!','¡Atrévete a aceptar una misión espacial fuera de lo común!','false',false,false,'Astroavenger');ag(110474497,'Sudoku Quest','/images/games/sudoku_quest/sudokuquest81x46.gif',1007,110475607,'39582cb4-e825-4f0d-bdaf-7bbca8f9953a','false','/images/games/sudoku_quest/sudokuquest16x16.gif',false,11323,'/images/games/sudoku_quest/sudokuquest100x75.jpg','/images/games/sudoku_quest/sudokuquest179x135.jpg','/images/games/sudoku_quest/sudokuquest320x240.jpg','false','/images/games/thumbnails_med_2/sudokuquest130x75.jpg','/exe/sudoku_quest-setup.exe?lc=es&ext=sudoku_quest-setup.exe','¿Aún no juegas Sudoku?','El nuevo y desafiante rompecabezas que cautivó al público.','false',false,false,'Sudoku Quest');ag(110486387,'Darts: Cricket','/images/games/darts_cricket_mp/darts_cricket_mp81x46.gif',110044360,110487250,'1f7dc99e-d960-4c73-a52e-7ac0ee30ceee','true','/images/games/darts_cricket_mp/darts_cricket_mp16x16.gif',false,11323,'/images/games/darts_cricket_mp/darts_cricket_mp100x75.jpg','/images/games/darts_cricket_mp/darts_cricket_mp179x135.jpg','/images/games/darts_cricket_mp/darts_cricket_mp320x240.jpg','false','/images/games/thumbnails_med_2/darts_cricket_mp130x75.gif','','Una variación muy inteligente del juego de dardos.','Combina tu estrategia y tu habilidad en esta inteligente variación de los dardos.','true',true,true,'MP_Darts: Cricket');ag(110510320,'Twistingo Bingo','/images/games/twistingo/twistingo81x46.gif',110119360,110511257,'','false','/images/games/twistingo/twistingo16x16.gif',false,11323,'/images/games/twistingo/twistingo100x75.jpg','/images/games/twistingo/twistingo179x135.jpg','/images/games/twistingo/twistingo320x240.jpg','false','/images/games/thumbnails_med_2/twistingo130x75.gif','/exe/twistingo-setup.exe?lc=es&ext=twistingo-setup.exe','¡Bingo con un puzzle único!','¡Salva a simpáticos animalillos en este juego de bingo con un rompecabezas único!','false',false,false,'Twistingo');ag(110516917,'Trijinx','/images/games/Trijinx/Trijinx81x46.gif',110012530,110517887,'','false','/images/games/Trijinx/Trijinx16x16.gif',false,11323,'/images/games/Trijinx/Trijinx100x75.jpg','/images/games/Trijinx/Trijinx179x135.jpg','/images/games/Trijinx/Trijinx320x240.jpg','false','/images/games/thumbnails_med_2/trijinx130x75.jpg','/exe/trijinx-setup.exe?lc=es&ext=trijinx-setup.exe','¡Sigue el rompecabezas de las tumbas antiguas!','¡Descubre el misterio de TriJinx, el rompecabezas de acción con un giro inesperado!','false',false,false,'Trijinx');ag(110529370,'Chainz 2: reencadenado','/images/games/Chainz_2_Relinked/Chainz2_81x46.gif',1007,110530357,'d720aac9-bc22-4a7c-ab56-3785389f10f6','false','/images/games/Chainz_2_Relinked/chainz216x16.gif',false,11323,'/images/games/Chainz_2_Relinked/Chainz2_100x75.jpg','/images/games/Chainz_2_Relinked/Chainz2_179x135.jpg','/images/games/Chainz_2_Relinked/Chainz2_320x240.jpg','false','/images/games/thumbnails_med_2/chainz2_130x75.gif','/exe/Chainz_2_Relinked-setup.exe?lc=es&ext=Chainz_2_Relinked-setup.exe','¡La locura del encadenamiento al máximo!','¡La locura del encadenamiento con nuevos modos de juego llenos de emoción!','false',false,false,'Chainz 2: Relinked');ag(110551697,'Granny In Paradise','/images/games/granny_paradise/granny_paradise81x46.gif',110125467,110553917,'','false','/images/games/granny_paradise/granny_paradise16x16.gif',false,11323,'/images/games/granny_paradise/granny_paradise100x75.jpg','/images/games/granny_paradise/granny_paradise179x135.jpg','/images/games/granny_paradise/granny_paradise320x240.jpg','true','/images/games/thumbnails_med_2/granny_paradise130x75.gif','/exe/Granny_In_Paradise-setup.exe?lc=es&ext=Granny_In_Paradise-setup.exe','¡Ayuda a la abuela a rescatar a sus gatitos!','¡Ayuda a la abuela a rescatar a sus gatitos y a ser más lista que el vil Dr. Meow!','false',false,false,'Granny In Paradise');ag(110554843,'Pat Sajak’s Lucky Letters','/images/games/Pat_Sajaks_Lucky_Letters/LuckyLetters81x46.jpg',110125467,11055797,'','false','/images/games/Pat_Sajaks_Lucky_Letters/LuckyLetters16x16.gif',false,11323,'/images/games/Pat_Sajaks_Lucky_Letters/luckyletters100x75.jpg','/images/games/Pat_Sajaks_Lucky_Letters/luckyletters179x135.jpg','/images/games/Pat_Sajaks_Lucky_Letters/luckyletters320x240.jpg','false','/images/games/thumbnails_med_2/luckyletters130x75.gif','/exe/Pat_Sajaks_Lucky_Letters-setup.exe?lc=es&ext=Pat_Sajaks_Lucky_Letters-setup.exe','','','false',false,false,'Pat Sajaks Lucky Letters');ag(110557710,'Hexalot','/images/games/Hexalot/Hexalot81x46.gif',1007,110559920,'00d3a1aa-c6e5-422c-85fd-c0e74bee21e1','false','/images/games/Hexalot/Hexalot16x16.gif',false,11323,'/images/games/Hexalot/Hexalot100x75.jpg','/images/games/Hexalot/Hexalot179x135.jpg','/images/games/Hexalot/Hexalot320x240.jpg','false','/images/games/thumbnails_med_2/Hexalot130x75.gif','/exe/Hexalot-setup.exe?lc=es&ext=Hexalot-setup.exe','¡Una endiablada aventura medieval!','¡Construye puentes en los peligrosos paisajes del rompecabezas en esta endiablada aventura!','false',false,false,'Hexalot');ag(111097223,'Saints and Sinners Bowling','/images/games/s_and_s_bowling/s_and_s_bowling81x46.gif',110119360,11111090,'50727521-f14e-43fb-944e-00cc9d433d1f','false','/images/games/s_and_s_bowling/s_and_s_bowling16x16.gif',false,11323,'/images/games/s_and_s_bowling/s_and_s_bowling100x75.jpg','/images/games/s_and_s_bowling/s_and_s_bowling179x135.jpg','/images/games/s_and_s_bowling/s_and_s_bowling320x240.jpg','false','/images/games/thumbnails_med_2/s_and_s_bowling130x75.gif','/exe/SandS_Bowling-setup.exe?lc=es&ext=SandS_Bowling-setup.exe','¡Juega a los bolos contra tus enigmáticos contrincantes!','¡Juega a los bolos contra toda una variopinta serie de personajes por todo el país!','false',false,false,'Saints & Sinners Bowling');ag(111118433,'Mystery Case Files: Huntsville','/images/games/MCF_huntsville/MCF_huntsville81x46.gif',1007,111131887,'','false','/images/games/MCF_huntsville/MCF_huntsville16x16.gif',false,11323,'/images/games/MCF_huntsville/MCF_huntsville100x75.jpg','/images/games/MCF_huntsville/MCF_huntsville179x135.jpg','/images/games/MCF_huntsville/MCF_huntsville320x240.jpg','false','/images/games/thumbnails_med_2/MCF_huntsville130x75.gif','/exe/Mystery_Huntsville-setup.exe?lc=es&ext=Mystery_Huntsville-setup.exe','¡Resuelve las pistas para sorprender a los criminales!','¡Resuelve las pistas para sorprender a los criminales en este apasionante juego de detectives!','false',false,false,'Mystery Huntsville');ag(111125700,'Rainbow Web','/images/games/rainbow_web/rainbow_web81x46.gif',1007,111138937,'5399a010-91fe-400d-ad8c-e25288586179','false','/images/games/rainbow_web/rainbow_web16x16.gif',false,11323,'/images/games/rainbow_web/rainbow_web100x75.jpg','/images/games/rainbow_web/rainbow_web179x135.jpg','/images/games/rainbow_web/rainbow_web320x240.jpg','true','/images/games/thumbnails_med_2/rainbow_web130x75.gif','/exe/Rainbow_Web-setup.exe?lc=es&ext=Rainbow_Web-setup.exe','¡Rompe el hechizo para restablecer el sol!','¡Resuelve rompecabezas para romper el hechizo y devolver el sol al reino!','false',false,true,'Rainbow Web');ag(111142333,'Fish Tycoon','/images/games/fish_tycoon/fish_tycoon81x46.gif',110012530,111155117,'9e10b30f-0507-4a3b-aa90-bfa3a0281bc9','false','/images/games/fish_tycoon/fish_tycoon16x16.gif',false,11323,'/images/games/fish_tycoon/fish_tycoon100x75.jpg','/images/games/fish_tycoon/fish_tycoon179x135.jpg','/images/games/fish_tycoon/fish_tycoon320x240.jpg','false','/images/games/thumbnails_med_2/Fish_Tycoon130x75.gif','/exe/fish_tycoon-setup.exe?lc=es&ext=fish_tycoon-setup.exe','¡Cría peces en un acuario virtual!','Cría y cuida a estos peces exóticos en un acuario virtual en tiempo real.','false',false,false,'Fish Tycoon');ag(111167660,'Star Defender II','/images/games/Star_Defender2/Star_Defender281x46.gif',110109903,111180520,'','false','/images/games/Star_Defender2/Star_Defender216x16.gif',false,11323,'/images/games/Star_Defender2/Star_Defender2100x75.jpg','/images/games/Star_Defender2/Star_Defender2179x135.jpg','/images/games/Star_Defender2/Star_Defender2320x240.jpg','false','/images/games/thumbnails_med_2/Star_Defender2130x75.gif','/exe/Star_Defender_2-setup.exe?lc=es&ext=Star_Defender_2-setup.exe','¡Contraataca a los invasores intergalácticos!','Contraataca a los invasores intergalácticos, cada uno con su propio armamento.','false',false,false,'Star Defender II');ag(111169163,'Alien Stars','/images/games/Alien_Stars/Alien_Stars81x46.gif',110109903,11118287,'','false','/images/games/Alien_Stars/Alien_Stars16x16.gif',false,11323,'/images/games/Alien_Stars/Alien_Stars100x75.jpg','/images/games/Alien_Stars/Alien_Stars179x135.jpg','/images/games/Alien_Stars/Alien_Stars320x240.jpg','false','/images/games/thumbnails_med_2/Alien_Stars130x75.gif','/exe/Alien_Stars-setup.exe?lc=es&ext=Alien_Stars-setup.exe','¡Viaja por el universo con todo tu arsenal!','¡Viaja por el universo con este poderoso caza espacial!','false',false,false,'Alien Stars');ag(111170320,'7 Wonders of the Ancient World','/images/games/7_wonders/7_wonders81x46.jpg',1007,111183900,'','false','/images/games/7_wonders/7_wonders16x16.gif',false,11323,'/images/games/7_wonders/7_wonders100x75.jpg','/images/games/7_wonders/7_wonders179x135.jpg','/images/games/7_wonders/7_wonders320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders130x75.gif','/exe/7_Wonders-setup.exe?lc=es&ext=7_Wonders-setup.exe','¡Construye las 7 maravillas del mundo!','¿Puedes construir las Siete maravillas del mundo?','false',false,false,'7 Wonders');ag(111173220,'Pacific Heroes 2','/images/games/Pacific_Heroes2/Pacific_Heroes281x46.gif',1000,111186707,'','false','/images/games/Pacific_Heroes2/Pacific_Heroes216x16.gif',false,11323,'/images/games/Pacific_Heroes2/Pacific_Heroes2100x75.jpg','/images/games/Pacific_Heroes2/Pacific_Heroes2179x135.jpg','/images/games/Pacific_Heroes2/Pacific_Heroes2320x240.jpg','false','/images/games/thumbnails_med_2/Pacific_Heroes2130x75.gif','/exe/Pacific_Heroes2-setup.exe?lc=es&ext=Pacific_Heroes2-setup.exe','¡Juego de acción con incesantes combates aéreos de la Segunda Guerra Mundial!','¡Prepárate para la incesante acción de la batalla más importante de la Segunda Guerra Mundial!','false',false,false,'PacificHeroes2');ag(111177437,'Mahjong Match','/images/games/mahjong_match/mahjong_match81x46.gif',1006,111190330,'a9639b44-1d49-41b5-be11-017b0e1b2f94','false','/images/games/mahjong_match/mahjong_match16x16.gif',false,11323,'/images/games/mahjong_match/mahjong_match100x75.jpg','/images/games/mahjong_match/mahjong_match179x135.jpg','/images/games/mahjong_match/mahjong_match320x240.jpg','true','/images/games/thumbnails_med_2/mahjong_match130x75.gif','/exe/Mahjong_Match-setup.exe?lc=es&ext=Mahjong_Match-setup.exe','Majohng se une a la emoción de los puzzles.','Majohng, el clásico solitario de emparejar fichas, se une a la diversión de los puzzles.','false',false,false,'Mahjong Match');ag(111178767,'Saints and Sinner Online Bowling','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp81x46.gif',110044360,111191750,'5b93dcf3-8976-4752-b16b-56848b6705d6','true','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp16x16.gif',false,11323,'/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp100x75.jpg','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp179x135.jpg','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp320x240.jpg','false','/images/games/thumbnails_med_2/s_and_s_bowling_mp130x75.gif','','¡Reta a los jugadores de bolos de todo el mundo en línea!','Pon a prueba tus habilidades con los bolos en línea contra santos y pecadores de todo el mundo.','true',false,true,'MP_SS Bowling');ag(111193217,'Theseus: Return of the Hero','/images/games/Theseus/Theseus81x46.gif',110109903,11120697,'','false','/images/games/Theseus/Theseus16x16.gif',false,11323,'/images/games/Theseus/Theseus100x75.jpg','/images/games/Theseus/Theseus179x135.jpg','/images/games/Theseus/Theseus320x240.jpg','false','/images/games/thumbnails_med_2/Theseus130x75.gif','/exe/Theseus-setup.exe?lc=es&ext=Theseus-setup.exe','Resiste la invasión del monstruo alienígena.','Lucha contra los monstruos alienígenas en esta emocionante secuela de Alien Shooter.','false',false,false,'Theseus');ag(111199750,'Cake Mania','/images/games/Cake_Mania/Cake_Mania81x46.gif',110012530,111211360,'de7b18dc-a4ca-439b-b6bb-08c0094a086d','false','/images/games/Cake_Mania/Cake_Mania16x16.gif',false,11323,'/images/games/Cake_Mania/Cake_Mania100x75.jpg','/images/games/Cake_Mania/Cake_Mania179x135.jpg','/images/games/Cake_Mania/Cake_Mania320x240.jpg','false','/images/games/thumbnails_med_2/Cake_Mania130x75.gif','/exe/Cake_Mania-setup.exe?lc=es&ext=Cake_Mania-setup.exe','¡Una crisis culinaria acelerada!','¡Ayuda a Jill a reabrir la panadería de sus abuelos y a mejorar la cocina!','false',false,true,'Cake Mania');ag(111205743,'Tri-Peaks Solitaire To Go','/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire81x46.gif',1004,111217680,'','false','/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire16x16.gif',false,11323,'/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire100x75.jpg','/images/games/Tri-Peaks_Solitaire_To_Go/tripeaks_solitaire179x135.jpg','/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire320x240.jpg','false','/images/games/thumbnails_med_2/tripeaks_solitaire130x75.gif','/exe/Tri-Peaks_Regular-setup.exe?lc=es&ext=Tri-Peaks_Regular-setup.exe','Recorre el mundo jugando al solitario.','Recorre el mundo con este emocionante juego de cartas de ambiente aventurero.','false',false,false,'Tri-Peaks (Regular)');ag(111206710,'Poppit To Go','/images/games/poppit_to_go/poppit_to_go81x46.gif',110119360,111218680,'','false','/images/games/poppit_to_go/poppit_to_go16x16.gif',false,11323,'/images/games/poppit_to_go/poppit_to_go100x75.jpg','/images/games/poppit_to_go/poppit_to_go179x135.jpg','/images/games/poppit_to_go/poppit_to_go320x240.jpg','false','/images/games/thumbnails_med_2/poppit_to_go130x75.gif','/exe/Poppit_Regular-setup.exe?lc=es&ext=Poppit_Regular-setup.exe','Un divertidísimo juego para reventar globos.','Revienta grupos de globos de colores en este reto espinoso.','false',false,false,'Poppit (Regular)');ag(111208880,'Casino Island To Go','/images/games/Casino_Island_To_Go/Casino_Island81x46.gif',1004,111220833,'','false','/images/games/Casino_Island_To_Go/Casino_Island16x16.gif',false,11323,'/images/games/Casino_Island_To_Go/Casino_Island100x75.jpg','/images/games/Casino_Island_To_Go/Casino_Island179x135.jpg','/images/games/Casino_Island_To_Go/Casino_Island320x240.jpg','false','/images/games/thumbnails_med_2/casino_island130x75.gif','/exe/Casino_Island_Regular-setup.exe?lc=es&ext=Casino_Island_Regular-setup.exe','¡Tienes todo a tu favor!','Cinco juegos de casino Island Style, en los que tienes todo a tu favor.','false',false,false,'Casino Island (Regular)');ag(111209113,'Jewel of Atlantis','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis81x46.gif',1007,111221677,'','false','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis16x16.gif',false,11323,'/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis100x75.jpg','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis179x135.jpg','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis320x240.jpg','false','/images/games/thumbnails_med_2/Jewel_of_Atlantis130x75.gif','/exe/Jewel_of_Atlantis-setup.exe?lc=es&ext=Jewel_of_Atlantis-setup.exe','Explora un antiguo continente submarino.','Explora un antiguo continente submarino en busca de místicos tesoros.','false',false,false,'Jewel of Atlantis');ag(111212843,'Diner Dash 2: Restaurant Rescue','/images/games/Diner_Dash_2/Diner_Dash_281x46.gif',110012530,111224490,'febf7d2a-bc58-4fd3-bac7-74a65e28364f','false','/images/games/Diner_Dash_2/Diner_Dash_216x16.gif',false,11323,'/images/games/Diner_Dash_2/Diner_Dash_2100x75.jpg','/images/games/Diner_Dash_2/Diner_Dash_2179x135.jpg','/images/games/Diner_Dash_2/Diner_Dash_2320x240.jpg','false','/images/games/thumbnails_med_2/Diner_Dash_2130x75.gif','/exe/Diner_Dash2-setup.exe?lc=es&ext=Diner_Dash2-setup.exe','¡Más diversión repartiendo platos y ganando propinas!','¡Vuelve al acelerado mundo de servir comidas y ganar propinas!','false',false,false,'Diner Dash 2');ag(111213710,'Pirate Poppers','/images/games/Pirate_Poppers/Pirate_Poppers81x46.gif',110119360,11122540,'f5e80954-8432-4e9a-9398-0353c75386c3','false','/images/games/Pirate_Poppers/Pirate_Poppers16x16.gif',false,11323,'/images/games/Pirate_Poppers/Pirate_Poppers100x75.jpg','/images/games/Pirate_Poppers/Pirate_Poppers179x135.jpg','/images/games/Pirate_Poppers/Pirate_Poppers320x240.jpg','false','/images/games/thumbnails_med_2/Pirate_Poppers130x75.gif','/exe/Pirate_Poppers-setup.exe?lc=es&ext=Pirate_Poppers-setup.exe','Una aventura de capa y espada en alta mar.','Saquea un tesoro oculto de joyas en esta aventura de capa y espada.','false',false,false,'Pirate Poppers');ag(111220923,'Treasure Island','/images/games/Treasure_Island/Treasure_Island81x46.gif',1007,111232913,'','false','/images/games/Treasure_Island/Treasure_Island16x16.gif',false,11323,'/images/games/Treasure_Island/Treasure_Island100x75.jpg','/images/games/Treasure_Island/Treasure_Island179x135.jpg','/images/games/Treasure_Island/Treasure_Island320x240.jpg','false','/images/games/thumbnails_med_2/Treasure_Island130x75.gif','/exe/Treasure_Island-setup.exe?lc=es&ext=Treasure_Island-setup.exe','Encuentra el botín escondido de los piratas.','Sigue un antiguo mapa pirata en busca de tesoros escondidos.','false',false,false,'Treasure Island');ag(111232687,'Ocean Express','/images/games/Ocean_Express/Ocean_Express81x46.gif',1007,111244930,'dfe0b6ca-cc4b-4547-90c2-05d0d926ae56','false','/images/games/Ocean_Express/Ocean_Express16x16.gif',false,11323,'/images/games/Ocean_Express/Ocean_Express100x75.jpg','/images/games/Ocean_Express/Ocean_Express179x135.jpg','/images/games/Ocean_Express/Ocean_Express320x240.jpg','false','/images/games/thumbnails_med_2/Ocean_Express130x75.gif','/exe/Ocean_Express-setup.exe?lc=es&ext=Ocean_Express-setup.exe','¡Haz puzzles a bordo de un carguero!','¡Encaja las piezas del puzzle y navega por la costa con tu carguero!','false',false,false,'Ocean Express');ag(111244427,'Swashbucks To Go','/images/games/swashbucks/swashbucks81x46.gif',110119360,111256393,'','false','/images/games/swashbucks/swashbucks16x16.gif',false,11323,'/images/games/swashbucks/swashbucks100x75.jpg','/images/games/swashbucks/swashbucks179x135.jpg','/images/games/swashbucks/swashbucks320x240.jpg','false','/images/games/thumbnails_med_2/swashbucks130x75.gif','/exe/Swashbucks_Regular-setup.exe?lc=es&ext=Swashbucks_Regular-setup.exe','Una emocionante aventura pirata.','Hazte al mar en busca de un tesoro pirata en esta emocionante aventura de capa y espada.','false',false,false,'Swashbucks (Regular)');ag(111247917,'Elemental','/images/games/Elemental/Elemental81x46.gif',1007,111259870,'754885ec-5a74-4aca-a3d0-5f88e802160d','false','/images/games/Elemental/Elemental16x16.gif',false,11323,'/images/games/Elemental/Elemental100x75.jpg','/images/games/Elemental/Elemental179x135.jpg','/images/games/Elemental/Elemental320x240.jpg','false','/images/games/thumbnails_med_2/elemental130x75.gif','/exe/Elemental_MP-setup.exe?lc=es&ext=Elemental_MP-setup.exe','¡Combina los componentes elementales de la vida!','¡Agua, aire, tierra, fuego! ¡Combina los componentes elementales de la vida!','false',false,false,'Elemental_MP');ag(111249233,'Dream Vacation Solitaire','/images/games/DreamVacSolitaire/DreamVacSolitaire81x46.gif',1004,111261843,'','false','/images/games/DreamVacSolitaire/DreamVacSolitaire16x16.gif',false,11323,'/images/games/DreamVacSolitaire/DreamVacSolitaire100x75.jpg','/images/games/DreamVacSolitaire/DreamVacSolitaire179x135.jpg','/images/games/DreamVacSolitaire/DreamVacSolitaire320x240.jpg','false','/images/games/thumbnails_med_2/DreamVacSolitaire130x75.gif','/exe/Dream_Vacation_Solitaire-setup.exe?lc=es&ext=Dream_Vacation_Solitaire-setup.exe','¡Juega a recorrer el mundo!','¡Recorre el mundo explorando cinco destinos de vacaciones!','false',false,false,'Dream Vacation Solitaire');ag(111252743,'Mahjong Escape: Ancient China','/images/games/MahjongChina/MahjongChina81x46.gif',1006,111264793,'','false','/images/games/MahjongChina/MahjongChina16x16.gif',false,11323,'/images/games/MahjongChina/MahjongChina100x75.jpg','/images/games/MahjongChina/MahjongChina179x135.jpg','/images/games/MahjongChina/MahjongChina320x240.jpg','false','/images/games/thumbnails_med_2/MahjongChina130x75.gif','/exe/Mahjong_Escape_Ancient_China-setup.exe?lc=es&ext=Mahjong_Escape_Ancient_China-setup.exe','¡Reúne los antiguos tesoros chinos!','¡Escápate a la antigua China para recoger los tesoros de la dinastía perdida!','false',false,false,'Mahjong Escape: Ancient China');ag(111263673,'Treasures of the Deep','/images/games/treasuresDeep/treasuresDeep81x46.gif',110012530,111274487,'','false','/images/games/treasuresDeep/treasuresDeep16x16.gif',false,11323,'/images/games/treasuresDeep/treasuresDeep100x75.jpg','/images/games/treasuresDeep/treasuresDeep179x135.jpg','/images/games/treasuresDeep/treasuresDeep320x240.jpg','false','/images/games/thumbnails_med_2/treasuresDeep130x75.gif','/exe/Treasures_of_the_Deep-setup.exe?lc=es&ext=Treasures_of_the_Deep-setup.exe','¡Una aventura rompeladrillos submarina!','¡Explora un mundo submarino de tesoros en esta aventura rompeladrillos 3D!','false',false,false,'Treasures of the Deep');ag(111264743,'Four Houses','/images/games/FourHouse/FourHouse81x46.gif',1007,111275480,'','false','/images/games/FourHouse/FourHouse16x16.gif',false,11323,'/images/games/FourHouse/FourHouse100x75.jpg','/images/games/FourHouse/FourHouse179x135.jpg','/images/games/FourHouse/FourHouse320x240.jpg','false','/images/games/thumbnails_med_2/FourHouse130x75.gif','/exe/Four_Houses-setup.exe?lc=es&ext=Four_Houses-setup.exe','Encuentra patrones para descubrir la sabiduría de la antigüedad.','Descubre la sabiduría de la antigüedad buscando patrones en seres, colores y cantidades.','false',false,false,'Four Houses');ag(111265347,'Luxor','/images/games/luxor/luxor81x46.gif',110119360,111276270,'','false','/images/games/luxor/luxor16x16.gif',false,11323,'/images/games/luxor/luxor100x75.jpg','/images/games/luxor/luxor179x135.jpg','/images/games/luxor/luxor320x240.jpg','false','/images/games/thumbnails_med_2/luxor130x75.gif','/exe/luxor_new-setup.exe?lc=es&ext=luxor_new-setup.exe','¡Salva al antiguo Egipto de la ruina! ¡Una frenética aventura llena rompecabezas!','¡Embárcate en una emocionante aventura para salvar de la ruina al antiguo Egipto!','false',false,false,'Luxor_mj');ag(111270843,'Brickshooter Egypt','/images/games/BrickshooterE/BrickshooterE81x46.gif',110125467,11128113,'','false','/images/games/BrickshooterE/BrickshooterE16x16.gif',false,11323,'/images/games/BrickshooterE/BrickshooterE100x75.jpg','/images/games/BrickshooterE/BrickshooterE179x135.jpg','/images/games/BrickshooterE/BrickshooterE320x240.jpg','false','/images/games/thumbnails_med_2/BrickshooterE130x75.gif','/exe/Brickshooter_Egypt-setup.exe?lc=es&ext=Brickshooter_Egypt-setup.exe','Desentraña los misterios de los antiguos jeroglíficos.','Desentraña los fascinantes misterios de los antiguos jeroglíficos para reconstruir las pirámides.','false',false,false,'Brickshooter Egypt');ag(111291550,'Bengal - Game of Gods','/images/games/benegal_gameofgods/benegal_gameofgods81x46.jpg',110119360,111302713,'','false','/images/games/benegal_gameofgods/benegal_gameofgods16x16.gif',false,11323,'/images/games/benegal_gameofgods/benegal_gameofgods100x75.jpg','/images/games/benegal_gameofgods/benegal_gameofgods179x135.jpg','/images/games/benegal_gameofgods/benegal_gameofgods320x240.jpg','false','/images/games/thumbnails_med_2/benegal_gameofgods130x75.jpg','/exe/Bengal_Game_of_Gods-setup.exe?lc=es&ext=Bengal_Game_of_Gods-setup.exe','Lucha contra la cadena con forma de serpiente.','Golpea la cadena mutante con forma de serpiente para detener su avance.','false',false,false,'Bengal - Game of Gods');ag(111307457,'Galapago','/images/games/galapago/galapago81x46.gif',1007,111318177,'','false','/images/games/galapago/galapago16x16.gif',false,11323,'/images/games/galapago/galapago100x75.jpg','/images/games/galapago/galapago179x135.jpg','/images/games/galapago/galapago320x240.jpg','false','/images/games/thumbnails_med_2/galapago130x75.gif','/exe/Galapago-setup.exe?lc=es&ext=Galapago-setup.exe','Galápago: acumula animales preciosos y gana.','Galápago: Acumula animales preciosos de las islas y observa cómo se transforman en oro.','false',false,false,'Galapago');ag(111310630,'Big Kahuna Reef 2','/images/games/big_kahuna_reef2/big_kahuna_reef281x46.jpg',1007,111322460,'','false','/images/games/big_kahuna_reef2/big_kahuna_reef216x16.gif',false,11323,'/images/games/big_kahuna_reef2/big_kahuna_reef2100x75.jpg','/images/games/big_kahuna_reef2/big_kahuna_reef2179x135.jpg','/images/games/big_kahuna_reef2/big_kahuna_reef2320x240.jpg','false','/images/games/thumbnails_med_2/big_kahuna_reef2130x75.gif','/exe/BKR_2-setup.exe?lc=es&ext=BKR_2-setup.exe','¡Explora espectaculares grutas submarinas!','¡Explora espectaculares grutas submarinas en este juego de parejas explosivo y lleno de aventuras!','false',false,false,'Big Kahuna Reef 2');ag(111311570,'Charm Solitaire','/images/games/charm_solitaire/charm_solitaire81x46.gif',1004,111323180,'','false','/images/games/charm_solitaire/charm_solitaire16x16.gif',false,11323,'/images/games/charm_solitaire/charm_solitaire100x75.jpg','/images/games/charm_solitaire/charm_solitaire179x135.jpg','/images/games/charm_solitaire/charm_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/charm_solitaire130x75.gif','/exe/CharmSolitaire_new-setup.exe?lc=es&ext=CharmSolitaire_new-setup.exe','Un encantador juego de solitario combinado con un rompecabezas.','Un cambio fascinante del solitario con los personajes de Charm Tale.','false',false,false,'CharmSolitaire_new');ag(111321293,'10 Talismans','/images/games/10_talismans/10_talismans81x46.jpg',1007,111333313,'','false','/images/games/10_talismans/10_talismans16x16.gif',false,11323,'/images/games/10_talismans/10_talismans100x75.jpg','/images/games/10_talismans/10_talismans179x135.jpg','/images/games/10_talismans/10_talismans320x240.jpg','false','/images/games/thumbnails_med_2/10_talismans130x75.gif','/exe/10_Talismans-setup.exe?lc=es&ext=10_Talismans-setup.exe','Empareja y colecciona reliquias sagradas!','¡Empareja reliquias sagradas antes de que la mecha encendida llegue hasta el barril de pólvora!','false',false,false,'10 Talismans');ag(111324990,'Kick N Rush','/images/games/kick_n_rush/kick_n_rush81x46.jpg',110109903,111336790,'','false','/images/games/kick_n_rush/kick_n_rush16x16.gif',false,11323,'/images/games/kick_n_rush/kick_n_rush100x75.jpg','/images/games/kick_n_rush/kick_n_rush179x135.jpg','/images/games/kick_n_rush/kick_n_rush320x240.jpg','false','/images/games/thumbnails_med_2/kick_n_rush130x75.gif','/exe/KickNRush-setup.exe?lc=es&ext=KickNRush-setup.exe','¡Impresionante juego de fútbol en 3D!','<b><font color=green> 50% de descuento en el precio de venta de World Cup </font color=green></b>','false',false,false,'Kick N Rush');ag(111351203,'Luxor Bundle','/images/games/luxor_bundle/luxor_bundle81x46.jpg',110119360,111363657,'','false','/images/games/luxor_bundle/luxor_bundle16x16.gif',false,11323,'/images/games/luxor_bundle/luxor_bundle100x75.jpg','/images/games/luxor_bundle/luxor_bundle179x135.jpg','/images/games/luxor_bundle/luxor_bundle320x240.jpg','false','/images/games/thumbnails_med_2/luxor_bundle130x75.gif','/exe/Luxor_Bundle-setup.exe?lc=es&ext=Luxor_Bundle-setup.exe','Dos juegos Luxor al precio de uno.','Dos juegos al precio de uno. ¡Salva al antiguo Egipto de la catástrofe!','false',false,false,'Luxor Bundle');ag(111354570,'Mah-Jomino','/images/games/mah-jomino/mah-jomino81x46.jpg',1006,111366277,'724acaf1-c847-4326-b262-bd809f07e567','false','/images/games/mah-jomino/mah-jomino16x16.gif',false,11323,'/images/games/mah-jomino/mah-jomino100x75.jpg','/images/games/mah-jomino/mah-jomino179x135.jpg','/images/games/mah-jomino/mah-jomino320x240.jpg','false','/images/games/thumbnails_med_2/mah-jomino130x75.gif','/exe/Mah_Jomino-setup.exe?lc=es&ext=Mah_Jomino-setup.exe','Una aventura que combina el Mahjong con el dominó.','Busca a Atlantis en esta combinación única de Mahjong y dominó.','false',false,false,'Mah-Jomino');ag(111355427,'Poker Pop','/images/games/poker_pop/poker_pop81x46.gif',1004,111367397,'8c77ac0e-3e36-410d-be67-4890429d6431','false','/images/games/poker_pop/poker_pop16x16.gif',false,11323,'/images/games/poker_pop/poker_pop100x75.jpg','/images/games/poker_pop/poker_pop179x135.jpg','/images/games/poker_pop/poker_pop320x240.jpg','false','/images/games/thumbnails_med_2/poker_pop130x75.gif','/exe/Poker_Pop-setup.exe?lc=es&ext=Poker_Pop-setup.exe','¡Disfruta del juego de emparejar fichas por todo el mundo!','Avanza por todos los continentes en este juego de combinación de póquer, mahjong y solitario.','false',false,false,'Poker Pop');ag(111382320,'Luxor Mahjong','/images/games/Luxor_Mahjong/Luxor_Mahjong81x46.gif',1006,111394773,'','false','/images/games/Luxor_Mahjong/luxor_mahjong16x16.gif',false,11323,'/images/games/Luxor_Mahjong/Luxor_Mahjong100x75.jpg','/images/games/Luxor_Mahjong/Luxor_Mahjong179x135.jpg','/images/games/Luxor_Mahjong/Luxor_Mahjong320x240.jpg','false','/images/games/thumbnails_med_2/Luxor_Mahjong130x75.gif','/exe/Luxor_Mahjong-setup.exe?lc=es&ext=Luxor_Mahjong-setup.exe','Descubre antiguos tesoros egipcios.','Emprende una búsqueda épica para recuperar antiguos tesoros egipcios.','false',false,false,'Luxor Mahjong');ag(111388343,'Great Escapes Solitaire','/images/games/Great_Escapes_Solitaire/GreatEscapes81x46.gif',1004,111400297,'','false','/images/games/Great_Escapes_Solitaire/GreatEscapes16x16.gif',false,11323,'/images/games/Great_Escapes_Solitaire/GreatEscapes100x75.jpg','/images/games/Great_Escapes_Solitaire/GreatEscapes179x135.jpg','/images/games/Great_Escapes_Solitaire/GreatEscapes320x240.jpg','false','/images/games/thumbnails_med_2/greatEscapes130x75.gif','/exe/Great_Escapes_regular-setup.exe?lc=es&ext=Great_Escapes_regular-setup.exe','12 juegos para todos los niveles de habilidad.','Evádete con 12 emocionantes juegos de solitario para todos los niveles de habilidad.','false',false,false,'Great Escapes (regular)');ag(111416703,'World Class Solitaire','/images/games/world_class_solitaire/world_class_solitaire81x46.jpg',1004,111430657,'','false','/images/games/world_class_solitaire/world_class_solitaire16x16.gif',false,11323,'/images/games/world_class_solitaire/world_class_solitaire100x75.jpg','/images/games/world_class_solitaire/world_class_solitaire179x135.jpg','/images/games/world_class_solitaire/world_class_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/world_class_solitaire130x75.gif','/exe/WorldClassSolitaire_regular-setup.exe?lc=es&ext=WorldClassSolitaire_regular-setup.exe','¡Viaja a exóticos locales por todo el mundo!','¡Viaja a exóticos locales por todo el mundo en este solitario!','false',false,false,'WorldClassSolitaire (regular)');ag(111438590,'Virtual Villagers','/images/games/virtualvillagers/virtualvillagers81x46.gif',110012530,111452470,'','false','/images/games/virtualvillagers/virtualvillagers16x16.gif',false,11323,'/images/games/virtualvillagers/virtualvillagers100x75.jpg','/images/games/virtualvillagers/virtualvillagers179x135.jpg','/images/games/virtualvillagers/virtualvillagers320x240.jpg','false','/images/games/thumbnails_med_2/virtualvillagers130x75.gif','/exe/Virtual_Villagers-setup.exe?lc=es&ext=Virtual_Villagers-setup.exe','Lidera una tribu de gente diminuta.','Dirige la vida cotidiana de una tribu de gente diminuta.','false',false,false,'Virtual Villagers');ag(111473353,'Dynasty','/images/games/Dynasty/Dynasty81x46.jpg',110119360,111487273,'c4431343-5420-4c93-8e75-b18c2f18286e','false','/images/games/Dynasty/dynasty16x16.gif',false,11323,'/images/games/Dynasty/Dynasty100x75.jpg','/images/games/Dynasty/Dynasty179x135.jpg','/images/games/Dynasty/Dynasty320x240.jpg','false','/images/games/thumbnails_med_2/Dynasty130x75.jpg','/exe/Dynasty_new-setup.exe?lc=es&ext=Dynasty_new-setup.exe','¡Libera a los dragones bebé!','Libera a los dragones bebé de sus huevos en este maravilloso juego de disparar bolas.','false',false,false,'Dynasty_new');ag(111543617,'Backspin Billiards','/images/games/backspinbill/backspinbill81x46.gif',110119360,111557210,'','false','/images/games/backspinbill/backspinbill16x16.gif',false,11323,'/images/games/backspinbill/backspinbill100x75.jpg','/images/games/backspinbill/backspinbill179x135.jpg','/images/games/backspinbill/backspinbill320x240.jpg','false','/images/games/thumbnails_med_2/backspinbill130x75.gif','/exe/Backspin_Billards-setup.exe?lc=es&ext=Backspin_Billards-setup.exe','¡Participa en nueve modalidades de billar 3D!','Tiene nueve modos de juego 3D, incluidos ocho bolas, nueve bolas y degollador.','false',false,false,'Backspin Billiards');ag(111545217,'Word Monaco','/images/games/wordmonaco/wordmonaco81x46.gif',110125467,111559390,'','false','/images/games/wordmonaco/wordmonaco16x16.gif',false,11323,'/images/games/wordmonaco/wordmonaco100x75.jpg','/images/games/wordmonaco/wordmonaco179x135.jpg','/images/games/wordmonaco/wordmonaco320x240.jpg','true','/images/games/thumbnails_med_2/wordmonaco130x75.gif','/exe/Word_Monaco-setup.exe?lc=es&ext=Word_Monaco-setup.exe','¡Donde el ingenio verbal se une al solitario!','Una mezcla de formación de palabras y solitario en 6 escenarios mediterráneos.','false',false,false,'Word Monaco');ag(111547587,'Rack em Up Road Trip','/images/games/rack_roadtrip/rack_roadtrip81x46.gif',110119360,111561680,'','false','/images/games/rack_roadtrip/rack_roadtrip16x16.gif',false,11323,'/images/games/rack_roadtrip/rack_roadtrip100x75.jpg','/images/games/rack_roadtrip/rack_roadtrip179x135.jpg','/images/games/rack_roadtrip/rack_roadtrip320x240.jpg','false','/images/games/thumbnails_med_2/rack_roadtrip130x75.gif','/exe/Rack_em_Up_Road_Trip-setup.exe?lc=es&ext=Rack_em_Up_Road_Trip-setup.exe','Únete a una partida de billar por todo el país.','Juega contra un amigo o contra una serie variopinta de personajes.','false',false,false,'Rack em Up Road Trip');ag(111584170,'Harvest Mania To Go','/images/games/harvest_mania/harvest_mania81x46.gif',1007,111599157,'','false','/images/games/harvest_mania/harvest_mania16x16.gif',false,11323,'/images/games/harvest_mania/harvest_mania100x75.jpg','/images/games/harvest_mania/harvest_mania179x135.jpg','/images/games/harvest_mania/harvest_mania320x240.jpg','false','/images/games/thumbnails_med_2/harvest_mania130x75.gif','/exe/Harvest_Mania_Regular-setup.exe?lc=es&ext=Harvest_Mania_Regular-setup.exe','¡Cultiva bonitos vegetales!','Trabaja los campos en este divertido juego de parejas agrícolas.','false',false,false,'Harvest Mania (Regular)');ag(111640927,'Shopmania','/images/games/shopmania/shopmania81x46.gif',110012530,111655507,'','false','/images/games/shopmania/shopmania16x16.gif',false,11323,'/images/games/shopmania/shopmania100x75.jpg','/images/games/shopmania/shopmania179x135.jpg','/images/games/shopmania/shopmania320x240.jpg','false','/images/games/thumbnails_med_2/shopmania130x75.gif','/exe/Shopmania-setup.exe?lc=es&ext=Shopmania-setup.exe','¡Consigue que los clientes compren más!','¡Ayuda a llenar los carros de los clientes como dependiente del nuevo departamento de la tienda!','false',false,false,'Shopmania');ag(111684167,'Treasure Pyramid','/images/games/treasurepyramid/treasurepyramid81x46.gif',110125467,111699997,'','false','/images/games/treasurepyramid/treasurepyramid16x16.gif',false,11323,'/images/games/treasurepyramid/treasurepyramid100x75.jpg','/images/games/treasurepyramid/treasurepyramid179x135.jpg','/images/games/treasurepyramid/treasurepyramid320x240.jpg','false','/images/games/thumbnails_med_2/treasurepyramid130x75.gif','/exe/Treasure_Pyramid-setup.exe?lc=es&ext=Treasure_Pyramid-setup.exe','¡Viaje por los templos perdidos egipcios!','Evita los peligros en tu viaje por los antiguos templos de Egipto sin descubrir.','false',false,false,'Treasure Pyramid');ag(111691437,'Sweetopia','/images/games/Sweetopia/Sweetopia81x46.gif',110119360,111706610,'','false','images/games/Sweetopia/Sweetopia16x16.gif',false,11323,'/images/games/Sweetopia/Sweetopia100x75.jpg','/images/games/Sweetopia/Sweetopia179x135.jpg','/images/games/Sweetopia/Sweetopia320x240.jpg','false','/images/games/thumbnails_med_2/Sweetopia130x75.gif','/exe/Sweetopia-setup.exe?lc=es&ext=Sweetopia-setup.exe','¡Salva la fábrica de caramelos de la ruina!','¡Evita choques entre los caramelos en la cinta transportadora!','false',false,false,'Sweetopia');ag(111692950,'Mahjongg Artifacts','/images/games/mahjonggartifacts/mahjonggartifacts81x46.gif',1006,11170727,'','false','/images/games/mahjonggartifacts/mahjonggartifacts16x16.gif',false,11323,'/images/games/mahjonggartifacts/mahjonggartifacts100x75.jpg','/images/games/mahjonggartifacts/mahjonggartifacts179x135.jpg','/images/games/mahjonggartifacts/mahjonggartifacts320x240.jpg','true','/images/games/thumbnails_med_2/mahjonggartifacts130x75.gif','/exe/Mahjongg_Artifacts-setup.exe?lc=es&ext=Mahjongg_Artifacts-setup.exe','¡Con 3 innovadores modos de juego!','¡Un nuevo y deslumbrante desafío de Mahjongg con 3 innovadores modos de juego!','false',false,false,'Mahjongg Artifacts');ag(111716563,'The Poppit! Show','/images/games/poppit/poppit81x46.gif',110119360,111731533,'','false','/images/games/poppit/poppit16x16.gif',false,11323,'/images/games/poppit/poppit100x75.jpg','/images/games/poppit/poppit179x135.jpg','/images/games/poppit/poppit320x240.jpg','false','/images/games/thumbnails_med_2/poppit130x75.gif','/exe/Poppit_Show_reg-setup.exe?lc=es&ext=Poppit_Show_reg-setup.exe','¡Un divertidísimo juego nuevo para reventar burbujas!','¡Revienta burbujas en tu camino a lo más alto en este juego inspirado en la televisión!','false',false,false,'The_Poppit Show_regular');ag(111730193,'Star Defender 3','/images/games/stardefender3/stardefender381x46.gif',110109903,111745897,'','false','/images/games/stardefender3/stardefender316x16.gif',false,11323,'/images/games/stardefender3/stardefender3100x75.jpg','/images/games/stardefender3/stardefender3179x135.jpg','/images/games/stardefender3/stardefender3320x240.jpg','false','/images/games/thumbnails_med_2/stardefender3130x75.gif','/exe/Star_Defender_3-setup.exe?lc=es&ext=Star_Defender_3-setup.exe','¡Lucha contra miles de bestias alienígenas!','¡Lucha contra miles de bestias alienígenas mientras atacan la Tierra sin piedad!','false',false,false,'Star Defender 3');ag(111734590,'Egyptian Addiction','/images/games/egypt_add/egypt_add81x46.gif',1007,111749873,'','false','/images/games/egypt_add/egypt_add16x16.gif',false,11323,'/images/games/egypt_add/egypt_add100x75.jpg','/images/games/egypt_add/egypt_add179x135.jpg','/images/games/egypt_add/egyptian_add320x240.jpg','false','/images/games/thumbnails_med_2/egypt_add130x75.gif','/exe/Egyptian_Addiction-setup.exe?lc=es&ext=Egyptian_Addiction-setup.exe','¡Descubre las cámaras escondidas de una pirámide!','¡Resuelve puzzles antiguos y descubre las cámaras escondidas de una pirámide mística!','false',false,false,'Egyptian Addiction');ag(111771833,'Jewel Quest Solitaire','/images/games/jewelquest_sol/jewelquest_sol81x46.gif',1004,111786163,'d685fd9d-7efb-4a90-a2e1-0c178ce861ef','false','/images/games/jewelquest_sol/jewelquest_sol16x16.gif',false,11323,'/images/games/jewelquest_sol/jewelquest_sol100x75.jpg','/images/games/jewelquest_sol/jewelquest_sol179x135.jpg','/images/games/jewelquest_sol/jewelquest_sol320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest_sol130x75.gif','/exe/Jewel_Quest_Solitaire-setup.exe?lc=es&ext=Jewel_Quest_Solitaire-setup.exe','¡Empareja cartas para fabricar oro!','¡Empareja cartas para fabricar oro mientras paseas por Sudamérica!','false',false,false,'Jewel Quest Solitaire');ag(111782767,'Cash Cow','/images/games/cashcow/cashcow81x46.gif',1007,111797973,'','false','/images/games/cashcow/cashcow16x16.gif',false,11323,'/images/games/cashcow/cashcow100x75.jpg','/images/games/cashcow/cashcow179x135.jpg','/images/games/cashcow/cashcow320x240.jpg','false','/images/games/thumbnails_med_2/cashcow130x75.gif','/exe/Cash_Cow-setup.exe?lc=es&ext=Cash_Cow-setup.exe','¡El punto de encuentro entre vacas y monedas!','¡Ayuda a la vaca Buck a salvar la granja en este rompecabezas de recuento de monedas!','false',false,false,'Cash Cow');ag(111837550,'Slingo Quest','/images/games/slingoquest/slingoquest81x46.gif',1004,111853847,'','false','/images/games/slingoquest/slingoquest/16x16.gif',false,11323,'/images/games/slingoquest/slingoquest100x75.jpg','/images/games/slingoquest/slingoquest179x135.jpg','/images/games/slingoquest/slingoquest320x240.jpg','false','/images/games/thumbnails_med_2/slingoquest130x75.gif','/exe/Slingo_Quest-setup.exe?lc=es&ext=Slingo_Quest-setup.exe','¡Es como tener 60 juegos en uno!','¡Consigue tu Slingo con nuevas maneras emocionantes de jugar!','false',false,false,'Slingo Quest');ag(111869513,'Magic Match: Enchanted Arena','/images/games/magicmatch-mp/magicmatch-mp81x46.gif',110044360,111885373,'514ef5d6-1d04-4631-8b97-72d0ac40d6ed','true','/images/games/magicmatch-mp/magicmatch-mp16x16.gif',false,11323,'/images/games/magicmatch-mp/magicmatch-mp100x75.jpg','/images/games/magicmatch-mp/magicmatch-mp179x135.jpg','/images/games/magicmatch-mp/magicmatch-mp320x240.jpg','false','/images/games/thumbnails_med_2/magicmatch-mp130x75.gif','','¡El popular “Magic Match”, ahora en modo multijugador!','¡Juega al popular “Magic Match” en esta nueva y emocionante versión multijugador!','true',true,true,'Magic Match_MP');ag(111870673,'Sudoku Titans Multiplayer','/images/games/SudokuTitans_mp/SudokuTitans_mp81x46.gif',110044360,111886627,'4834facc-e89b-43f4-a5c2-ab9248cba62d','true','/images/games/SudokuTitans_mp/SudokuTitans_mp16x16.gif',false,11323,'/images/games/SudokuTitans_mp/SudokuTitans_mp100x75.jpg','/images/games/SudokuTitans_mp/SudokuTitans_mp179x135.jpg','/images/games/SudokuTitans_mp/SudokuTitans_mp320x240.jpg','false','/images/games/thumbnails_med_2/SudokuTitans_mp130x75.gif','','¡Juega al Sudoku en modo multijugador!','“Sudoku Titans” traslada este antiguo juego de ingenio al siglo XXI.','true',false,true,'MP_Sudoku Titans');ag(111939190,'Westward','/images/games/west/west81x46.gif',110012530,111956893,'','false','/images/games/west/west16x16.gif',false,11323,'/images/games/west/west100x75.jpg','/images/games/west/west179x135.jpg','/images/games/west/west320x240.jpg','false','/images/games/thumbnails_med_2/west130x75.gif','/exe/Westward-setup.exe?lc=es&ext=Westward-setup.exe','¡Domina las fronteras del Lejano Oeste!','¡Construye ciudades prósperas en el Oeste mientras descubres a estafadores y rufianes!','false',false,false,'Westward');ag(112025610,'Mahjong Escape: Ancient Japan','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan81x46.gif',1006,112042283,'','false','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan16x16.gif',false,11323,'/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan100x75.jpg','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan179x135.jpg','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan320x240.jpg','false','/images/games/thumbnails_med_2/mahjongescapeancientjapan130x75.gif','/exe/Mahjong_Japan-setup.exe?lc=es&ext=Mahjong_Japan-setup.exe','¡Recoge los tesoros perdidos del emperador!','Empareja las fichas mágicas que te guiarán a los tesoros del emperador.','false',false,false,'Mahjong Escape: Ancient Japan');ag(112027253,'Reaxxion','/images/games/reaxx/reaxx81x46.gif',110012530,112044457,'','false','/images/games/reaxx/reaxx16x16.gif',false,11323,'/images/games/reaxx/reaxx100x75.jpg','/images/games/reaxx/reaxx179x135.jpg','/images/games/reaxx/reaxx320x240.jpg','false','/images/games/thumbnails_med_2/reaxx130x75.gif','/exe/Reaxxion-setup.exe?lc=es&ext=Reaxxion-setup.exe','Caótica aventura rompeladrillos y de manipulación de metal.','Manipula metal líquido en la próxima generación de juegos rompeladrillos.','false',false,false,'Reaxxion');ag(112028410,'Putt Mania','/images/games/puttmania/puttmania81x46.gif',110119360,11204597,'','false','/images/games/puttmania/puttmania16x16.gif',false,11323,'/images/games/puttmania/puttmania100x75.jpg','/images/games/puttmania/puttmania179x135.jpg','/images/games/puttmania/puttmania320x240.jpg','false','/images/games/thumbnails_med_2/puttmania130x75.gif','/exe/Putt_Mania-setup.exe?lc=es&ext=Putt_Mania-setup.exe','','Lanza a los 90 hoyos estrafalarios repletos de saltos, baches, molinos de viento y más.','false',false,false,'Putt Mania');ag(112050487,'Wonderful Wizard of Oz','/images/games/wonderfulwizardofoz/wonderfulwizardofoz81x46.gif',1007,11206780,'','false','/images/games/wonderfulwizardofoz/wonderfulwizardofoz16x16.gif',false,11323,'/images/games/wonderfulwizardofoz/wonderfulwizardofoz100x75.jpg','/images/games/wonderfulwizardofoz/wonderfulwizardofoz179x135.jpg','/images/games/wonderfulwizardofoz/wonderfulwizardofoz320x240.jpg','false','/images/games/thumbnails_med_2/wonderfulwizardofoz130x75.gif','/exe/Wizard_of_Oz-setup.exe?lc=es&ext=Wizard_of_Oz-setup.exe','¡Ayuda a Dorothy a encontrar el camino de vuelta a casa!','Libera a los enanos y ayuda a Dorothy a encontrar el camino de vuelta a casa.','false',false,false,'Wonderfull Wizard of Oz');ag(112064650,'Butterfly Escape','/images/games/butterfly_esc/butterfly_esc81x46.gif',110119360,112082493,'6c6963f6-ac22-41ab-92f4-457199b49998','false','/images/games/butterfly_esc/butterfly_esc16x16.gif',false,11323,'/images/games/butterfly_esc/butterfly_esc100x75.jpg','/images/games/butterfly_esc/butterfly_esc179x135.jpg','/images/games/butterfly_escape/butterfly_escape320x240.jpg','false','/images/games/thumbnails_med_2/butterfly_esc130x75.gif','/exe/Butterfly_Escape-setup.exe?lc=es&ext=Butterfly_Escape-setup.exe','¡Ayuda a la libélula a liberar mariposas!','¡Ayuda a la libélula Buka a liberar mariposas en este rompecabezas de acción en 3D!','false',false,false,'Butterfly Escape');ag(112179547,'MCF: Ravenhearst','/images/games/MCF_raven/MCF_raven81x46.gif',1007,112197467,'','false','/images/games/MCF_raven/MCF_raven16x16.gif',false,11323,'/images/games/MCF_raven/MCF_raven100x75.jpg','/images/games/MCF_raven/MCF_raven179x135.jpg','/images/games/MCF_raven/MCF_raven320x240.jpg','false','/images/games/thumbnails_med_2/MCF_raven130x75.gif','/exe/MCF_Ravenhearst-setup.exe?lc=es&ext=MCF_Ravenhearst-setup.exe','¡Descubre los secretos atemorizantes de la mansión!','¡Descubre pistas que revelarán los secretos atemorizantes de una antigua mansión!','false',false,false,'MCF: Ravenhearst');ag(112195493,'Paparazzi','/images/games/paparazzi/paparazzi81x46.gif',1007,112213913,'06a958f1-f093-4b39-9bfc-82a689aee0bd','false','/images/games/paparazzi/paparazzi16x16.gif',false,11323,'/images/games/paparazzi/paparazzi100x75.jpg','/images/games/paparazzi/paparazzi179x135.jpg','/images/games/paparazzi/paparazzi320x240.jpg','false','/images/games/thumbnails_med_2/paparazzi130x75.gif','/exe/Paparazzi-setup.exe?lc=es&ext=Paparazzi-setup.exe','¡Conviértete en un fotógrafo de una revista del corazón!','¡Extra! ¡Extra! ¡Busca la foto del siglo!','false',false,false,'Paparazzi');ag(112204560,'Gutterball 2','/images/games/gutterball2/gutterball281x46.gif',110119360,112222530,'','false','/images/games/gutterball2/gutterball216x16.gif',false,11323,'/images/games/gutterball2/gutterball2100x75.jpg','/images/games/gutterball2/gutterball2179x135.jpg','/images/games/gutterball2/gutterball2320x240.jpg','false','/images/games/thumbnails_med_2/gutterball2130x75.gif','/exe/Gutterball_2_New-setup.exe?lc=es&ext=Gutterball_2_New-setup.exe','¡Vuelve el mejor juego de bolos en tres dimensiones con veinticinco nuevas y extravagantes bolas!','¡El juego de bolos en 3D más realista, ahora con nuevas bolas y pistas extravagantes!','false',false,false,'Gutterball 2 (New)');ag(112205973,'Magic Match: Genies Journey','/images/games/magicmatch2/magicmatch281x46.gif',1007,112223767,'88c32b41-ee42-4553-9398-f5b3378ff8ae','false','/images/games/magicmatch2/magicmatch216x16.gif',false,11323,'/images/games/magicmatch2/magicmatch2100x75.jpg','/images/games/magicmatch2/magicmatch2179x135.jpg','/images/games/magicmatch2/magicmatch2320x240.jpg','false','/images/games/thumbnails_med_2/magicmatch2130x75.gif','/exe/Magic_Match_2-setup.exe?lc=es&ext=Magic_Match_2-setup.exe','¡Visita países mágicos con un diablillo!','¡Acompaña a Giggles el diablillo en una aventura mágica por Arcania!','false',false,false,'Magic Match Genies Journey');ag(112270203,'Dream Day Wedding','/images/games/dd_wedding/dd_wedding81x46.gif',1007,11228860,'','false','/images/games/dd_wedding/dd_wedding16x16.gif',false,11323,'/images/games/dd_wedding/dd_wedding100x75.jpg','/images/games/dd_wedding/dd_wedding179x135.jpg','/images/games/dd_wedding/dd_wedding320x240.jpg','false','/images/games/thumbnails_med_2/dd_wedding130x75.gif','/exe/Dream_Day_Wedding-setup.exe?lc=es&ext=Dream_Day_Wedding-setup.exe','¡Prepara una espectacular boda romántica!','¡Realiza todos los preparativos de la boda en este romántico juego!','false',false,false,'Dream Day Wedding');ag(112308810,'Fairy Godmother Tycoon(TM)','/images/games/fairygodmother/fairygodmother81x46.gif',110012530,112326797,'','false','/images/games/fairygodmother/fairygodmother16x16.gif',false,11323,'/images/games/fairygodmother/fairygodmother100x75.jpg','/images/games/fairygodmother/fairygodmother179x135.jpg','/images/games/fairygodmother/fairygodmother320x240.jpg','false','/images/games/thumbnails_med_2/fairygodmother130x75.gif','/exe/Fairy_Godmother_regular-setup.exe?lc=es&ext=Fairy_Godmother_regular-setup.exe','¡Construye un imperio de las pócimas!','Construye un imperio de las pócimas. ¡Gana una fortuna!','false',false,false,'Fairy Godmother (regular)');ag(112353223,'Inca Ball','/images/games/incaball/incaball81x46.gif',110119360,11237183,'','false','/images/games/incaball/incaball16x16.gif',false,11323,'/images/games/incaball/incaball100x75.jpg','/images/games/incaball/incaball179x135.jpg','/images/games/incaball/incaball320x240.jpg','false','/images/games/thumbnails_med_2/incaball130x75.gif','/exe/Inca_Ball-setup.exe?lc=es&ext=Inca_Ball-setup.exe','¡Colecciona fascinantes tesoros incas antiguos!','Piensa y actúa con rapidez para coleccionar magníficos tesoros incas antiguos.','false',false,false,'Inca Ball');ag(112473227,'DDD Pool','/images/games/dddPool/dddPool81x46.gif',110119360,112491820,'','false','/images/games/dddPool/dddPool16x16.gif',false,11323,'/images/games/dddPool/dddPool100x75.jpg','/images/games/dddPool/dddPool179x135.jpg','/images/games/dddPool/dddPool320x240.jpg','false','/images/games/thumbnails_med_2/dddPool130x75.gif','/exe/DDD_Pool-setup.exe?lc=es&ext=DDD_Pool-setup.exe','¡Juego de billar en 3D con gráficos fascinantes!','¡Juega al billar en 3D contra tus amigos, el ordenador o el reloj!','false',false,false,'DDD Pool');ag(112548397,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',1007,1125667,'1d086e94-f005-40c7-865c-e698855fb19f','false','/images/games/riseAtlantis/riseAtlantis16x16.gif',false,11323,'/images/games/riseAtlantis/riseAtlantis100x75.jpg','/images/games/riseAtlantis/riseAtlantis179x135.jpg','/images/games/riseAtlantis/riseAtlantis320x240.jpg','true','/images/games/thumbnails_med_2/riseAtlantis130x75.gif','/exe/The_Rise_of_Atlantis-setup.exe?lc=es&ext=The_Rise_of_Atlantis-setup.exe','¡Recupera el continente perdido de la Atlántida!','Recoge los sietes poderes de Poseidón para salvar la Atlántida.','false',false,false,'The Rise of Atlantis');ag(112566127,'Magic Academy','/images/games/magicacademy/magicacademy81x46.gif',110012530,112584923,'','false','/images/games/magicacademy/magicacademy16x16.gif',false,11323,'/images/games/magicacademy/magicacademy100x75.jpg','/images/games/magicacademy/magicacademy179x135.jpg','/images/games/magicacademy/magicacademy320x240.jpg','true','/images/games/thumbnails_med_2/magicacademy130x75.gif','/exe/Magic_Academy-setup.exe?lc=es&ext=Magic_Academy-setup.exe','¡Usa la magia para encontrar a tu hermana!','Contrarresta hechizos y encuentra objetos invisibles para encontrar a tu hermana perdida.','false',false,true,'Magic Academy');ag(112569403,'Escaping Atlantis','/images/games/escapeAtlantis/escapeAtlantis81x46.gif',1007,112587107,'','false','/images/games/escapeAtlantis/escapeAtlantis16x16.gif',false,11323,'/images/games/escapeAtlantis/escapeAtlantis100x75.jpg','/images/games/escapeAtlantis/escapeAtlantis179x135.jpg','/images/games/escapeAtlantis/escapeAtlantis320x240.jpg','false','/images/games/thumbnails_med_2/escapeAtlantis130x75.gif','/exe/Escaping_Atlantis-setup.exe?lc=es&ext=Escaping_Atlantis-setup.exe','¡Descubre pergaminos para escapar de la Atlántida!','Descubre pergaminos y resuelve pistas ocultas para escapar de la Atlántida.','false',false,true,'Escaping Atlantis');ag(112582423,'Aztec Bricks','/images/games/aztecbricks/aztecbricks81x46.gif',110119360,11260017,'','false','/images/games/aztecbricks/aztecbricks16x16.gif',false,11323,'/images/games/aztecbricks/aztecbricks100x75.jpg','/images/games/aztecbricks/aztecbricks179x135.jpg','/images/games/aztecbricks/aztecbricks320x240.jpg','false','/images/games/thumbnails_med_2/aztecbricks130x75.gif','/exe/Aztec_Bricks-setup.exe?lc=es&ext=Aztec_Bricks-setup.exe','¡Juego rompeladrillos al estilo azteca que disparará tu adrenalina!','¡Una aventura rompeladrillos a través de mundos aztecas que disparará tus niveles de adrenalina!','false',false,false,'Aztec Bricks');ag(112594657,'Talismania Deluxe','/images/games/talismania/talismania81x46.gif',1007,112612610,'3dfcfc15-a19a-47f9-9fe3-556a09a47601','false','/images/games/talismania/talismania16x16.gif',false,11323,'/images/games/talismania/talismania100x75.jpg','/images/games/talismania/talismania179x135.jpg','/images/games/talismania/talismania320x240.jpg','false','/images/games/thumbnails_med_2/talismania130x75.gif','/exe/Talismania_Deluxe_new-setup.exe?lc=es&ext=Talismania_Deluxe_new-setup.exe','¡Rompe la maldición de oro del rey Midas!','Ayuda a Midas a luchar contra los monstruos míticos y romper esta antigua maldición.','false',false,false,'Talismania Deluxe (new)');ag(112614887,'Big City Adventure: San Francisco','/images/games/BigCity_SF/BigCity_SF81x46.gif',1007,112632467,'','false','/images/games/BigCity_SF/BigCity_SF16x16.gif',false,11323,'/images/games/BigCity_SF/BigCity_SF100x75.jpg','/images/games/BigCity_SF/BigCity_SF179x135.jpg','/images/games/BigCity_SF/BigCity_SF320x240.jpg','false','/images/games/thumbnails_med_2/BigCity_SF130x75.gif','/exe/Big_City_Adventure-setup.exe?lc=es&ext=Big_City_Adventure-setup.exe','¡Explora las fantásticas atracciones de San Francisco!','Busca miles de elementos escondidos en los lugares más famosos de la ciudad.','false',false,false,'Big City Adventure: San Franci');ag(112615863,'Agatha Christie™ Death on the Nile','/images/games/death_nile/death_nile81x46.gif',1007,112633440,'8ad3622c-8e60-420e-859e-b7e6b618e02b','false','/images/games/death_nile/death_nile16x16.gif',false,11323,'/images/games/death_nile/death_nile100x75.jpg','/images/games/death_nile/death_nile179x135.jpg','/images/games/death_nile/death_nile320x240.jpg','false','/images/games/thumbnails_med_2/death_nile130x75.gif','/exe/Agatha_Christie-setup.exe?lc=es&ext=Agatha_Christie-setup.exe','¡Votado Juego del Año 2007!','Resuelve un misterioso asesinato clásico de Agatha Christie™ como el detective Hercule Poirot, mientras navegas por el Nilo en esta emocionante aventura.','false',false,false,'Agatha Christie');ag(112623650,'Belle’s Beauty Boutique','/images/games/BellesBeauty/BellesBeauty81x46.gif',110012530,112641277,'7b593339-b69d-4300-9955-3db24a194db2','false','/images/games/BellesBeauty/BellesBeauty16x16.gif',false,11323,'/images/games/BellesBeauty/BellesBeauty100x75.jpg','/images/games/BellesBeauty/BellesBeauty179x135.jpg','/images/games/BellesBeauty/BellesBeauty320x240.jpg','false','/images/games/thumbnails_med_2/BellesBeauty130x75.gif','/exe/Belles_Beauty_Boutique-setup.exe?lc=es&ext=Belles_Beauty_Boutique-setup.exe','¡Dirige tu propio salón de belleza!','Corta el pelo a una serie loca de clientas del salón de belleza.','false',false,false,'Belles Beauty Boutique');ag(112630483,'XAvenger','/images/games/xavenger/xavenger81x46.gif',110109903,112648140,'','false','/images/games/xavenger/xavenger16x16.gif',false,11323,'/images/games/xavenger/xavenger100x75.jpg','/images/games/xavenger/xavenger179x135.jpg','/images/games/xavenger/xavenger320x240.jpg','false','/images/games/thumbnails_med_2/xavenger130x75.gif','/exe/XAvenger-setup.exe?lc=es&ext=XAvenger-setup.exe','¡Lucha contra los invasores del espacio exterior!','¡Lucha contra los invasores de Orión desde su nave espacial de alta tecnología XAvenger!','false',false,false,'XAvenger');ag(112662477,'Merriam Webster’s Spell-Jam','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam81x46.gif',110125467,112680150,'','false','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam16x16.gif',false,11323,'/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam100x75.jpg','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam179x135.jpg','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam320x240.jpg','false','/images/games/thumbnails_med_2/MirriamWebster_spelljam130x75.gif','/exe/Merriam_Websters_SpellJam-setup.exe?lc=es&ext=Merriam_Websters_SpellJam-setup.exe','¡Sé el rey de las abejas ortográficas!','Llega a la cima ganando concursos y juegos de ortografía.','false',false,false,'Merriam Websters SpellJam');ag(112663180,'Monarch','/images/games/monarch/monarch81x46.gif',110012530,112681947,'','false','/images/games/monarch/monarch16x16.gif',false,11323,'/images/games/monarch/monarch100x75.jpg','/images/games/monarch/monarch179x135.jpg','/images/games/monarch/monarch320x240.jpg','false','/images/games/thumbnails_med_2/monarch130x75.gif','/exe/Monarch-setup.exe?lc=es&ext=Monarch-setup.exe','¡Rescata a las amigas mariposas del mal!','Ayuda a la mariposa monarca a rescatar a sus amigas.','false',false,false,'Monarch');ag(112689867,'A Pirate’s Legend','/images/games/PiratesLegend/PiratesLegend81x46.gif',1007,112707100,'','false','/images/games/PiratesLegend/PiratesLegend16x16.gif',false,11323,'/images/games/PiratesLegend/PiratesLegend100x75.jpg','/images/games/PiratesLegend/PiratesLegend179x135.jpg','/images/games/PiratesLegend/PiratesLegend320x240.jpg','false','/images/games/thumbnails_med_2/PiratesLegend130x75.gif','/exe/A_Pirates_Legend-setup.exe?lc=es&ext=A_Pirates_Legend-setup.exe','¡Busca los tesoros escondidos de Crimson Jones!','Saquea las islas del sur en busca de los tesoros escondidos de Crimson Jones.','false',false,false,'A Pirates Legend');ag(112690867,'Cathy’s Caribbean Club','/images/games/CathyCaribClub/CathyCaribClub81x46.gif',110127790,112708680,'','false','/images/games/CathyCaribClub/CathyCaribClub16x16.gif',false,11323,'/images/games/CathyCaribClub/CathyCaribClub100x75.jpg','/images/games/CathyCaribClub/CathyCaribClub179x135.jpg','/images/games/CathyCaribClub/CathyCaribClub320x240.jpg','false','/images/games/thumbnails_med_2/CathyCaribClub130x75.gif','/exe/Cathys_Caribbean_Club-setup.exe?lc=es&ext=Cathys_Caribbean_Club-setup.exe','Sirve batidos a los famosos de Hollywood.','Sirve deliciosos batidos a los famosos de Hollywood en tu club caribeño.','false',false,false,'Cathys Caribbean Club');ag(112807570,'Qbeez 2','/images/games/qbeez_2/qbeez_281x46.gif',1007,112837333,'','false','/images/games/qbeez_2/qbeez_216x16.gif',false,11323,'/images/games/qbeez_2/qbeez_2100x75.jpg','/images/games/qbeez_2/qbeez_2179x135.jpg','/images/games/qbeez_2/qbeez_2320x240.jpg','false','/images/games/thumbnails_med_2/qbeez_2130x75.gif','/exe/Qbeez_2_new-setup.exe?lc=es&ext=Qbeez_2_new-setup.exe','Vuelven con nuevos rompecabezas.','Los fantásticos Qbeez vuelven con 12 elementos de rompecabezas nuevos.','false',false,true,'Qbeez 2 (new)');ag(112852170,'Mahjong Adventures','/images/games/Mahjong_Adventures/Mahjong_Adventures81x46.gif',1006,112882780,'','false','/images/games/Mahjong_Adventures/Mahjong_Adventures16x16.gif',false,11323,'/images/games/Mahjong_Adventures/Mahjong_Adventures100x75.jpg','/images/games/Mahjong_Adventures/Mahjong_Adventures179x135.jpg','/images/games/Mahjong_Adventures/Mahjong_Adventures320x240.jpg','false','/images/games/thumbnails_med_2/Mahjong_Adventures130x75.gif','/exe/Mahjong_Adventures_new-setup.exe?lc=es&ext=Mahjong_Adventures_new-setup.exe','¡Encuentra tesoros por todo el mundo!','¡Encuentra fichas y tesoros de oro escondidos en 18 destinos alrededor del mundo!','false',false,false,'Mahjong Adventures (new)');ag(112866767,'NBC Heads-Up Poker','/images/games/NBCPoker/NBCPoker81x46.gif',1004,112896377,'','false','/images/games/NBCPoker/NBCPoker16x16.gif',false,11323,'/images/games/NBCPoker/NBCPoker100x75.jpg','/images/games/NBCPoker/NBCPoker179x135.jpg','/images/games/NBCPoker/NBCPoker320x240.jpg','false','/images/games/thumbnails_med_2/NBCPoker130x75.gif','/exe/NBC_HeadsUp_Poker-setup.exe?lc=es&ext=NBC_HeadsUp_Poker-setup.exe','¡Compite en un torneo de póquer televisado!','Juega a la versión videojuego del popular torneo de póquer de la NBC.','false',false,false,'NBC HeadsUp Poker');ag(112868583,'Chocolatier','/images/games/chocolatier/chocolatier81x46.gif',110127790,112898473,'','false','/images/games/chocolatier/chocolatier16x16.gif',false,11323,'/images/games/chocolatier/chocolatier100x75.jpg','/images/games/chocolatier/chocolatier179x135.jpg','/images/games/chocolatier/chocolatier320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier130x75.gif','/exe/Chocolatier-setup.exe?lc=es&ext=Chocolatier-setup.exe','Crea todo un imperio de chocolate.','Conquista el mundo del chocolate y conviértete en un maestro chocolatero.','false',false,false,'Chocolatier');ag(112883817,'Nanny Mania','/images/games/NannyMania/NannyMania81x46.gif',110012530,112913303,'','false','/images/games/NannyMania/NannyMania16x16.gif',false,11323,'/images/games/NannyMania/NannyMania100x75.jpg','/images/games/NannyMania/NannyMania179x135.jpg','/images/games/NannyMania/NannyMania320x240.jpg','false','/images/games/thumbnails_med_2/NannyMania130x75.gif','/exe/Nanny_Mania-setup.exe?lc=es&ext=Nanny_Mania-setup.exe','Haz las tareas del hogar.','Haz las tareas del hogar mientras cuidas a cuatro niños muy movidos.','false',false,false,'Nanny Mania');ag(112890467,'Tumblebugs','/images/games/Tumblebugs/Tumblebugs81x46.gif',110119360,112920373,'','false','/images/games/Tumblebugs/Tumblebugs16x16.gif',false,11323,'/images/games/Tumblebugs/Tumblebugs100x75.jpg','/images/games/Tumblebugs/Tumblebugs179x135.jpg','/images/games/Tumblebugs/Tumblebugs320x240.jpg','false','/images/games/thumbnails_med_2/Tumblebugs130x75.gif','/exe/Tumblebugs_New-setup.exe?lc=es&ext=Tumblebugs_New-setup.exe','¡Libera a tus hermanos escarabajos!','¡Salva a tus compañeros escarabajos de la esclavitud de los Bichos negros malvados!','false',false,false,'Tumblebugs (New)');ag(112920767,'Alice Greenfingers','/images/games/AliceGreenfingers/AliceGreenfingers81x46.gif',110127790,112950530,'','false','/images/games/AliceGreenfingers/AliceGreenfingers16x16.gif',false,11323,'/images/games/AliceGreenfingers/AliceGreenfingers100x75.jpg','/images/games/AliceGreenfingers/AliceGreenfingers179x135.jpg','/images/games/AliceGreenfingers/AliceGreenfingers320x240.jpg','false','/images/games/thumbnails_med_2/AliceGreenfingers130x75.gif','/exe/Alice_Greenfingers-setup.exe?lc=es&ext=Alice_Greenfingers-setup.exe','Dirige un rentable negocio de jardinería.','Cultiva flores y verduras para venderlas en el mercado de la ciudad.','false',false,false,'Alice Greenfingers');ag(112921190,'MH: Cursed Valley','/images/games/MagiciansHandbook/MagiciansHandbook81x46.gif',1007,11295147,'','false','/images/games/MagiciansHandbook/MagiciansHandbook16x16.gif',false,11323,'/images/games/MagiciansHandbook/MagiciansHandbook100x75.jpg','/images/games/MagiciansHandbook/MagiciansHandbook179x135.jpg','/images/games/MagiciansHandbook/MagiciansHandbook320x240.jpg','false','/images/games/thumbnails_med_2/MagiciansHandbook130x75.gif','/exe/MH_Cursed_Valley-setup.exe?lc=es&ext=MH_Cursed_Valley-setup.exe','Lanza hechizos y descubre secretos.','Encuentra objetos escondidos y lanza hechizos en este juego de gran belleza.','false',false,false,'MH Cursed Valley');ag(112931223,'Lottso','/images/games/lottso_regular/lottso_regular81x46.gif',110012530,112961130,'','false','/images/games/lottso_regular/lottso_regular16x16.gif',false,11323,'/images/games/lottso_regular/lottso_regular100x75.jpg','/images/games/lottso_regular/lottso_regular179x135.jpg','/images/games/lottso_regular/lottso_regular320x240.jpg','false','/images/games/thumbnails_med_2/lottso_regular130x75.gif','/exe/Lottso_Regular-setup.exe?lc=es&ext=Lottso_Regular-setup.exe','¡Agrupa, rasca y gana!','El famoso juego de lotería y bingo de Pogo ya disponible para descargar.','false',false,false,'Lottso (Regular)');ag(112935120,'Cribbage Quest','/images/games/cribbage_quest/cribbage_quest81x46.gif',110125467,112965493,'','false','/images/games/cribbage_quest/cribbage_quest16x16.gif',false,11323,'/images/games/cribbage_quest/cribbage_quest100x75.jpg','/images/games/cribbage_quest/cribbage_quest179x135.jpg','/images/games/cribbage_quest/cribbage_quest320x240.jpg','false','/images/games/thumbnails_med_2/cribbage_quest130x75.gif','/exe/Cribbage_Quest-setup.exe?lc=es&ext=Cribbage_Quest-setup.exe','Encuentra la canica dorada.','Cuenta los combos y mueve las canicas para avanzar en este juego clásico.','false',false,false,'Cribbage Quest');ag(112937360,'Hardwood Solitaire Deluxe','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe81x46.gif',1004,112967140,'','false','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe16x16.gif',false,11323,'/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe100x75.jpg','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe179x135.jpg','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/hardwood_solitaire_deluxe130x75.gif','/exe/hardwood_solitaire_deluxe_new-setup.exe?lc=es&ext=hardwood_solitaire_deluxe_new-setup.exe','¡Juega un solitario con estilo!','Más de 100 nuevos solitarios para jugar como no lo habías hecho hasta ahora.','false',false,false,'hardwood solitaire deluxe (new');ag(112945317,'Chromadrome 2','/images/games/Chromadrome_2/Chromadrome_281x46.gif',110125467,112975143,'','false','/images/games/Chromadrome_2/Chromadrome_216x16.gif',false,11323,'/images/games/Chromadrome_2/Chromadrome_2100x75.jpg','/images/games/Chromadrome_2/Chromadrome_2179x135.jpg','/images/games/Chromadrome_2/Chromadrome_2320x240.jpg','false','/images/games/thumbnails_med_2/Chromadrome_2130x75.gif','/exe/Chromadrome_2-setup.exe?lc=es&ext=Chromadrome_2-setup.exe','Viaja por el universo cuántico.','Viaja por el universo cuántico recorriendo pistas de carrera 3D superrápidas.','false',false,false,'Chromadrome 2');ag(112968990,'Secrets of Olympus','/images/games/secrets_of_olympus/secrets_of_olympus81x46.gif',110012530,112998757,'','false','/images/games/secrets_of_olympus/secrets_of_olympus16x16.gif',false,11323,'/images/games/secrets_of_olympus/secrets_of_olympus100x75.jpg','/images/games/secrets_of_olympus/secrets_of_olympus179x135.jpg','/images/games/secrets_of_olympus/secrets_of_olympus320x240.jpg','false','/images/games/thumbnails_med_2/secrets_of_olympus130x75.gif','/exe/Secrets_of_Olympus-setup.exe?lc=es&ext=Secrets_of_Olympus-setup.exe','¡Descubre los misterios de los dioses griegos!','Utiliza tu destreza para combinar y descubrir los misterios de los dioses griegos.','false',false,false,'Secrets of Olympus');ag(113009953,'Turbo Pizza','/images/games/turbo_pizza/turbo_pizza81x46.gif',110012530,113039830,'','false','/images/games/turbo_pizza/turbo_pizza16x16.gif',false,11323,'/images/games/turbo_pizza/turbo_pizza100x75.jpg','/images/games/turbo_pizza/turbo_pizza179x135.jpg','/images/games/turbo_pizza/turbo_pizza320x240.jpg','false','/images/games/thumbnails_med_2/turbo_pizza130x75.gif','/exe/Turbo_Pizza-setup.exe?lc=es&ext=Turbo_Pizza-setup.exe','¡Conviértete en el dueño de una franquicia de pizzerías!','Crea una franquicia de pizzerías empezando con una receta casera familiar.','false',false,false,'Turbo Pizza');ag(113056167,'Dream Day Honeymoon','/images/games/dream_day_honeymoon/dream_day_honeymoon81x46.gif',110012530,11308627,'','false','/images/games/dream_day_honeymoon/dream_day_honeymoon16x16.gif',false,11323,'/images/games/dream_day_honeymoon/dream_day_honeymoon100x75.jpg','/images/games/dream_day_honeymoon/dream_day_honeymoon179x135.jpg','/images/games/dream_day_honeymoon/dream_day_honeymoon320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_honeymoon130x75.gif','/exe/Dream_Day_Honeymoon-setup.exe?lc=es&ext=Dream_Day_Honeymoon-setup.exe','Segundo de la serie Dream Day: una romántica aventura de buscar y encontrar.','Ayuda a Jenny y Robert a vivir una emocionante luna de miel en esta exclusiva aventura de buscar y encontrar.','false',false,false,'Dream Day Honeymoon');ag(113069720,'Mystery P.I.','/images/games/mystery_pi/mystery_pi81x46.gif',1007,113099487,'','false','/images/games/mystery_pi/mystery_pi16x16.gif',false,11323,'/images/games/mystery_pi/mystery_pi100x75.jpg','/images/games/mystery_pi/mystery_pi179x135.jpg','/images/games/mystery_pi/mystery_pi320x240.jpg','true','/images/games/thumbnails_med_2/mystery_pi130x75.gif','/exe/Mystery_PI-setup.exe?lc=es&ext=Mystery_PI-setup.exe','Encuentra el billete de lotería premiado de la abuela.','Encuentra el billete de lotería de la abuela premiado con 488 millones de dólares antes de que se acabe el plazo.','false',false,false,'Mystery PI');ag(113076263,'Chroma Crash','/images/games/chroma_crash/chroma_crash81x46.gif',110125467,113106983,'','false','/images/games/chroma_crash/chroma_crash16x16.gif',false,11323,'/images/games/chroma_crash/chroma_crash100x75.jpg','/images/games/chroma_crash/chroma_crash179x135.jpg','/images/games/chroma_crash/chroma_crash320x240.jpg','false','/images/games/thumbnails_med_2/chroma_crash130x75.gif','/exe/Chroma_Crash-setup.exe?lc=es&ext=Chroma_Crash-setup.exe','¡Un nuevo emocionante juego de destrucción de bloques en 3D!','Controla la Rana voladora en este rápido rompecabezas de acción en 3D.','false',false,false,'Chroma Crash');ag(113079173,'Snapshot Adventures','/images/games/snapshot_adventures/snapshot_adventures81x46.gif',110012530,113109753,'','false','/images/games/snapshot_adventures/snapshot_adventures16x16.gif',false,11323,'/images/games/snapshot_adventures/snapshot_adventures100x75.jpg','/images/games/snapshot_adventures/snapshot_adventures179x135.jpg','/images/games/snapshot_adventures/snapshot_adventures320x240.jpg','false','/images/games/thumbnails_med_2/snapshot_adventures130x75.gif','/exe/Snapshot_Adventures-setup.exe?lc=es&ext=Snapshot_Adventures-setup.exe','Fotografía 135 especies de pájaros.','Fotografía 135 especies de pájaros en una excursión por el campo.','false',false,false,'Snapshot Adventures');ag(113080210,'Azada','/images/games/Azada/Azada81x46.gif',1007,113110223,'','false','/images/games/Azada/Azada16x16.gif',false,11323,'/images/games/Azada/Azada100x75.jpg','/images/games/Azada/Azada179x135.jpg','/images/games/Azada/Azada320x240.jpg','false','/images/games/thumbnails_med_2/Azada130x75.gif','/exe/Azada-setup.exe?lc=es&ext=Azada-setup.exe','Escapa de una prisión mágica en este rompecabezas.','Resuelve las adivinanzas para escapar de una prisión mágica en este rompecabezas.','false',false,false,'Azada');ag(113101743,'Tasty Planet','/images/games/tastyplanet/tastyplanet81x46.gif',110125467,11313223,'','false','/images/games/tastyplanet/tastyplanet16x16.gif',false,11323,'/images/games/tastyplanet/tastyplanet100x75.jpg','/images/games/tastyplanet/tastyplanet179x135.jpg','/images/games/tastyplanet/tastyplanet320x240.jpg','false','/images/games/thumbnails_med_2/tastyplanet130x75.gif','/exe/Tasty_Planet-setup.exe?lc=es&ext=Tasty_Planet-setup.exe','Cómete las verduras… y un planeta.','Ábrete camino comiendo de todo: desde una bacteria hasta un planeta entero.','false',false,false,'Tasty Planet');ag(113128447,'Daycare Nightmare','/images/games/daycare_nightmare/daycare_nightmare81x46.gif',110012530,113159600,'','false','/images/games/daycare_nightmare/daycare_nightmare16x16.gif',false,11323,'/images/games/daycare_nightmare/daycare_nightmare100x75.jpg','/images/games/daycare_nightmare/daycare_nightmare179x135.jpg','/images/games/daycare_nightmare/daycare_nightmare320x240.jpg','false','/images/games/thumbnails_med_2/daycare_nightmare130x75.gif','/exe/Daycare_Nightmare-setup.exe?lc=es&ext=Daycare_Nightmare-setup.exe','Amor y atenciones para los monstruitos.','Cuida de los monstruitos mientras sus padres trabajan.','false',false,false,'Daycare Nightmare');ag(113143653,'Dream Chronicles','/images/games/dream_chronicles/dream_chronicles81x46.gif',110012530,113174903,'','false','/images/games/dream_chronicles/dream_chronicles16x16.gif',false,11323,'/images/games/dream_chronicles/dream_chronicles100x75.jpg','/images/games/dream_chronicles/dream_chronicles179x135.jpg','/images/games/dream_chronicles/dream_chronicles320x240.jpg','true','/images/games/thumbnails_med_2/dream_chronicles130x75.gif','/exe/Dream_Chronicles-setup.exe?lc=es&ext=Dream_Chronicles-setup.exe','¡Donde la fantasía y la realidad se confunden!','Rompe un misterioso hechizo durmiente que afecta a toda una ciudad.','false',false,false,'Dream Chronicles');ag(113149420,'G.H.O.S.T. Hunters','/images/games/ghost_hunters/ghost_hunters81x46.gif',1007,113180357,'','false','/images/games/ghost_hunters/ghost_hunters16x16.gif',false,11323,'/images/games/ghost_hunters/ghost_hunters100x75.jpg','/images/games/ghost_hunters/ghost_hunters179x135.jpg','/images/games/ghost_hunters/ghost_hunters320x240.jpg','true','/images/games/thumbnails_med_2/ghost_hunters130x75.gif','/exe/GHOST_Hunters-setup.exe?lc=es&ext=GHOST_Hunters-setup.exe','¿Una casa encantada? ¿O un ingenioso engaño?','Investigue un posible caso de encantamiento... o desvele un ingenioso engaño.','false',false,false,'GHOST Hunters');ag(113217220,'Brainiversity','/images/games/brainiversity/brainiversity81x46.gif',110125467,113248113,'','false','/images/games/brainiversity/brainiversity16x16.gif',false,11323,'/images/games/brainiversity/brainiversity100x75.jpg','/images/games/brainiversity/brainiversity179x135.jpg','/images/games/brainiversity/brainiversity320x240.jpg','false','/images/games/thumbnails_med_2/brainiversity130x75.gif','/exe/Brainiversity-setup.exe?lc=es&ext=Brainiversity-setup.exe','Ejercita tus neuronas.','Estimula tu cerebro con 16 actividades distintas para entrenarlo.','false',false,false,'Brainiversity');ag(113274727,'Interpol: The Trail of Dr. Chaos','/images/games/interpol/interpol81x46.gif',1007,113305150,'','false','/images/games/interpol/interpol16x16.gif',false,11323,'/images/games/interpol/interpol100x75.jpg','/images/games/interpol/interpol179x135.jpg','/images/games/interpol/interpol320x240.jpg','false','/images/games/thumbnails_med_2/interpol130x75.gif','/exe/Interpol_The_Trail_of_Dr_Chaos-setup.exe?lc=es&ext=Interpol_The_Trail_of_Dr_Chaos-setup.exe','¡Encuentra los objetos corruptos del doctor!','¡Encuentra los objetos ocultos para impedir que el Dr. Chaos destruya el mundo!','false',false,false,'Interpol The Trail of Dr Chaos');ag(113297350,'Cake Mania 2','/images/games/Cake_mania_2/Cake_mania_281x46.gif',110012530,11332883,'','false','/images/games/Cake_mania_2/Cake_mania_216x16.gif',false,11323,'/images/games/Cake_mania_2/Cake_mania_2100x75.jpg','/images/games/Cake_mania_2/Cake_mania_2179x135.jpg','/images/games/Cake_mania_2/Cake_mania_2320x240.jpg','true','/images/games/thumbnails_med_2/Cake_mania_2130x75.gif','/exe/Cake_Mania_2-setup.exe?lc=es&ext=Cake_Mania_2-setup.exe','Nuevas aventuras en la panadería.','Sirve deliciosos pasteles a clientes estrafalarios en la última aventura en la panadería de Jill.','false',false,false,'Cake Mania 2');ag(113313917,'Jewel Quest® Solitaire II','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_281x46.gif',1004,11334443,'','false','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_216x16.gif',false,11323,'/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_2100x75.jpg','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_2179x135.jpg','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_2320x240.jpg','true','/images/games/thumbnails_med_2/Jewel_Quest_Solitaire_2130x75.gif','/exe/Jewel_Quest_Solitaire_2-setup.exe?lc=es&ext=Jewel_Quest_Solitaire_2-setup.exe','¡Vete de viaje salvaje por África!','Ayuda a Emma a encontrar a su marido en esta aventura africana de resolución de misterios.','false',false,false,'Jewel Quest Solitaire 2');ag(113342230,'5 Realms of Cards','/images/games/5_realms_of_cards/5_realms_of_cards81x46.gif',110125467,113373480,'','false','/images/games/5_realms_of_cards/5_realms_of_cards16x16.gif',false,11323,'/images/games/5_realms_of_cards/5_realms_of_cards100x75.jpg','/images/games/5_realms_of_cards/5_realms_of_cards179x135.jpg','/images/games/5_realms_of_cards/5_realms_of_cards320x240.jpg','false','/images/games/thumbnails_med_2/5_realms_of_cards130x75.gif','/exe/5_Realms_of_Cards-setup.exe?lc=es&ext=5_Realms_of_Cards-setup.exe','Descubre las historias de 5 reinos de cartas.','Ayuda a la princesa a restaurar la paz en este juego de solitario de cuento de hadas.','false',false,false,'5 Realms of Cards');ag(113347547,'ZoomBook','/images/games/zoombook/zoombook81x46.gif',1007,113378403,'','false','/images/games/zoombook/zoombook16x16.gif',false,11323,'/images/games/zoombook/zoombook100x75.jpg','/images/games/zoombook/zoombook179x135.jpg','/images/games/zoombook/zoombook320x240.jpg','false','/images/games/thumbnails_med_2/zoombook130x75.gif','/exe/ZoomBook-setup.exe?lc=es&ext=ZoomBook-setup.exe','Descubre los templos y los tesoros de los mayas.','Atrévete a adentrarte por los misteriosos templos mayas en este rompecabezas repleto de suspense.','false',false,false,'ZoomBook');ag(113354760,'Zuma Deluxe','/images/games/zuma/zuma81x46.gif',110097120,113385730,'e8a09536-9041-4700-b600-790f893f7ea0','false','/images/games/zuma/zuma16x16.gif',false,11323,'/images/games/zuma/zuma100x75.jpg','/images/games/zuma/zuma179x135.jpg','/images/games/zuma/zuma320x240.jpg','false','/images/games/thumbnails_med_2/zuma130x75.gif','/exe/Zuma_Deluxe-Setup.exe?lc=es&ext=Zuma_Deluxe-Setup.exe','¡Descubre los secretos legendarios de Zuma!','Descubre más de veinte antiguos templos en este rompecabezas lleno de acción.','true',false,false,'Zuma OL');ag(113379700,'RocketMania!','/images/games/rocketmania/rocketmania81x46.gif',110097120,113410683,'2c8f6025-d67a-446c-bf82-c85ef6c0a9e9','false','/images/games/rocketmania/rocketmania16x16.gif',false,11323,'/images/games/rocketmania/rocketmania100x75.jpg','/images/games/rocketmania/rocketmania179x135.jpg','/images/games/rocketmania/rocketmania320x240.jpg','false','/images/games/thumbnails_med_2/rocketmania130x75.gif','','¡Conecta los fusibles para lanzar los fuegos artificiales!','¡Conecta los fusibles y observa cómo vuelan las chispas en este rompecabezas pirotécnico!','true',false,false,'rocket_mania OL');ag(113402450,'Bolitas de pelo','/images/games/Chuzzle/Chuzzle81x46.gif',110097120,113433433,'548d93bc-b5ed-439b-8358-1ed4b8812a05','false','/images/games/Chuzzle/Chuzzle16x16.gif',false,11323,'/images/games/Chuzzle/Chuzzle100x75.jpg','/images/games/Chuzzle/Chuzzle179x135.jpg','/images/games/Chuzzle/Chuzzle320x240.jpg','false','/images/games/thumbnails_med_2/Chuzzle130x75.gif','/exe/chuzzle-setup.exe?lc=es&ext=chuzzle-setup.exe','¡Oye cómo ríen y chillan!','¡Gana trofeos, desbloquea juegos secretos y óyelos chillar!','true',false,false,'Chuzzle OL');ag(113405543,'Sudoku Quest','/images/games/sudoku_quest/sudokuquest81x46.gif',110097120,113436527,'39582cb4-e825-4f0d-bdaf-7bbca8f9953a','false','/images/games/sudoku_quest/sudokuquest16x16.gif',false,11323,'/images/games/sudoku_quest/sudokuquest100x75.jpg','/images/games/sudoku_quest/sudokuquest179x135.jpg','/images/games/sudoku_quest/sudokuquest320x240.jpg','false','/images/games/thumbnails_med_2/sudokuquest130x75.gif','/exe/sudoku_quest-setup.exe?lc=es&ext=sudoku_quest-setup.exe','¿Aún no juegas Sudoku?','El nuevo y desafiante rompecabezas que cautivó al público.','true',false,false,'Sudoku Quest OL');ag(113412760,'Granny In Paradise','/images/games/granny_paradise/granny_paradise81x46.gif',110097120,113443747,'2090c7ff-5b7d-49d0-8536-2d061dc62438','false','/images/games/granny_paradise/granny_paradise16x16.gif',false,11323,'/images/games/granny_paradise/granny_paradise100x75.jpg','/images/games/granny_paradise/granny_paradise179x135.jpg','/images/games/granny_paradise/granny_paradise320x240.jpg','true','/images/games/thumbnails_med_2/granny_paradise130x75.gif','','¡Ayuda a la abuela a rescatar a sus gatitos!','¡Ayuda a la abuela a rescatar a sus gatitos y a ser más lista que el vil Dr. Meow!','true',false,false,'Granny In Paradise OL');ag(113413793,'Hexalot','/images/games/Hexalot/Hexalot81x46.gif',110097120,113444760,'00d3a1aa-c6e5-422c-85fd-c0e74bee21e1','false','/images/games/Hexalot/Hexalot16x16.gif',false,11323,'/images/games/Hexalot/Hexalot100x75.jpg','/images/games/Hexalot/Hexalot179x135.jpg','/images/games/Hexalot/Hexalot320x240.jpg','false','/images/games/thumbnails_med_2/Hexalot130x75.gif','/exe/Hexalot-setup.exe?lc=es&ext=Hexalot-setup.exe','¡Una endiablada aventura medieval!','¡Construye puentes en los peligrosos paisajes del rompecabezas en esta endiablada aventura!','true',false,false,'Hexalot OL');ag(113414823,'The Lost City of Gold','/images/games/Lost_City_of_Gold/Lost_City_of_Gold81x46.gif',110097120,113445793,'7bfbb7e5-9319-451f-a4ce-6fa00e8f9648','false','/images/games/Lost_City_of_Gold/Lost_City_of_Gold16x16.gif',false,11323,'/images/games/Lost_City_of_Gold/Lost_City_of_Gold100x75.jpg','/images/games/Lost_City_of_Gold/Lost_City_of_Gold179x135.jpg','/images/games/Lost_City_of_Gold/Lost_City_of_Gold320x240.jpg','false','/images/games/thumbnails_med_2/Lost_City_of_Gold130x75.gif','/exe/The_Lost_City_of_Gold-setup.exe?lc=es&ext=The_Lost_City_of_Gold-setup.exe','¡Una aventura para recuperar tesoros escondidos!','¡Aventura por junglas peligrosas y ríos engañosos para recuperar el tesoro escondido!','true',false,false,'The Lost City of Gold OL');ag(113415840,'Luxor: Amun Rising','/images/games/luxor_amun/luxor_amun81x46.gif',110097120,113446823,'f5700530-4529-414a-8da6-c22d05eaddc7','false','/images/games/luxor_amun/luxor_amun16x16.gif',false,11323,'/images/games/luxor_amun/luxor_amun100x75.jpg','/images/games/luxor_amun/luxor_amun179x135.jpg','/images/games/luxor_amun/luxor_amun320x240.jpg','false','/images/games/thumbnails_med_2/luxor_amun130x75.gif','/exe/Luxor_Amun_Rising-setup.exe?lc=es&ext=Luxor_Amun_Rising-setup.exe','¡Salva al antiguo Egipto de la destrucción!','¡Destruye las esferas invasoras antes de que alcancen las pirámides del antiguo Egipto!','true',false,false,'Luxor: Amun Rising OL');ag(113420980,'Fish Tycoon','/images/games/fish_tycoon/fish_tycoon81x46.gif',110097120,113451963,'9e10b30f-0507-4a3b-aa90-bfa3a0281bc9','false','/images/games/fish_tycoon/fish_tycoon16x16.gif',false,11323,'/images/games/fish_tycoon/fish_tycoon100x75.jpg','/images/games/fish_tycoon/fish_tycoon179x135.jpg','/images/games/fish_tycoon/fish_tycoon320x240.jpg','false','/images/games/thumbnails_med_2/fish_tycoon130x75.gif','/exe/fish_tycoon-setup.exe?lc=es&ext=fish_tycoon-setup.exe','¡Cría peces en un acuario virtual!','Cría y cuida a estos peces exóticos en un acuario virtual en tiempo real.','true',false,false,'Fish Tycoon OL');ag(113434387,'Tino’s Fruit Stand','/images/games/tinos_fruit_stand/tinos_fruit_stand81x46.gif',110097120,113465370,'edd7e0be-99ea-47e1-90c1-c02243e7f9b3','false','/images/games/tinos_fruit_stand/tinos_fruit_stand16x16.gif',false,11323,'/images/games/tinos_fruit_stand/tinos_fruit_stand100x75.jpg','/images/games/tinos_fruit_stand/tinos_fruit_stand179x135.jpg','/images/games/tinos_fruit_stand/tinos_fruit_stand320x240.jpg','false','/images/games/thumbnails_med_2/tinos_fruit_stand130x75.gif','','¡Completa con más rapidez los pedidos de fruta de los clientes!','¡Ayuda a salvar el puesto de fruta de Tino completando correctamente con más rapidez los pedidos de fruta!','true',false,false,'Tinos Fruit Stand OL');ag(113435403,'Glyph','/images/games/glyph/glyph81x46.gif',110097120,113466387,'716d5f2f-b6b9-4621-b521-905cec938ce9','false','/images/games/glyph/glyph16x16.gif',false,11323,'/images/games/glyph/glyph100x75.jpg','/images/games/glyph/glyph179x135.jpg','/images/games/glyph/glyph320x240.jpg','false','/images/games/thumbnails_med_2/glyph130x75.gif','','Salva el mundo agonizante de Kuros.','Salva el mundo agonizante de Kuros reuniendo símbolos antiguos.','true',false,false,'Glyph OL');ag(113437463,'Hidden Expedition: Titanic','/images/games/he_titanic/he_titanic81x46.gif',110097120,113468450,'88d619e1-b65d-42f5-a0cd-9bed5bb1bea1','false','/images/games/he_titanic/he_titanic16x16.gif',false,11323,'/images/games/he_titanic/he_titanic100x75.jpg','/images/games/he_titanic/he_titanic179x135.jpg','/images/games/he_titanic/he_titanic320x240.jpg','false','/images/games/thumbnails_med_2/he_titanic130x75.gif','','¡Busca joyas en el naufragio!','¡Busca la joyas de la corona en el naufragio de esta majestuosa nave hundida!','true',false,false,'Hidden Expedition Titanic OL');ag(113439527,'Luxor 2','/images/games/luxor2/luxor281x46.gif',110097120,113470510,'71ce6af0-36ef-46fe-bd59-973682770101','false','/images/games/luxor2/luxor216x16.gif',false,11323,'/images/games/luxor2/luxor2100x75.jpg','/images/games/luxor2/luxor2179x135.jpg','/images/games/luxor2/luxor2320x240.jpg','false','/images/games/thumbnails_med_2/luxor2130x75.gif','/exe/Luxor_2-setup.exe?lc=es&ext=Luxor_2-setup.exe','¡La secuela del juego nº 1 de 2005!','¡Dispara y destruye esferas mágicas antes de que lleguen a las pirámides!','true',false,false,'Luxor 2 OL');ag(113441573,'Jewel Quest Solitaire','/images/games/jewelquest_sol/jewelquest_sol81x46.gif',110097120,113472560,'d685fd9d-7efb-4a90-a2e1-0c178ce861ef','false','/images/games/jewelquest_sol/jewelquest_sol16x16.gif',false,11323,'/images/games/jewelquest_sol/jewelquest_sol100x75.jpg','/images/games/jewelquest_sol/jewelquest_sol179x135.jpg','/images/games/jewelquest_sol/jewelquest_sol320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest_sol130x75.gif','/exe/Jewel_Quest_Solitaire-setup.exe?lc=es&ext=Jewel_Quest_Solitaire-setup.exe','¡Empareja cartas para fabricar oro!','¡Empareja cartas para fabricar oro mientras paseas por Sudamérica!','true',false,false,'Jewel Quest Solitaire OL');ag(113446730,'Jewel Quest II','/images/games/jewel_quest_2/jewel_quest_281x46.gif',110097120,113477713,'54014b8f-5b4f-4d66-a4fd-64874b5069e0','false','/images/games/jewel_quest_2/jewel_quest_216x16.gif',false,11323,'/images/games/jewel_quest_2/jewel_quest_2100x75.jpg','/images/games/jewel_quest_2/jewel_quest_2179x135.jpg','/images/games/jewel_quest_2/jewel_quest_2320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_2130x75.gif','/exe/Jewel_Quest_2-setup.exe?lc=es&ext=Jewel_Quest_2-setup.exe','¡Embárcate en una aventura brillante!','Vuelve la aventura para emparejar joyas más buscada.','true',false,false,'Jewel Quest 2 OL');ag(113537610,'Build-a-lot','/images/games/build_a_lot/build_a_lot81x46.gif',110012530,113568987,'','false','/images/games/build_a_lot/build_a_lot16x16.gif',false,11323,'/images/games/build_a_lot/build_a_lot100x75.jpg','/images/games/build_a_lot/build_a_lot179x135.jpg','/images/games/build_a_lot/build_a_lot320x240.jpg','false','/images/games/thumbnails_med_2/build_a_lot130x75.gif','/exe/Build_a_lot-setup.exe?lc=es&ext=Build_a_lot-setup.exe','¡Derriba casas para tener grandes beneficios!','Conviértete en un magnate inmobiliario y controla el mercado de la vivienda.','false',false,false,'Build a lot');ag(113554713,'Plant Tycoon®','/images/games/plant_tycoon/plant_tycoon81x46.gif',1007,113585197,'','false','/images/games/plant_tycoon/plant_tycoon16x16.gif',false,11323,'/images/games/plant_tycoon/plant_tycoon100x75.jpg','/images/games/plant_tycoon/plant_tycoon179x135.jpg','/images/games/plant_tycoon/plant_tycoon320x240.jpg','false','/images/games/thumbnails_med_2/plant_tycoon130x75.gif','/exe/Plant_Tycoon-setup.exe?lc=es&ext=Plant_Tycoon-setup.exe','Cultiva y vende plantas exuberantes.','Cultiva y vende plantas en este genial juego de simulación de jardinería.','false',false,false,'Plant Tycoon');ag(113555820,'Mahjongg Artifacts 2','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_281x46.gif',1006,113586680,'','false','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_216x16.gif',false,11323,'/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2100x75.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2179x135.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2320x240.jpg','false','/images/games/thumbnails_med_2/mahjongg_artifacts_2130x75.gif','/exe/Mahjongg_Artifacts_2-setup.exe?lc=es&ext=Mahjongg_Artifacts_2-setup.exe','¡Una increíble aventura emparejando fichas!','Colecciona perlas para adquirir poderes especiales en esta aventura de emparejar fichas.','false',false,false,'Mahjongg Artifacts 2');ag(113556197,'Stone of Destiny','/images/games/stone_of_destiny/stone_of_destiny81x46.gif',1007,113587823,'','false','/images/games/stone_of_destiny/stone_of_destiny16x16.gif',false,11323,'/images/games/stone_of_destiny/stone_of_destiny100x75.jpg','/images/games/stone_of_destiny/stone_of_destiny179x135.jpg','/images/games/stone_of_destiny/stone_of_destiny320x240.jpg','false','/images/games/thumbnails_med_2/stone_of_destiny130x75.gif','/exe/Stone_of_Destiny-setup.exe?lc=es&ext=Stone_of_Destiny-setup.exe','Explora el mundo para encontrar objetos escondidos.','Explora para encontrar objetos escondidos en ciudades de todo el mundo.','false',false,false,'Stone of Destiny');ag(113558480,'Cafe Mahjongg','/images/games/cafe_mahjong/cafe_mahjong81x46.gif',1006,113589167,'','false','/images/games/cafe_mahjong/cafe_mahjong16x16.gif',false,11323,'/images/games/cafe_mahjong/cafe_mahjong100x75.jpg','/images/games/cafe_mahjong/cafe_mahjong179x135.jpg','/images/games/cafe_mahjong/cafe_mahjong320x240.jpg','false','/images/games/thumbnails_med_2/cafe_mahjong130x75.gif','/exe/Cafe_Mahjongg-setup.exe?lc=es&ext=Cafe_Mahjongg-setup.exe','¡Empareja las fichas para ganar cafés exóticos!','Empareja las fichas para ganar tus cafés favoritos cultivados en diferentes países.','false',false,false,'Cafe Mahjongg');ag(113609633,'Butterfly Escape','/images/games/butterfly_escape/butterfly_escape81x46.gif',110097120,113640557,'6c6963f6-ac22-41ab-92f4-457199b49998','false','/images/games/butterfly_escape/butterfly_escape16x16.gif',false,11323,'/images/games/butterfly_escape/butterfly_escape100x75.jpg','/images/games/butterfly_escape/butterfly_escape179x135.jpg','/images/games/butterfly_escape/butterfly_escape320x240.jpg','false','/images/games/thumbnails_med_2/butterfly_escape130x75.gif','/exe/Butterfly_Escape-setup.exe?lc=es&ext=Butterfly_Escape-setup.exe','¡Ayuda a la libélula a liberar mariposas!','¡Ayuda a la libélula Buka a liberar mariposas en este rompecabezas de acción en 3D!','true',false,false,'Butterfly Escape OL');ag(113639610,'Hearts','/images/games/Hearts_MP/Hearts_MP81x46.gif',110044360,113670593,'6f462bd6-6896-4f37-80dd-e1cec81cea5b','true','/images/games/Hearts_MP/Hearts_MP16x16.gif',false,11323,'/images/games/Hearts_MP/Hearts_MP100x75.jpg','/images/games/Hearts_MP/Hearts_MP179x135.jpg','/images/games/Hearts_MP/Hearts_MP320x240.jpg','false','/images/games/thumbnails_med_2/Hearts_MP130x75.gif','','¡Vuelve a descubrir un clásico de los juegos de cartas!','¡Vuelve a descubrir Hearts y juega con gente de todo el mundo!','true',true,true,'Hearts (mp)');ag(113644907,'Gold Miner Vegas','/images/games/gold_miner_vegas/gold_miner_vegas81x46.gif',110125467,113675483,'02a12f6e-aa9a-4d76-aa3b-7021554684ff','false','/images/games/gold_miner_vegas/gold_miner_vegas16x16.gif',false,11323,'/images/games/gold_miner_vegas/gold_miner_vegas100x75.jpg','/images/games/gold_miner_vegas/gold_miner_vegas179x135.jpg','/images/games/gold_miner_vegas/gold_miner_vegas320x240.jpg','false','/images/games/thumbnails_med_2/gold_miner_vegas130x75.gif','/exe/Gold_Miner_Vegas-setup.exe?lc=es&ext=Gold_Miner_Vegas-setup.exe','Extrae oro de las minas con nuevos artilugios.','Con los nuevos artilugios para extraer oro, la tarea es más fácil que nunca.','false',false,false,'Gold Miner Vegas');ag(113645300,'Mahjong Roadshow™','/images/games/mahjong_roadshow/mahjong_roadshow81x46.gif',1006,113676953,'','false','/images/games/mahjong_roadshow/mahjong_roadshow16x16.gif',false,11323,'/images/games/mahjong_roadshow/mahjong_roadshow100x75.jpg','/images/games/mahjong_roadshow/mahjong_roadshow179x135.jpg','/images/games/mahjong_roadshow/mahjong_roadshow320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_roadshow130x75.gif','/exe/Mahjong_Roadshow-setup.exe?lc=es&ext=Mahjong_Roadshow-setup.exe','¡Busca tesoros antiguos!','Embárcate en una caza de tesoros en busca de antigüedades de valor incalculable.','false',false,false,'Mahjong Roadshow');ag(113646970,'3D Ultra Minigolf Adventures','/images/games/3d_ultra_minigolf_adventures/3d_ultra_minigolf_adventures81x46.gif',110119360,113677847,'','false','/images/games/3d_ultra_minigolf_adventures/3d_ultra_minigolf_adventures16x16.gif',false,11323,'/images/games/3d_ultra_minigolf_adventures/3d_ultra_minigolf_adventures100x75.jpg','/images/games/3d_ultra_minigolf_adventures/3d_ultra_minigolf_adventures179x135.jpg','/images/games/3d_ultra_minigolf_adventures/3d_ultra_minigolf_adventures320x240.jpg','false','/images/games/thumbnails_med_2/3d_ultra_minigolf_adventures130x75.gif','/exe/3D_Ultra_Minigolf_Adventures-setup.exe?lc=es&ext=3D_Ultra_Minigolf_Adventures-setup.exe','¡Juega 36 agujeros en campos en 3D!','Ábrete camino por 36 divertidos agujeros en campos de minigolf en 3D.','false',false,false,'3D Ultra Minigolf Adventures');ag(113653543,'Poker Pop','/images/games/poker_pop/poker_pop81x46.gif',110097120,113684530,'8c77ac0e-3e36-410d-be67-4890429d6431','false','/images/games/poker_pop/poker_pop16x16.gif',false,11323,'/images/games/poker_pop/poker_pop100x75.jpg','/images/games/poker_pop/poker_pop179x135.jpg','/images/games/poker_pop/poker_pop320x240.jpg','false','/images/games/thumbnails_med_2/poker_pop130x75.gif','/exe/Poker_Pop-setup.exe?lc=es&ext=Poker_Pop-setup.exe','¡Disfruta del juego de emparejar fichas por todo el mundo!','Avanza por todos los continentes en este juego de combinación de póquer, mahjong y solitario.','true',false,false,'Poker Pop OL');ag(113666647,'Luxor 3','/images/games/luxor3_new/luxor3_new81x46.gif',110119360,113697223,'','false','/images/games/luxor3_new/luxor3_new16x16.gif',false,11323,'/images/games/luxor3_new/luxor3_new100x75.jpg','/images/games/luxor3_new/luxor3_new179x135.jpg','/images/games/luxor3_new/luxor3_new320x240.jpg','false','/images/games/thumbnails_med_2/luxor3_new130x75.gif','/exe/Luxor_3-setup.exe?lc=es&ext=Luxor_3-setup.exe','¡La lucha por la vida eterna ha comenzado!','Utiliza tus habilidades a tres bandas para luchar contra un poderoso dios egipcio.','false',false,false,'Luxor 3');ag(113674337,'Capoeira Fighter 3','/images/games/capoeira_fighter_3/capoeira_fighter_381x46.gif',110097120,113705197,'a2268545-31ec-4d35-a7cd-a595cbd3fbcd','false','/images/games/capoeira_fighter_3/capoeira_fighter_316x16.gif',false,11323,'/images/games/capoeira_fighter_3/capoeira_fighter_3100x75.jpg','/images/games/capoeira_fighter_3/capoeira_fighter_3179x135.jpg','/images/games/capoeira_fighter_3/capoeira_fighter_3320x240.jpg','false','/images/games/thumbnails_med_2/capoeira_fighter_3130x75.gif','','Practica la lucha capoeira alrededor del mundo.','Pon a prueba tus habilidades de capoeira comparándolas a otros estilos alrededor del mundo.','true',false,false,'Capoeira Fighter 3 OL');ag(113676843,'Midnight Strike','/images/games/midnight_strike/midnight_strike81x46.gif',110097120,113707533,'e0aa446e-2e7f-44c4-9c86-d21da2335444','false','/images/games/midnight_strike/midnight_strike16x16.gif',false,11323,'/images/games/midnight_strike/midnight_strike100x75.jpg','/images/games/midnight_strike/midnight_strike179x135.jpg','/images/games/midnight_strike/midnight_strike320x240.jpg','false','/images/games/thumbnails_med_2/midnight_strike130x75.gif','','¡Bombardea a los malvados ciborgs!','¡Malvados ciborgs están invadiendo y tú debes detenerlos!','true',false,false,'Midnight Strike OL');ag(113685560,'Hoops Mania','/images/games/Hoops_Mania/Hoops_Mania81x46.gif',110097120,113716357,'f33b4d70-45e4-4484-9f76-934b5ddced6a','false','/images/games/Hoops_Mania/Hoops_Mania16x16.gif',false,11323,'/images/games/Hoops_Mania/Hoops_Mania100x75.jpg','/images/games/Hoops_Mania/Hoops_Mania179x135.jpg','/images/games/Hoops_Mania/Hoops_Mania320x240.jpg','false','/images/games/thumbnails_med_2/Hoops_Mania130x75.gif','','¡Disparemos a unos aros!','¡El mejor juego de disparos de baloncesto de todos los tiempos!','true',false,false,'Hoops Mania OL');ag(113688733,'Rainbow Web','/images/games/rainbow_web/rainbow_web81x46.gif',110081853,113719450,'5399a010-91fe-400d-ad8c-e25288586179','false','/images/games/rainbow_web/rainbow_web16x16.gif',false,11323,'/images/games/rainbow_web/rainbow_web100x75.jpg','/images/games/rainbow_web/rainbow_web179x135.jpg','/images/games/rainbow_web/rainbow_web320x240.jpg','false','/images/games/thumbnails_med_2/rainbow_web130x75.gif','/exe/Rainbow_Web-setup.exe?lc=es&ext=Rainbow_Web-setup.exe','¡Rompe el hechizo para restablecer el sol!','¡Resuelve rompecabezas para romper el hechizo y devolver el sol al reino!','true',true,true,'Rainbow Web OLT1');ag(113692883,'Talismania Deluxe','/images/games/talismania/talismania81x46.gif',110081853,113723853,'3dfcfc15-a19a-47f9-9fe3-556a09a47601','false','/images/games/talismania/16x16talismania.gif',false,11323,'/images/games/talismania/talismania100x75.jpg','/images/games/talismania/talismania179x135.jpg','/images/games/talismania/talismania320x240.jpg','false','/images/games/thumbnails_med_2/talismania130x75.gif','/exe/Talismania_Deluxe_new-setup.exe?lc=es&ext=Talismania_Deluxe_new-setup.exe','¡Rompe la maldición de oro del rey Midas!','Ayuda a Midas a luchar contra los monstruos míticos y romper esta antigua maldición.','true',true,true,'Talismania Deluxe (new) OLT1');ag(113694937,'Bookworm Deluxe','/images/games/bookworm/bookworm81x46.jpg',110081853,113725890,'530c3aae-2b23-419f-a563-c91b80c719e0','false','/images/games/bookworm/bookworm16x16.gif',false,11323,'/images/games/bookworm/bookworm100x75.jpg','/images/games/bookworm/bookworm179x135.jpg','/images/games/bookworm/bookworm320x240.jpg','false','/images/games/thumbnails_med_2/bookwarm130x75.gif','','¡Alimenta con palabras al hambriento ratón de biblioteca!','Une las letras y construye palabras en este juego que desafía tu capacidad léxica.','true',true,true,'Bookworm Deluxe OLT1');ag(113696883,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',110081853,113727853,'d6e3faeb-5515-40c8-8d76-decdb4ad1b08','false','/images/games/bricks_of_egypt2/bricks_of_egypt216x16.gif',false,11323,'/images/games/bricks_of_egypt2/bricks_of_egypt2100x75.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2179x135.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt2130x75.gif','/exe/Bricks_of_Egypt_2-setup.exe?lc=es&ext=Bricks_of_Egypt_2-setup.exe','Explora el pasadizo secreto de una pirámide.','Explora el pasadizo secreto de una pirámide en busca de las antiguas inscripciones del faraón.','true',true,true,'Bricks of Egypt 2 OLT1');ag(113701667,'Bricks of Atlantis','/images/games/bricks_of_atlantis/bricks_of_atlantis81x46.gif',110081853,113732320,'9f0a8714-328d-452e-a262-f98ebd7b0ad5','false','/images/games/bricks_of_atlantis/bricks_of_atlantis16x16.gif',false,11323,'/images/games/bricks_of_atlantis/bricks_of_atlantis100x75.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis179x135.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_atlantis130x75.gif','/exe/bricks_of_atlantis-setup.exe?lc=es&ext=bricks_of_atlantis-setup.exe','¡Una exitosa aventura en los fondos marinos!','¡Toma tu arpón y sumérgete en esta exitosa aventura en los fondos marinos!','true',true,true,'Bricks of Atlantis OLT1');ag(113708560,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',110081853,113739467,'1d086e94-f005-40c7-865c-e698855fb19f','false','/images/games/riseAtlantis/riseAtlantis16x16.gif',false,11323,'/images/games/riseAtlantis/riseAtlantis100x75.jpg','/images/games/riseAtlantis/riseAtlantis179x135.jpg','/images/games/riseAtlantis/riseAtlantis320x240.jpg','false','/images/games/thumbnails_med_2/riseAtlantis130x75.gif','/exe/The_Rise_of_Atlantis-setup.exe?lc=es&ext=The_Rise_of_Atlantis-setup.exe','¡Recupera el continente perdido de la Atlántida!','Recoge los sietes poderes de Poseidón para salvar la Atlántida.','true',true,true,'The Rise of Atlantis OLT1');ag(113710930,'Bricks of Egypt','/images/games/bricks_of_egypt/bricks_of_egypt81x46.gif',110081853,113741913,'c29d81db-2e42-4031-a839-e754b894abb3','false','/images/games/bricks_of_egypt/bricks_of_egypt16x16.gif',false,11323,'/images/games/bricks_of_egypt/bricks_of_egypt100x75.jpg','/images/games/bricks_of_egypt/bricks_of_egypt179x135.jpg','/images/games/bricks_of_egypt/bricks_of_egypt320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt130x75.gif','/exe/bricks_of_egypt-setup.exe?lc=es&ext=bricks_of_egypt-setup.exe','¡Machaca ladrillos al estilo egipcio!','¡8 niveles de clásico machaque de ladrillos al estilo egipcio!','true',true,true,'Bricks of Egypt -OLT1');ag(113714153,'Flip Words','/images/games/flipwords/flipwords81x46.jpg',110081853,113745123,'11ba0e23-80fc-45f2-946b-8cfd10d9b9fb','false','/images/games/flipwords/flipwords16x16.gif',false,11323,'/images/games/flipwords/flipwords100x75.jpg','/images/games/flipwords/flipwords179x135.jpg','/images/games/flipwords/flipwords320x240.jpg','true','/images/games/thumbnails_med_2/flipWords130x75.gif','/exe/Flip_Words-Setup.exe?lc=es&ext=Flip_Words-Setup.exe','¡Un rompecabezas con palabras para ases del lenguaje!','Haz clic en las letras para formar palabras y resolver frases similares.','true',true,true,'Flip Words- OLT1');ag(113716973,'Poker Superstars 2','/images/games/Poker_Superstars_2/Poker_Superstars_281x46.gif',110081853,113747957,'09925597-6a09-4766-b8aa-47271b4a42e9','false','/images/games/Poker_Superstars_2/Poker_Superstars_216x16.gif',false,11323,'/images/games/Poker_Superstars_2/Poker_Superstars_2100x75.jpg','/images/games/Poker_Superstars_2/Poker_Superstars_2179x135.jpg','/images/games/Poker_Superstars_2/Poker_Superstars_2320x240.jpg','false','/images/games/thumbnails_med_2/Poker_Superstars_2130x75.gif','','No-limit Hold ’Em Action!','Enfréntate a los mejores jugadores de póquer en No-Limit Hold ’Em Action.','true',true,true,'Poker Superstars 2-OLT1');ag(113717210,'Ocean Express','/images/games/Ocean_Express/Ocean_Express81x46.gif',110081853,113748177,'dfe0b6ca-cc4b-4547-90c2-05d0d926ae56','false','/images/games/Ocean_Express/Ocean_Express16x16.gif',false,11323,'/images/games/Ocean_Express/Ocean_Express100x75.jpg','/images/games/Ocean_Express/Ocean_Express179x135.jpg','/images/games/Ocean_Express/Ocean_Express320x240.jpg','false','/images/games/thumbnails_med_2/Ocean_Express130x75.gif','/exe/Ocean_Express-setup.exe?lc=es&ext=Ocean_Express-setup.exe','¡Haz puzzles a bordo de un carguero!','¡Encaja las piezas del puzzle y navega por la costa con tu carguero!','true',true,true,'Ocean Express OLT1');ag(113718803,'Magic Match','/images/games/magic_match/magic_match81x46.gif',110081853,113749773,'436dde14-6309-4560-b5b5-1c8f29318935','false','/images/games/magic_match/magic_match16x16.gif',false,11323,'/images/games/magic_match/magic_match100x75.jpg','/images/games/magic_match/magic_match179x135.jpg','/images/games/magic_match/magic_match320x240.jpg','false','/images/games/thumbnails_med_2/magic_match130x75.gif','/exe/magic_match_1hr-setup.exe?lc=es&ext=magic_match_1hr-setup.exe','¡Explora seis absorbentes reinos de fantasía!','¡Explora seis reinos místicos en las Tierras de Arcane!','true',true,true,'Magic Match OLT1');ag(113721697,'Diner Dash:® Hometown Hero™','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero81x46.gif',110012530,113752243,'','false','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero16x16.gif',false,11323,'/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero100x75.jpg','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero179x135.jpg','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_hometown_hero130x75.gif','/exe/Diner_Dash_Hometown_Hero-setup.exe?lc=es&ext=Diner_Dash_Hometown_Hero-setup.exe','¡Recupera los restaurantes favoritos de Flo!','Ayuda a Flo a devolver la gloria a los viejos restaurantes de su ciudad.','false',false,false,'Diner Dash Hometown Hero');ag(113744620,'Bricks Of Lore','/images/games/bricks_of_lore/bricks_of_lore81x46.gif',110125467,113775320,'','false','/images/games/bricks_of_lore/bricks_of_lore16x16.gif',false,11323,'/images/games/bricks_of_lore/bricks_of_lore100x75.jpg','/images/games/bricks_of_lore/bricks_of_lore179x135.jpg','/images/games/bricks_of_lore/bricks_of_lore320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_lore130x75.gif','/exe/Bricks_Of_Lore-setup.exe?lc=es&ext=Bricks_Of_Lore-setup.exe','Lucha contra criaturas que echan fuego por la boca.','Lucha contra criaturas feroces con bombas y pociones en este relato épico.','false',false,false,'Bricks Of Lore');ag(113748870,'El Dorado Quest','/images/games/el_dorado_quest/el_dorado_quest81x46.gif',110012530,113779590,'','false','/images/games/el_dorado_quest/el_dorado_quest16x16.gif',false,11323,'/images/games/el_dorado_quest/el_dorado_quest100x75.jpg','/images/games/el_dorado_quest/el_dorado_quest179x135.jpg','/images/games/el_dorado_quest/el_dorado_quest320x240.jpg','false','/images/games/thumbnails_med_2/el_dorado_quest130x75.gif','/exe/El_Dorado_Quest-setup.exe?lc=es&ext=El_Dorado_Quest-setup.exe','Encuentra tesoros enterrados en el Amazonas.','Viaja a una antigua ciudad inca en busca de tesoros enterrados.','false',false,false,'El Dorado Quest');ag(113753713,'Age of Emerald','/images/games/age_of_emerald/age_of_emerald81x46.gif',1007,113784590,'','false','/images/games/age_of_emerald/age_of_emerald16x16.gif',false,11323,'/images/games/age_of_emerald/age_of_emerald100x75.jpg','/images/games/age_of_emerald/age_of_emerald179x135.jpg','/images/games/age_of_emerald/age_of_emerald320x240.jpg','false','/images/games/thumbnails_med_2/age_of_emerald130x75.gif','/exe/Age_of_Emerald-setup.exe?lc=es&ext=Age_of_Emerald-setup.exe','Construye la ciudad de tus sueños.','Demuestra tus habilidades con los rompecabezas a tres bandas para construir una ciudad magnífica.','false',false,false,'Age of Emerald');ag(113759870,'Burger Shop','/images/games/burger_shop/burger_shop81x46.gif',110012530,113790557,'','false','/images/games/burger_shop/burger_shop16x16.gif',false,11323,'/images/games/burger_shop/burger_shop100x75.jpg','/images/games/burger_shop/burger_shop179x135.jpg','/images/games/burger_shop/burger_shop320x240.jpg','true','/images/games/thumbnails_med_2/burger_shop130x75.gif','/exe/Burger_Shop-setup.exe?lc=es&ext=Burger_Shop-setup.exe','Construye un imperio de la hamburguesa.','Elabora deliciosas hamburguesas con los ingredientes exactos que soliciten tus clientes.','false',false,false,'Burger Shop');ag(113766567,'Poker Superstars III','/images/games/poker_superstars_3/poker_superstars_381x46.gif',1004,113797440,'ecb19752-4008-49fd-a722-46ee3aa2aa9f','false','/images/games/poker_superstars_3/poker_superstars_316x16.gif',false,11323,'/images/games/poker_superstars_3/poker_superstars_3100x75.jpg','/images/games/poker_superstars_3/poker_superstars_3179x135.jpg','/images/games/poker_superstars_3/poker_superstars_3320x240.jpg','false','/images/games/thumbnails_med_2/poker_superstars_3130x75.gif','/exe/Poker_Superstars_3-setup.exe?lc=es&ext=Poker_Superstars_3-setup.exe','Desafía a las nuevas superestrellas del póquer.','Prepárate para el próximo enfrentamiento de póquer con las nuevas superestrellas.','false',false,false,'Poker Superstars 3');ag(113769527,'Fashion Fits!','/images/games/fashion_fits/fashion_fits81x46.gif',110012530,113800137,'','false','/images/games/fashion_fits/fashion_fits16x16.gif',false,11323,'/images/games/fashion_fits/fashion_fits100x75.jpg','/images/games/fashion_fits/fashion_fits179x135.jpg','/images/games/fashion_fits/fashion_fits320x240.jpg','false','/images/games/thumbnails_med_2/fashion_fits130x75.gif','/exe/Fashion_Fits-setup.exe?lc=es&ext=Fashion_Fits-setup.exe','¡Dirige tiendas de ropa de última moda!','Ayuda a Francine a abrir su propia cadena de boutiques de alta costura.','false',false,false,'Fashion Fits');ag(113771437,'Deep Blue Sea','/images/games/deep_blue_sea/deep_blue_sea81x46.gif',1007,113802780,'','false','/images/games/deep_blue_sea/deep_blue_sea16x16.gif',false,11323,'/images/games/deep_blue_sea/deep_blue_sea100x75.jpg','/images/games/deep_blue_sea/deep_blue_sea179x135.jpg','/images/games/deep_blue_sea/deep_blue_sea320x240.jpg','false','/images/games/thumbnails_med_2/deep_blue_sea130x75.gif','/exe/Deep_Blue_Sea-setup.exe?lc=es&ext=Deep_Blue_Sea-setup.exe','¡Rescata sagrados tesoros subacuáticos!','¡Sumérgete en un misterioso mundo subacuático para rescatar tesoros sagrados!','false',false,false,'Deep Blue Sea');ag(113784233,'Home Sweet Home','/images/games/home_sweet_home/home_sweet_home81x46.gif',110012530,11381513,'','false','/images/games/home_sweet_home/home_sweet_home16x16.gif',false,11323,'/images/games/home_sweet_home/home_sweet_home100x75.jpg','/images/games/home_sweet_home/home_sweet_home179x135.jpg','/images/games/home_sweet_home/home_sweet_home320x240.jpg','false','/images/games/thumbnails_med_2/home_sweet_home130x75.gif','/exe/Home_Sweet_Home-setup.exe?lc=es&ext=Home_Sweet_Home-setup.exe','¡Diseña y decora habitaciones!','Usa tus habilidades de diseño de interiores y decora las habitaciones perfectas.','false',false,false,'Home Sweet Home');ag(113786380,'Heroes of Hellas','/images/games/heroes_of_hellas/heroes_of_hellas81x46.gif',110125467,11381753,'','false','/images/games/heroes_of_hellas/heroes_of_hellas16x16.gif',false,11323,'/images/games/heroes_of_hellas/heroes_of_hellas100x75.jpg','/images/games/heroes_of_hellas/heroes_of_hellas179x135.jpg','/images/games/heroes_of_hellas/heroes_of_hellas320x240.jpg','true','/images/games/thumbnails_med_2/heroes_of_hellas130x75.gif','/exe/Heroes_of_Hellas-setup.exe?lc=es&ext=Heroes_of_Hellas-setup.exe','¡Encuentra el cetro robado de Zeus!','Viaja a la Antigua Grecia para buscar el cetro robado de Zeus.','false',false,false,'Heroes of Hellas');ag(113799543,'Starscape','/images/games/starscape/starscape81x46.gif',110109903,113831323,'','false','/images/games/starscape/starscape16x16.gif',false,11323,'/images/games/starscape/starscape100x75.jpg','/images/games/starscape/starscape179x135.jpg','/images/games/starscape/starscape320x240.jpg','false','/images/games/thumbnails_med_2/starscape130x75.gif','/exe/Starscape-setup.exe?lc=es&ext=Starscape-setup.exe','¡Un juego de disparos espacial lleno de acción!','¡Lucha en una dimensión alienígena en este juego de disparos espacial!','false',false,false,'Starscape');ag(113804320,'Svetlograd','/images/games/svetlograd/svetlograd81x46.gif',110119360,113836977,'','false','/images/games/svetlograd/svetlograd16x16.gif',false,11323,'/images/games/svetlograd/svetlograd100x75.jpg','/images/games/svetlograd/svetlograd179x135.jpg','/images/games/svetlograd/svetlograd320x240.jpg','false','/images/games/thumbnails_med_2/svetlograd130x75.gif','/exe/Svetlograd-setup.exe?lc=es&ext=Svetlograd-setup.exe','Protege Svetlograd de los malvados diablillos.','Protege Svetlograd de los malvados diablillos en este emocionante juego donde tienes que hacer coincidir colores.','false',false,false,'Svetlograd');ag(113816127,'Hot Air 2','/images/games/hotair_2/hotair_281x46.gif',110097120,113848640,'49b0b5c4-0929-4111-85e1-1ac2b2742b3e','false','/images/games/hotair_2/hotair_216x16.gif',false,11323,'/images/games/hotair_2/hotair_2100x75.jpg','/images/games/hotair_2/hotair_2179x135.jpg','/images/games/hotair_2/hotair_2320x240.jpg','false','/images/games/thumbnails_med_2/hotair_2130x75.gif','','Aventura de navegación de globos -- ¡No revientes!','Pilota un globo de aire caliente a través de niveles peligrosos – ¡no revientes!','true',false,false,'Hot Air 2 OL');ag(113819723,'Scribble','/images/games/scribble/scribble81x46.gif',110097120,113851473,'71518197-6326-4109-91ff-481cc1d65d37','false','/images/games/scribble/scribble16x16.gif',false,11323,'/images/games/scribble/scribble100x75.jpg','/images/games/scribble/scribble179x135.jpg','/images/games/scribble/scribble320x240.jpg','false','/images/games/thumbnails_med_2/scribble130x75.gif','','¡Dibuja líneas en este rompecabezas de plataforma!','¡Dibuja líneas para ayudar a los borrones en este rompecabezas de plataforma!','true',false,false,'Scribble OL');ag(113820850,'Skywire','/images/games/skywire/skywire81x46.gif',110083820,113852447,'a4bf66dc-722f-499b-8acb-451f60b38a95','false','/images/games/skywire/skywire16x16.gif',false,11323,'/images/games/skywire/skywire100x75.jpg','/images/games/skywire/skywire179x135.jpg','/images/games/skywire/skywire320x240.jpg','false','/images/games/thumbnails_med_2/skywire130x75.gif','','¡Viaje de aventuras del teleférico loco!','¡Sube al teleférico loco para un viaje de aventuras!','true',false,false,'Skywire OL');ag(113832110,'Dream Day First Home','/images/games/dream_day_first_home/dream_day_first_home81x46.gif',110012530,113864173,'','false','/images/games/dream_day_first_home/dream_day_first_home16x16.gif',false,11323,'/images/games/dream_day_first_home/dream_day_first_home100x75.jpg','/images/games/dream_day_first_home/dream_day_first_home179x135.jpg','/images/games/dream_day_first_home/dream_day_first_home320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_first_home130x75.gif','/exe/Dream_Day_First_Home-setup.exe?lc=es&ext=Dream_Day_First_Home-setup.exe','¡Compra y decora un nuevo hogar!','¡Ayuda a los recién casados a seleccionar y decorar su primer hogar!','false',false,false,'Dream Day First Home');ag(113836347,'Cradle of Persia','/images/games/cradle_of_persia/cradle_of_persia81x46.gif',110012530,113868893,'','false','/images/games/cradle_of_persia/cradle_of_persia16x16.gif',false,11323,'/images/games/cradle_of_persia/cradle_of_persia100x75.jpg','/images/games/cradle_of_persia/cradle_of_persia179x135.jpg','/images/games/cradle_of_persia/cradle_of_persia320x240.jpg','false','/images/games/thumbnails_med_2/cradle_of_persia130x75.gif','/exe/Cradle_of_Persia-setup.exe?lc=es&ext=Cradle_of_Persia-setup.exe','Resuelve misterios y libera al genio.','Resuelve los misterios de las ancestrales ruinas de Persia y libera al genio.','false',false,false,'Cradle of Persia');ag(113848220,'Agatha Christie Peril at End House','/images/games/peril_at_end_house/peril_at_end_house81x46.gif',1007,11388097,'','false','/images/games/peril_at_end_house/peril_at_end_house16x16.gif',false,11323,'/images/games/peril_at_end_house/peril_at_end_house100x75.jpg','/images/games/peril_at_end_house/peril_at_end_house179x135.jpg','/images/games/peril_at_end_house/peril_at_end_house320x240.jpg','false','/images/games/thumbnails_med_2/peril_at_end_house130x75.gif','/exe/Agatha_Christie_Peril_at_End_House-setup.exe?lc=es&ext=Agatha_Christie_Peril_at_End_House-setup.exe','Descubre el misterio de un espeluznante asesinato.','Descubre el misterio de un asesinato en esta espeluznante aventura de buscar y encontrar.','false',false,false,'Agatha Christie Peril at End H');ag(113849380,'Elf Bowling 7 1/7: The Last Insult','/images/games/elf_bowling_7/elf_bowling_781x46.gif',110119360,113881253,'','false','/images/games/elf_bowling_7/elf_bowling_716x16.gif',false,11323,'/images/games/elf_bowling_7/elf_bowling_7100x75.jpg','/images/games/elf_bowling_7/elf_bowling_7179x135.jpg','/images/games/elf_bowling_7/elf_bowling_7320x240.jpg','false','/images/games/thumbnails_med_2/elf_bowling_7130x75.gif','/exe/Elf_Bowling-setup.exe?lc=es&ext=Elf_Bowling-setup.exe','¡Juega a los bolos con los elfos de Santa Claus!','Átate los zapatos de bolos para echar una partida con los elfos de Santa Claus.','false',false,false,'Elf Bowling');ag(113866550,'Fashion Craze','/images/games/fashion_craze/fashion_craze81x46.gif',110012530,113898410,'','false','/images/games/fashion_craze/fashion_craze16x16.gif',false,11323,'/images/games/fashion_craze/fashion_craze100x75.jpg','/images/games/fashion_craze/fashion_craze179x135.jpg','/images/games/fashion_craze/fashion_craze320x240.jpg','false','/images/games/thumbnails_med_2/fashion_craze130x75.gif','/exe/Fashion_Craze-setup.exe?lc=es&ext=Fashion_Craze-setup.exe','Ayuda a estas mujeres a vestirse para triunfar.','Ayuda a estas mujeres, no muy seguidoras de la moda, a lucir espectaculares y vestirse para triunfar.','false',false,false,'Fashion Craze');ag(113867707,'Holly: A Christmas Tale','/images/games/holly_a_christmas_tale/holly_a_christmas_tale81x46.gif',110012530,113899597,'','false','/images/games/holly_a_christmas_tale/holly_a_christmas_tale16x16.gif',false,11323,'/images/games/holly_a_christmas_tale/holly_a_christmas_tale100x75.jpg','/images/games/holly_a_christmas_tale/holly_a_christmas_tale179x135.jpg','/images/games/holly_a_christmas_tale/holly_a_christmas_tale320x240.jpg','false','/images/games/thumbnails_med_2/holly_a_christmas_tale130x75.gif','/exe/Holly_A_Christmas_Tale-setup.exe?lc=es&ext=Holly_A_Christmas_Tale-setup.exe','Ayuda a Papá Noel a terminar su trabajo.','Ayuda a Papá Noel a terminar su trabajo en este festivo juego de objetos escondidos.','false',false,false,'Holly A Christmas Tale');ag(113869880,'Christmasville','/images/games/christmasville/christmasville81x46.gif',110012530,113901773,'','false','/images/games/christmasville/christmasville16x16.gif',false,11323,'/images/games/christmasville/christmasville100x75.jpg','/images/games/christmasville/christmasville179x135.jpg','/images/games/christmasville/christmasville320x240.jpg','false','/images/games/thumbnails_med_2/christmasville130x75.gif','/exe/Christmasville-setup.exe?lc=es&ext=Christmasville-setup.exe','¡Encuentra a Santa Claus y salva la Navidad!','¡Santa Claus ha desaparecido y sólo tú lo puedes encontrar!','false',false,false,'Christmasville');ag(113892287,'Tage Rampage','/images/games/tage_rampage/tage_rampage81x46.gif',110097120,113924160,'e0e0071f-dd48-4bee-89ba-671c4f0d1016','false','/images/games/tage_rampage/tage_rampage16x16.gif',false,11323,'/images/games/tage_rampage/tage_rampage100x75.jpg','/images/games/tage_rampage/tage_rampage179x135.jpg','/images/games/tage_rampage/tage_rampage320x240.jpg','false','/images/games/thumbnails_med_2/tage_rampage130x75.gif','','Lucha como un valiente caballero Hafling.','Recorre todo el mundo para buscar el dragón enojado','true',false,false,'Tage Rampage OL');ag(113893960,'The Fancy Pants Adventures','/images/games/fancy_pants_adventures/fancy_pants_adventures81x46.gif',110097120,113925770,'52e36e1a-37c7-4c85-980f-31464710768e','false','/images/games/fancy_pants_adventures/fancy_pants_adventures16x16.gif',false,11323,'/images/games/fancy_pants_adventures/fancy_pants_adventures100x75.jpg','/images/games/fancy_pants_adventures/fancy_pants_adventures179x135.jpg','/images/games/fancy_pants_adventures/fancy_pants_adventures320x240.jpg','false','/images/games/thumbnails_med_2/fancy_pants_adventures130x75.gif','','¡Corre! ¡Salta! ¡Pisotea por el 1er mundo de The Fancy Pants Adventures!','¡Corre! ¡Salta! ¡Pisotea por el 1er mundo de The Fancy Pants Adventures!','true',false,false,'Fancy Pants Adventures OL');ag(113906653,'Base Jumping','/images/games/base_jumping/base_jumping81x46.gif',110097120,113938403,'fce9c93e-38fb-4d4b-9a87-31f52edc80d6','false','/images/games/base_jumping/base_jumping16x16.gif',false,11323,'/images/games/base_jumping/base_jumping100x75.jpg','/images/games/base_jumping/base_jumping179x135.jpg','/images/games/base_jumping/base_jumping320x240.jpg','false','/images/games/thumbnails_med_2/base_jumping130x75.gif','','Realiza saltos BASE y compite con los mejores del mundo.','Realiza saltos BASE y compite con los mejores del mundo. ¡Ábrete camino en las ligas!','true',false,false,'Base Jumping OL');ag(113908987,'Feed Me','/images/games/feed_me/feed_me81x46.gif',110097120,113940863,'b72eab27-518c-405d-aebf-72eef76ce936','false','/images/games/feed_me/feed_me16x16.gif',false,11323,'/images/games/feed_me/feed_me100x75.jpg','/images/games/feed_me/feed_me179x135.jpg','/images/games/feed_me/feed_me320x240.jpg','false','/images/games/thumbnails_med_2/feed_me130x75.gif','','¡Come bichos y escapa del invernadero!','¡Ayuda a la planta atrapamoscas a escapar del invernadero!','true',false,false,'Feed Me OL');ag(113911583,'Kakuro','/images/games/kakuro/kakuro81x46.gif',110097120,113943227,'33f5d32a-2e57-443a-bd54-cd76c9dd47e5','false','/images/games/kakuro/kakuro16x16.gif',false,11323,'/images/games/kakuro/kakuro100x75.jpg','/images/games/kakuro/kakuro179x135.jpg','/images/games/kakuro/kakuro320x240.jpg','false','/images/games/thumbnails_med_2/kakuro130x75.gif','','Divertido y desafiante rompecabezas.','Desafiante rompecabezas similar a un crucigrama.','true',false,false,'Kakuro OL');ag(113916660,'Word Roundup','/images/games/word_roundup/word_roundup81x46.gif',110083820,113948443,'47365e7d-b092-4afd-9a50-96ec0a78f0a7','false','/images/games/word_roundup/word_roundup16x16.gif',false,11323,'/images/games/word_roundup/word_roundup100x75.jpg','/images/games/word_roundup/word_roundup179x135.jpg','/images/games/word_roundup/word_roundup320x240.jpg','false','/images/games/thumbnails_med_2/word_roundup130x75.gif','','Encuentra las palabras ocultas ayudándote de pistas.','Reúne palabras hábilmente escondidas utilizando pistas tipo crucigrama.','true',false,false,'Word Roundup OL');ag(113917587,'Mythic Pearls','/images/games/mythic_pearls/mythic_pearls81x46.gif',110119360,113949447,'','false','/images/games/mythic_pearls/mythic_pearls16x16.gif',false,11323,'/images/games/mythic_pearls/mythic_pearls100x75.jpg','/images/games/mythic_pearls/mythic_pearls179x135.jpg','/images/games/mythic_pearls/mythic_pearls320x240.jpg','false','/images/games/thumbnails_med_2/mythic_pearls130x75.gif','/exe/Mythic_Pearls-setup.exe?lc=es&ext=Mythic_Pearls-setup.exe','Busca legendarios tesoros celtas.','Busca legendarios tesoros celtas en este rompecabezas de acción haciendo coincidir colores.','false',false,false,'Mythic Pearls');ag(113919217,'Mythic Mahjong','/images/games/mythic_mahjong/mythic_mahjong81x46.gif',1006,113951123,'','false','/images/games/mythic_mahjong/mythic_mahjong16x16.gif',false,11323,'/images/games/mythic_mahjong/mythic_mahjong100x75.jpg','/images/games/mythic_mahjong/mythic_mahjong179x135.jpg','/images/games/mythic_mahjong/mythic_mahjong320x240.jpg','false','/images/games/thumbnails_med_2/mythic_mahjong130x75.gif','/exe/Mythic_Mahjong-setup.exe?lc=es&ext=Mythic_Mahjong-setup.exe','Lucha contra las fuerzas de la oscuridad.','Lucha contra las fuerzas de la oscuridad para recuperar las joyas de la reina Faerie.','false',false,false,'Mythic Mahjong');ag(113938743,'Supercow','/images/games/supercow/supercow81x46.gif',110012530,113970510,'','false','/images/games/supercow/supercow16x16.gif',false,11323,'/images/games/supercow/supercow100x75.jpg','/images/games/supercow/supercow179x135.jpg','/images/games/supercow/supercow320x240.jpg','false','/images/games/thumbnails_med_2/supercow130x75.gif','/exe/Supercow-setup.exe?lc=es&ext=Supercow-setup.exe','Ayuda a Supercow a salvar la granja.','Ayuda a Supercow a salvar a los animales de la granja de un infame criminal.','false',false,false,'Supercow');ag(113986837,'Fashion Rush','/images/games/fashion_rush/fashion_rush81x46.gif',110012530,114018743,'','false','/images/games/fashion_rush/fashion_rush16x16.gif',false,11323,'/images/games/fashion_rush/fashion_rush100x75.jpg','/images/games/fashion_rush/fashion_rush179x135.jpg','/images/games/fashion_rush/fashion_rush320x240.jpg','false','/images/games/thumbnails_med_2/fashion_rush130x75.gif','/exe/Fashion_Rush-setup.exe?lc=es&ext=Fashion_Rush-setup.exe','Presenta una línea de ropa de última moda.','Ayuda a una joven aspirante a diseñadora de moda a presentar su propia colección.','false',false,false,'Fashion Rush');ag(114039310,'Turbo Subs','/images/games/Turbo_Subs/Turbo_Subs81x46.gif',110127790,114071750,'','false','/images/games/Turbo_Subs/Turbo_Subs16x16.gif',false,11323,'/images/games/Turbo_Subs/Turbo_Subs100x75.jpg','/images/games/Turbo_Subs/Turbo_Subs179x135.jpg','/images/games/Turbo_Subs/Turbo_Subs320x240.jpg','false','/images/games/thumbnails_med_2/Turbo_Subs130x75.gif','/exe/Turbo_Subs-setup.exe?lc=es&ext=Turbo_Subs-setup.exe','¡Dirige tiendas de sándwich en Nueva York!','Dirige tiendas de sándwich exitosas en enigmáticos lugares de Nueva York.','false',false,false,'Turbo Subs');ag(114044400,'Chocolatier® 2: Secret Ingredients™','/images/games/chocolatier2/chocolatier281x46.gif',110012530,114076917,'','false','/images/games/chocolatier2/chocolatier216x16.gif',false,11323,'/images/games/chocolatier2/chocolatier2100x75.jpg','/images/games/chocolatier2/chocolatier2179x135.jpg','/images/games/chocolatier2/chocolatier2320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier2130x75.gif','/exe/Chocolatier_2-setup.exe?lc=es&ext=Chocolatier_2-setup.exe','¡Reconstruye tu imperio de chocolate!','¡Viaja por el mundo en busca de ingredientes mientras reconstruyes tu imperio de chocolate!','false',false,false,'Chocolatier 2');ag(114072167,'Go-Go Gourmet','/images/games/go_go_gourmet/go_go_gourmet81x46.gif',110012530,114104273,'','false','/images/games/go_go_gourmet/go_go_gourmet16x16.gif',false,11323,'/images/games/go_go_gourmet/go_go_gourmet100x75.jpg','/images/games/go_go_gourmet/go_go_gourmet179x135.jpg','/images/games/go_go_gourmet/go_go_gourmet320x240.jpg','false','/images/games/thumbnails_med_2/go_go_gourmet130x75.gif','/exe/GoGo_Gourmet-setup.exe?lc=es&ext=GoGo_Gourmet-setup.exe','Logra la grandeza gastronómica cocinando.','Conviértete en un maestro chef trabajando al lado de seis restauradores locos.','false',false,false,'GoGo Gourmet');ag(114075133,'3-D Ultra Minigolf Adventures Deluxe','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe81x46.gif',110119360,114107197,'','false','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe16x16.gif',false,11323,'/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe100x75.jpg','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe179x135.jpg','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/3d_ultra_minigolf_adventures_deluxe130x75.gif','/exe/3D_Ultra_Minigolf_Adventures_Deluxe-setup.exe?lc=es&ext=3D_Ultra_Minigolf_Adventures_Deluxe-setup.exe','¡Juega 54 hoyos en campos en 3D!','Juega 54 hoyos en este maníaco minigolf en campos en 3D.','false',false,false,'3D Ultra Minigolf Adv Deluxe');ag(114092390,'Candy Factory','/images/games/candy_factory/candy_factory81x46.gif',110127790,114124767,'','false','/images/games/candy_factory/candy_factory16x16.gif',false,11323,'/images/games/candy_factory/candy_factory100x75.jpg','/images/games/candy_factory/candy_factory179x135.jpg','/images/games/candy_factory/candy_factory320x240.jpg','false','/images/games/thumbnails_med_2/candy_factory130x75.gif','/exe/Candace_Kanes_Candy_Factory-setup.exe?lc=es&ext=Candace_Kanes_Candy_Factory-setup.exe','Véndeles golosinas a clientes excéntricos.','Crea rápidamente pedidos de golosinas a medida para graciosos clientes excéntricos.','false',false,false,'Candace Kanes Candy Factory');ag(114096970,'Dress Shop Hop','/images/games/dress_shop_hop/dress_shop_hop81x46.gif',110012530,114128830,'','false','/images/games/dress_shop_hop/dress_shop_hop16x16.gif',false,11323,'/images/games/dress_shop_hop/dress_shop_hop100x75.jpg','/images/games/dress_shop_hop/dress_shop_hop179x135.jpg','/images/games/dress_shop_hop/dress_shop_hop320x240.jpg','false','/images/games/thumbnails_med_2/dress_shop_hop130x75.gif','/exe/Dress_Shop_Hop-setup.exe?lc=es&ext=Dress_Shop_Hop-setup.exe','Confecciona ropa moderna a medida.','Utiliza tu astucia de diseñador para ayudar a Bobbi a confeccionar ropa moderna a medida.','false',false,false,'Dress Shop Hop');ag(114148497,'Catch ’em If You Can','/images/games/catch_em_if_you_can/catch_em_if_you_can81x46.gif',110097120,114180543,'d2fdd353-9682-43d7-8033-7da7b8099ee8','false','/images/games/catch_em_if_you_can/catch_em_if_you_can16x16.gif',false,11323,'/images/games/catch_em_if_you_can/catch_em_if_you_can100x75.jpg','/images/games/catch_em_if_you_can/catch_em_if_you_can179x135.jpg','/images/games/catch_em_if_you_can/catch_em_if_you_can320x240.jpg','false','/images/games/thumbnails_med_2/catch_em_if_you_can130x75.gif','','¡Diversión en la granja!','¡Gestiona las gallinas y los huevos de la granja con este divertido juego!','true',false,false,'Catch em if you can_OL');ag(114309710,'Golden Hearts Juice Bar','/images/games/golden_hearts/golden_hearts81x46.gif',110012530,114341240,'','false','/images/games/golden_hearts/golden_hearts16x16.gif',false,11323,'/images/games/golden_hearts/golden_hearts100x75.jpg','/images/games/golden_hearts/golden_hearts179x135.jpg','/images/games/golden_hearts/golden_hearts320x240.jpg','false','/images/games/thumbnails_med_2/golden_hearts130x75.gif','/exe/Golden_Hearts_Juice_Club-setup.exe?lc=es&ext=Golden_Hearts_Juice_Club-setup.exe','¡Sirve batidos apetitosos!','¡Ayuda a Kelly a ganar dinero para sus estudios en su trabajo en un bar de zumos!','false',false,false,'Golden Hearts Juice Club');ag(114322660,'Mahjongg - Ancient Mayas','/images/games/mahjongg_ancient_mayas/mahjongg_ancient_mayas81x46.gif',1006,114354927,'','false','/images/games/mahjongg_ancient_mayas/mahjongg_ancient_mayas16x16.gif',false,11323,'/images/games/mahjongg_ancient_mayas/mahjongg_ancient_mayas100x75.jpg','/images/games/mahjongg_ancient_mayas/mahjongg_ancient_mayas179x135.jpg','/images/games/mahjongg_ancient_mayas/mahjongg_ancient_mayas320x240.jpg','false','/images/games/thumbnails_med_2/mahjongg_ancient_mayas130x75.gif','/exe/Mahjongg_Ancient_Mayas-setup.exe?lc=es&ext=Mahjongg_Ancient_Mayas-setup.exe','¡Explora el antiguo imperio maya!','¡Embárcate en una fantástica aventura hacia el imperio de los mayas!','false',false,false,'Mahjongg Ancient Mayas');ag(114323150,'Jojo’s Fashion Show','/images/games/jojos_fashion_show/jojos_fashion_show81x46.gif',110012530,114355950,'','false','/images/games/jojos_fashion_show/jojos_fashion_show16x16.gif',false,11323,'/images/games/jojos_fashion_show/jojos_fashion_show100x75.jpg','/images/games/jojos_fashion_show/jojos_fashion_show179x135.jpg','/images/games/jojos_fashion_show/jojos_fashion_show320x240.jpg','true','/images/games/thumbnails_med_2/jojos_fashion_show130x75.gif','/exe/Jojos_Fashion_Show-setup.exe?lc=es&ext=Jojos_Fashion_Show-setup.exe','¡Enloquece las pasarelas con tu estilo!','Muestra tu sentido de estilo en las pasarelas de Nueva York a París.','false',false,false,'Jojos Fashion Show');ag(114326367,'Blood Ties','/images/games/blood_ties/blood_ties81x46.gif',1007,114358130,'','false','/images/games/blood_ties/blood_ties16x16.gif',false,11323,'/images/games/blood_ties/blood_ties100x75.jpg','/images/games/blood_ties/blood_ties179x135.jpg','/images/games/blood_ties/blood_ties320x240.jpg','true','/images/games/thumbnails_med_2/blood_ties130x75.gif','/exe/Blood_Ties-setup.exe?lc=es&ext=Blood_Ties-setup.exe','Resuelve el caso de las personas desaparecidas.','Descubre objetos escondidos por toda la ciudad para poder encontrar a los desaparecidos.','false',false,false,'Blood Ties');ag(114378260,'Fashion Star','/images/games/fashion_star/fashion_star81x46.gif',110012530,114411133,'','false','/images/games/fashion_star/fashion_star16x16.gif',false,11323,'/images/games/fashion_star/fashion_star100x75.jpg','/images/games/fashion_star/fashion_star179x135.jpg','/images/games/fashion_star/fashion_star320x240.jpg','false','/images/games/thumbnails_med_2/fashion_star130x75.gif','/exe/Fashion_Star-setup.exe?lc=es&ext=Fashion_Star-setup.exe','Conviértete en un estilista de modas autónomo.','Como estilista de modas autónomo, prepara a las modelos para las sesiones de fotos.','false',false,false,'Fashion Star');ag(114435480,'Abundante','/images/games/abundante/abundante81x46.gif',110119360,114468963,'','false','/images/games/abundante/abundante16x16.gif',false,11323,'/images/games/abundante/abundante100x75.jpg','/images/games/abundante/abundante179x135.jpg','/images/games/abundante/abundante320x240.jpg','false','/images/games/thumbnails_med_2/abundante130x75.gif','/exe/Abundante-setup.exe?lc=es&ext=Abundante-setup.exe','Destroza ladrillos y colecciona piedras preciosas.','Diviértete mucho recolectando piedras preciosas y destrozando ladrillos.','false',false,false,'Abundante');ag(114438623,'Final Fortress','/images/games/Final_Fortress/Final_Fortress81x46.gif',110109903,11447143,'','false','/images/games/Final_Fortress/Final_Fortress16x16.gif',false,11323,'/images/games/Final_Fortress/Final_Fortress100x75.jpg','/images/games/Final_Fortress/Final_Fortress179x135.jpg','/images/games/Final_Fortress/Final_Fortress320x240.jpg','false','/images/games/thumbnails_med_2/Final_Fortress130x75.gif','/exe/Final_Fortress-setup.exe?lc=es&ext=Final_Fortress-setup.exe','Dispara tus cañones a los invasores en 3D.','Dispara tus cañones a los invasores de la ciudad en este juego 3D.','false',false,false,'Final Fortress');ag(114439250,'Dominoes','/images/games/dominoes_mp/dominoes_mp81x46.gif',110044360,11447293,'48b7a687-bc45-4130-b88e-0767f59ccd67','true','/images/games/dominoes_mp/dominoes_mp16x16.gif',false,11323,'/images/games/dominoes_mp/dominoes_mp100x75.jpg','/images/games/dominoes_mp/dominoes_mp179x135.jpg','/images/games/dominoes_mp/dominoes_mp320x240.jpg','false','/images/games/dominoes_mp/blank_dominoes_mp130x75.gif','','Dominó clásico doble-seis para varios jugadores.','Enfréntate a un amigo en una partida de dominó clásico doble-seis para varios jugadores.','true',true,true,'Dominoes (MP)');ag(114462137,'Babysitting Mania','/images/games/babysitting_mania/babysitting_mania81x46.gif',110012530,11449510,'','false','/images/games/babysitting_mania/babysitting_mania16x16.gif',false,11323,'/images/games/babysitting_mania/babysitting_mania100x75.jpg','/images/games/babysitting_mania/babysitting_mania179x135.jpg','/images/games/babysitting_mania/babysitting_mania320x240.jpg','false','/images/games/thumbnails_med_2/babysitting_mania130x75.gif','/exe/Babysitting_Mania-setup.exe?lc=es&ext=Babysitting_Mania-setup.exe','Cuida mocosos en 20 hogares.','Cuida niños insoportables en 20 hogares enloquecidos.','false',false,false,'Babysitting Mania');ag(114481587,'Towers','/images/games/towers/towers81x46.gif',1004,114514493,'','false','/images/games/towers/towers16x16.gif',false,11323,'/images/games/towers/towers100x75.jpg','/images/games/towers/towers179x135.jpg','/images/games/towers/towers320x240.jpg','false','/images/games/thumbnails_med_2/towers130x75.gif','/exe/Towers-setup.exe?lc=es&ext=Towers-setup.exe','Juega al solitario en cuatro civilizaciones.','Atraviesa cuatro civilizaciones en este solitario superadictivo','false',false,false,'Towers');ag(114483183,'Mystery Museum','/images/games/mystery_museum/mystery_museum81x46.gif',1007,114516153,'','false','/images/games/mystery_museum/mystery_museum16x16.gif',false,11323,'/images/games/mystery_museum/mystery_museum100x75.jpg','/images/games/mystery_museum/mystery_museum179x135.jpg','/images/games/mystery_museum/mystery_museum320x240.jpg','false','/images/games/thumbnails_med_2/mystery_museum130x75.gif','/exe/Mystery_Museum-setup.exe?lc=es&ext=Mystery_Museum-setup.exe','¡Recupera la Mona Lisa de Da Vinci!','¡Reconstruye 13 cuadros famosos para encontrar la Mona Lisa robada!','false',false,false,'Mystery Museum');ag(114627450,'Around the World in 80 Days','/images/games/around_the_world_in_80_days/around_the_world_in_80_days81x46.gif',1007,114660713,'2f09a238-a991-4e4d-b374-3cb275eeaeb9','false','/images/games/around_the_world_in_80_days/around_the_world_in_80_days16x16.gif',false,11323,'/images/games/around_the_world_in_80_days/around_the_world_in_80_days100x75.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days179x135.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days320x240.jpg','true','/images/games/thumbnails_med_2/around_the_world_in_80_days130x75.gif','/exe/Around_the_World_in_80_Days-setup.exe?lc=es&ext=Around_the_World_in_80_Days-setup.exe','Un viaje arrollador por 4 continentes.','Un viaje arrollador por cuatro continentes por tierra, mar y aire.','false',false,false,'Around the World in 80 Days');ag(114639850,'Shift','/images/games/shift/shift81x46.gif',110097120,114672540,'1e6fa0dd-379b-4ad3-8862-ec08f6a63905','false','/images/games/shift/shift16x16.gif',false,11323,'/images/games/shift/shift100x75.jpg','/images/games/shift/shift179x135.jpg','/images/games/shift/shift320x240.jpg','false','/images/games/thumbnails_med_2/shift130x75.gif','','Da la vuelta a la realidad y escapa.','Da la vuelta a la realidad y utiliza tu ingenio para escapar del mundo de Shift.','true',false,false,'Shift_OL');ag(114643957,'Big City Adventure: Sydney','/images/games/big_city_adventure_sydney/big_city_adventure_sydney81x46.gif',1007,114676767,'','false','/images/games/big_city_adventure_sydney/big_city_adventure_sydney16x16.gif',false,11323,'/images/games/big_city_adventure_sydney/big_city_adventure_sydney100x75.jpg','/images/games/big_city_adventure_sydney/big_city_adventure_sydney179x135.jpg','/images/games/big_city_adventure_sydney/big_city_adventure_sydney320x240.jpg','false','/images/games/thumbnails_med_2/big_city_adventure_sydney130x75.gif','/exe/Big_City_Adventure_Sydney-setup.exe?lc=es&ext=Big_City_Adventure_Sydney-setup.exe','¡Explora esta ciudad de Australia!','Explora Sidney, Australia en busca de miles de objetos ocultos.','false',false,false,'Big City Adventure Sydney');ag(114650210,'Diamond Drop 2','/images/games/diamond_drop_2/diamond_drop_281x46.gif',110119360,114683510,'','false','/images/games/diamond_drop_2/diamond_drop_216x16.gif',false,11323,'/images/games/diamond_drop_2/diamond_drop_2100x75.jpg','/images/games/diamond_drop_2/diamond_drop_2179x135.jpg','/images/games/diamond_drop_2/diamond_drop_2320x240.jpg','false','/images/games/thumbnails_med_2/diamond_drop_2130x75.gif','/exe/Diamond_Drop_2-setup.exe?lc=es&ext=Diamond_Drop_2-setup.exe','¡Encuentra piedras preciosas y el amor verdadero!','¡Ayuda a Gary el topo a acumular piedras preciosas que caen y a encontrar el amor verdadero!','false',false,false,'Diamond Drop 2');ag(114653997,'Amulet of Tricolor','/images/games/amulet_of_tricolor/amulet_of_tricolor81x46.gif',1007,114686823,'','false','/images/games/amulet_of_tricolor/amulet_of_tricolor16x16.gif',false,11323,'/images/games/amulet_of_tricolor/amulet_of_tricolor100x75.jpg','/images/games/amulet_of_tricolor/amulet_of_tricolor179x135.jpg','/images/games/amulet_of_tricolor/amulet_of_tricolor320x240.jpg','false','/images/games/thumbnails_med_2/amulet_of_tricolor130x75.gif','/exe/Amulet_of_Tricolor-setup.exe?lc=es&ext=Amulet_of_Tricolor-setup.exe','¡Acaba con la maldición del sueño del brujo!','¡Combina diamantes de colores para despertar a las hadas de una maldición que las mantiene dormidas!','false',false,false,'Amulet of Tricolor');ag(114656613,'Mysteries of Horus','/images/games/mysteries_of_horus/mysteries_of_horus81x46.gif',1003,114689690,'','false','/images/games/mysteries_of_horus/mysteries_of_horus16x16.gif',false,11323,'/images/games/mysteries_of_horus/mysteries_of_horus100x75.jpg','/images/games/mysteries_of_horus/mysteries_of_horus179x135.jpg','/images/games/mysteries_of_horus/mysteries_of_horus320x240.jpg','true','/images/games/thumbnails_med_2/mysteries_of_horus130x75.gif','/exe/Mysteries_of_Horus-setup.exe?lc=es&ext=Mysteries_of_Horus-setup.exe','Aplaca a los dioses egipcios con ofrendas.','Aplaca a los dioses egipcios con ofrendas en este absorbente rompecabezas.','false',false,false,'Mysteries of Horus');ag(114658360,'OceaniX','/images/games/oceanix/oceanix81x46.gif',1007,114691780,'','false','/images/games/oceanix/oceanix16x16.gif',false,11323,'/images/games/oceanix/oceanix100x75.jpg','/images/games/oceanix/oceanix179x135.jpg','/images/games/oceanix/oceanix320x240.jpg','false','/images/games/thumbnails_med_2/oceanix130x75.gif','/exe/OceaniX-setup.exe?lc=es&ext=OceaniX-setup.exe','Un rompecabezas subacuático de aventuras de destrucción de bloques.','Sube a bordo de un submarino para buscar tesoros en este rompecabezas de combinaciones.','false',false,false,'OceaniX');ag(114661600,'Hyperballoid 2','/images/games/hyperballoid_2/hyperballoid_281x46.gif',1003,11469483,'','false','/images/games/hyperballoid_2/hyperballoid_216x16.gif',false,11323,'/images/games/hyperballoid_2/hyperballoid_2100x75.jpg','/images/games/hyperballoid_2/hyperballoid_2179x135.jpg','/images/games/hyperballoid_2/hyperballoid_2320x240.jpg','true','/images/games/thumbnails_med_2/hyperballoid_2130x75.gif','/exe/Hyperballoid_2-setup.exe?lc=es&ext=Hyperballoid_2-setup.exe','¡Evasión al extremo!','¡Evasión al extremo que supera los límites de juego y gráficos!','false',false,false,'Hyperballoid 2');ag(114662913,'Sheep’s Quest','/images/games/Sheeps_Quest/Sheeps_Quest81x46.gif',1007,114695367,'','false','/images/games/Sheeps_Quest/Sheeps_Quest16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/sheeps_quest/sheeps_quest320x240.jpg','true','/images/games/thumbnails_med_2/Sheeps_Quest130x75.gif','/exe/Sheeps_Quest-setup.exe?lc=es&ext=Sheeps_Quest-setup.exe','¡Guía un adorable rebaño de ovejas!','Guía las ovejas esquivando enemigos y superando obstáculos en este estimulante rompecabezas.','false',false,false,'Sheeps Quest');ag(114663370,'Coffee Rush','/images/games/Coffee_Rush/Coffee_Rush81x46.gif',110127790,11469687,'','false','/images/games/Coffee_Rush/Coffee_Rush16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/coffee_rush/coffee_rush320x240.jpg','false','/images/games/thumbnails_med_2/Coffee_Rush130x75.gif','/exe/Coffee_Rush-setup.exe?lc=es&ext=Coffee_Rush-setup.exe','¡Prepara mezclas de café para clientes excéntricos!','Prepara 18 deliciosas mezclas de café para 12 divertidísimos clientes de la cafetería.','false',false,false,'Coffee Rush');ag(114664920,'Spandex Force','/images/games/spandex_force/spandex_force81x46.gif',1007,114697590,'','false','/images/games/spandex_force/spandex_force16x16.gif',false,11323,'/images/games/spandex_force/spandex_force100x75.jpg','/images/games/spandex_force/spandex_force179x135.jpg','/images/games/spandex_force/spandex_force320x240.jpg','false','/images/games/thumbnails_med_2/spandex_force_130x75.gif','/exe/Spandex_Force-setup.exe?lc=es&ext=Spandex_Force-setup.exe','¡Crea tu propio superhéroe!','¡Limpia una ciudad infestada de crimen en tu nuevo papel de superhéroe!','false',false,false,'Spandex Force');ag(114668510,'Doggie Dash','/images/games/doggie_dash/doggie_dash81x46.gif',110012530,114701823,'','false','/images/games/doggie_dash/doggie_dash16x16.gif',false,11323,'/images/games/doggie_dash/doggie_dash100x75.jpg','/images/games/doggie_dash/doggie_dash179x135.jpg','/images/games/doggie_dash/doggie_dash320x240.jpg','false','/images/games/thumbnails_med_2/doggie_dash130x75.gif','/exe/Doggie_Dash-setup.exe?lc=es&ext=Doggie_Dash-setup.exe','¡Limpia, acicala y mima a mascotas!','¡Limpia, acicala y mima a mascotas mientras haces crecer tu propio negocio!','false',false,false,'Doggie Dash');ag(114669510,'Egyptian Ball','/images/games/egyptian_ball/egyptian_ball81x46.gif',110119360,114702557,'','false','/images/games/egyptian_ball/egyptian_ball16x16.gif',false,11323,'/images/games/egyptian_ball/egyptian_ball100x75.jpg','/images/games/egyptian_ball/egyptian_ball179x135.jpg','/images/games/egyptian_ball/egyptian_ball320x240.jpg','false','/images/games/thumbnails_med_2/egyptian_ball130x75.gif','/exe/Egyptian_Ball-setup.exe?lc=es&ext=Egyptian_Ball-setup.exe','¡Es la guerra entre los dioses!','¡Construye un templo nuevo en nombre del nuevo dios!','false',false,false,'Egyptian Ball');ag(114676123,'Cosmic Stacker','/images/games/cosmic_stack/cosmic_stack81x46.gif',110097120,114709673,'9ac67bd5-843c-48d6-a721-f1610f291ff4','false','/images/games/cosmic_stack/cosmic_stack16x16.gif',false,11323,'/images/games/cosmic_stack/cosmic_stack100x75.jpg','/images/games/cosmic_stack/cosmic_stack179x135.jpg','/images/games/cosmic_stack/cosmic_stack320x240.jpg','false','/images/games/thumbnails_med_2/cosmic_stack130x75.gif','','¡Un desafiante rompecabezas estelar!','Empareja anillos para que desaparezcan en este rompecabezas estelar.','true',false,false,'Cosmic Stacker OL');ag(114680873,'Ice Cream Craze','/images/games/ice_cream_craze/ice_cream_craze81x46.gif',110012530,11471377,'','false','/images/games/ice_cream_craze/ice_cream_craze16x16.gif',false,11323,'/images/games/ice_cream_craze/ice_cream_craze100x75.jpg','/images/games/ice_cream_craze/ice_cream_craze179x135.jpg','/images/games/ice_cream_craze/ice_cream_craze320x240.jpg','false','/images/games/thumbnails_med_2/ice_cream_craze130x75.gif','/exe/Ice_Cream_Craze-setup.exe?lc=es&ext=Ice_Cream_Craze-setup.exe','¡Crea y sirve deliciosos postres!','¡Crea deliciosos postres nuevos en la heladería de los años 50!','false',false,false,'Ice Cream Craze');ag(114704217,'Puzzle Quest','/images/games/puzzle_quest/puzzle_quest81x46.gif',1007,114737607,'','false','/images/games/puzzle_quest/puzzle_quest16x16.gif',false,11323,'/images/games/puzzle_quest/puzzle_quest100x75.jpg','/images/games/puzzle_quest/puzzle_quest179x135.jpg','/images/games/puzzle_quest/puzzle_quest320x240.jpg','false','/images/games/thumbnails_med_2/puzzle_quest130x75.gif','/exe/Puzzle_Quest-setup.exe?lc=es&ext=Puzzle_Quest-setup.exe','¡Una batalla de combinaciones de 3 elementos contra las fuerzas del mal!','Salva el reino en esta batalla épica de combinaciones de 3 contra las fuerzas del mal.','false',false,false,'Puzzle Quest');ag(114711683,'Fashion Solitaire','/images/games/Fashion_Solitaire/Fashion_Solitaire81x46.gif',1004,114744887,'','false','/images/games/Fashion_Solitaire/Fashion_Solitaire16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/fashion_solitaire/fashion_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/Fashion_Solitaire130x75.gif','/exe/Fashion_Solitaire-setup.exe?lc=es&ext=Fashion_Solitaire-setup.exe','Combina los conjuntos de moda con los modelos.','Crea ocho colecciones de moda y combínalas con los modelos.','false',false,false,'Fashion Solitaire');ag(114716193,'Tumblebugs 2','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge81x46.gif',110119360,114749710,'','false','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge16x16.gif',false,11323,'/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge100x75.jpg','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge179x135.jpg','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge320x240.jpg','false','/images/games/thumbnails_med_2/tumblebugs_2_challenge130x75.gif','/exe/Tumblebugs_2-setup.exe?lc=es&ext=Tumblebugs_2-setup.exe','¡Rescata a tus compañeros escarabajos!','¡Reúne a tus compañeros escarabajos para combatir a los antipáticos invasores!','false',false,false,'Tumblebugs 2');ag(114717227,'Magic Farm','/images/games/magic_farm/magic_farm81x46.gif',110012530,114750837,'','false','/images/games/magic_farm/magic_farm16x16.gif',false,11323,'/images/games/magic_farm/magic_farm100x75.jpg','/images/games/magic_farm/magic_farm179x135.jpg','/images/games/magic_farm/magic_farm320x240.jpg','true','/images/games/thumbnails_med_2/magic_farm130x75.gif','/exe/Magic_Farm-setup.exe?lc=es&ext=Magic_Farm-setup.exe','¡Cultiva y vende flores y frutas!','¡Cultiva y vende flores y frutas protegiéndolas de plagas!','false',false,false,'Magic Farm');ag(114725460,'Rainbow Web 2','/images/games/rainbow_web2/rainbow_web281x46.gif',1007,11475883,'','false','/images/games/rainbow_web2/rainbow_web216x16.gif',false,11323,'/images/games/rainbow_web2/rainbow_web2100x75.jpg','/images/games/rainbow_web2/rainbow_web2179x135.jpg','/images/games/rainbow_web2/rainbow_web2320x240.jpg','true','/images/games/thumbnails_med_2/rainbow_web2130x75.gif','/exe/Rainbow_Web_2-setup.exe?lc=es&ext=Rainbow_Web_2-setup.exe','¡Rompe el hechizo del Brujo de las arañas!','¡Resuelve rompecabezas para romper el hechizo maligno del Brujo de las arañas!','false',false,false,'Rainbow Web 2');ag(114738273,'Jewel Quest','/images/games/jewelquest/jewelquest81x46.gif',110081853,114771193,'15f15f7f-502e-4891-829f-76b7c2e04418','false','/images/games/jewelquest/jewelquest16x16.gif',false,11323,'/images/games/jewelquest/jewelquest100x75.jpg','/images/games/jewelquest/jewelquest179x135.jpg','/images/games/jewelquest/jewelquest320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest130x75.gif','/exe/jewelquest-setup.exe?lc=es&ext=jewelquest-setup.exe','¡Un fascinante rompecabezas arqueológico!','¡Encuentra rutilantes tesoros en las antiguas ruinas mayas de este fascinante rompecabezas!','true',true,true,'Jewel Quest OLT1');ag(114740783,'Crazy 8’s','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s81x46.gif',110044360,114773313,'f87eb522-89d8-4674-a80b-6746dde649b6','true','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s16x16.gif',false,11323,'/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s100x75.jpg','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s179x135.jpg','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s320x240.jpg','false','/images/games/thumbnails_med_2/huit_americain_crazy_8s130x75.gif','','¡Crazy 8’s es pura diversión!','¡Un juego alocado y trepidante! ¡Crazy 8’s es pura diversión!','true',true,true,'Huit AmÃ©ricain Crazy 8s_MP');ag(114746527,'Insaniquarium Deluxe','/images/games/insaniquarium/insaniquarium81x46.gif',110097120,114779683,'fda60ea9-ebfd-4431-b161-b28ca7f06afd','false','/images/games/insaniquarium/insaniquarium16x16.gif',false,11323,'/images/games/insaniquarium/insaniquarium100x75.jpg','/images/games/insaniquarium/insaniquarium179x135.jpg','/images/games/insaniquarium/insaniquarium320x240.jpg','false','/images/games/thumbnails_med_2/insaniquarium130x75.gif','/exe/insaniquarium_deluxe-setup.exe?lc=es&ext=insaniquarium_deluxe-setup.exe','Una loca aventura de misterio submarina.','Alimenta los peces y lucha contra los alienígenas en esta aventura de misterio y acción submarina.','true',false,true,'Insaniquarium Deluxe OLT1');ag(114753397,'Poker Superstars III','/images/games/poker_superstars_3/poker_superstars_381x46.gif',110081853,114786333,'ecb19752-4008-49fd-a722-46ee3aa2aa9f','false','/images/games/poker_superstars_3/poker_superstars_316x16.gif',false,11323,'/images/games/poker_superstars_3/poker_superstars_3100x75.jpg','/images/games/poker_superstars_3/poker_superstars_3179x135.jpg','/images/games/poker_superstars_3/poker_superstars_3320x240.jpg','false','/images/games/thumbnails_med_2/poker_superstars_3130x75.gif','/exe/Poker_Superstars_3-setup.exe?lc=es&ext=Poker_Superstars_3-setup.exe','Desafía a las nuevas superestrellas del póquer.','Prepárate para el próximo enfrentamiento de póquer con las nuevas superestrellas.','true',true,true,'Poker Superstars 3 OLT1');ag(114755537,'Around the World in 80 Days','/images/games/around_the_world_in_80_days/around_the_world_in_80_days81x46.gif',110081853,114788113,'2f09a238-a991-4e4d-b374-3cb275eeaeb9','false','/images/games/around_the_world_in_80_days/around_the_world_in_80_days16x16.gif',false,11323,'/images/games/around_the_world_in_80_days/around_the_world_in_80_days100x75.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days179x135.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days320x240.jpg','false','/images/games/thumbnails_med_2/around_the_world_in_80_days130x75.gif','/exe/Around_the_World_in_80_Days-setup.exe?lc=es&ext=Around_the_World_in_80_Days-setup.exe','Un viaje arrollador por 4 continentes.','Un viaje arrollador por cuatro continentes por tierra, mar y aire.','true',true,true,'Around the World in 80 Days OL');ag(114770730,'Animal Agents','/images/games/animal_agents/animal_agents81x46.gif',1007,114803107,'','false','/images/games/animal_agents/animal_agents16x16.gif',false,11323,'/images/games/animal_agents/animal_agents100x75.jpg','/images/games/animal_agents/animal_agents179x135.jpg','/images/games/animal_agents/animal_agents320x240.jpg','false','/images/games/thumbnails_med_2/animal_agents130x75.gif','/exe/Animal_Agents-setup.exe?lc=es&ext=Animal_Agents-setup.exe','¡Busca a animales de granja desaparecidos!','¡Descubre un oscuro secreto mientras investigas la desaparición de los animales de granja!','false',false,false,'Animal Agents');ag(114774927,'Dream Chronicles 2','/images/games/dream_chronicles_2/dream_chronicles_281x46.gif',110012530,114807520,'','false','/images/games/dream_chronicles_2/dream_chronicles_216x16.gif',false,11323,'/images/games/dream_chronicles_2/dream_chronicles_2100x75.jpg','/images/games/dream_chronicles_2/dream_chronicles_2179x135.jpg','/images/games/dream_chronicles_2/dream_chronicles_2320x240.jpg','true','/images/games/thumbnails_med_2/dream_chronicles_2130x75.gif','/exe/Dream_Chronicles_2-setup.exe?lc=es&ext=Dream_Chronicles_2-setup.exe','¡Busca las 138 piezas de ensueño escondidas!','¡Ayuda a Faye a encontrar 138 piezas de ensueño y a escapar de la Reina de las hadas!','false',false,false,'Dream Chronicles 2');ag(114803710,'Star Defender 4','/images/games/star_defender_4/star_defender_481x46.gif',110109903,114836180,'','false','/images/games/star_defender_4/star_defender_416x16.gif',false,11323,'/images/games/star_defender_4/star_defender_4100x75.jpg','/images/games/star_defender_4/star_defender_4179x135.jpg','/images/games/star_defender_4/star_defender_4320x240.jpg','false','/images/games/thumbnails_med_2/star_defender_4130x75.gif','/exe/Star_Defender_4-setup.exe?lc=es&ext=Star_Defender_4-setup.exe','¡Dispara a alienígenas aún más feos!','¡Ocho nuevas misiones, mejores armas y alienígenas más feos a quien disparar!','false',false,false,'Star Defender 4');ag(114807207,'Big Kahuna Reef','/images/games/big_kahuna_reef/big_kahuna81x46.gif',110081853,114840113,'9f1756a1-87ea-44ce-9001-cefec7ba3121','false','/images/games/big_kahuna_reef/big_kahuna16x16.gif',false,11323,'/images/games/big_kahuna_reef/big_kahuna100x75.jpg','/images/games/big_kahuna_reef/big_kahuna179x135.jpg','/images/games/big_kahuna_reef/big_kahuna320x240.jpg','false','/images/games/thumbnails_med_2/big_kahuna130x75.gif','/exe/Big_Kahuna_Reef-setup.exe?lc=es&ext=Big_Kahuna_Reef-setup.exe','¡Embárcate en una aventura submarina!','Bucea por los arrecifes hawaianos en busca del tótem místico.','true',true,true,'Big Kahuna Reef OLT1');ag(114808207,'Cubis Gold 2','/images/games/cubisgold2/cubisgold281x46.gif',110083820,114841177,'4796622c-0a98-488e-951c-bb28c45b2ccf','false','/images/games/cubisgold2/cubisgold216x16.gif',false,11323,'/images/games/cubisgold2/cubisgold2100x75.jpg','/images/games/cubisgold2/cubisgold2179x135.jpg','/images/games/cubisgold2/cubisgold2320x240.jpg','false','/images/games/thumbnails_med_2/cubisgold2130x75.gif','/exe/cubisgold2-setup.exe?lc=es&ext=cubisgold2-setup.exe','¡300 nuevos niveles fascinantes!','¡Experimenta la nueva dimensión del juego que consiste en hacer coincidir cubos en 3D!','true',true,true,'Cubis Gold 2 OLT1');ag(114809130,'Diner Dash','/images/games/diner_dash/diner_dash81x46.gif',110081853,11484237,'32f2ee89-9f7c-47e6-a122-a532c5d50618','false','/images/games/diner_dash/diner_dash16x16.gif',false,11323,'/images/games/diner_dash/diner_dash100x75.jpg','/images/games/diner_dash/diner_dash179x135.jpg','/images/games/diner_dash/diner_dash320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash130x75.gif','/exe/diner_dash-setup.exe?lc=es&ext=diner_dash-setup.exe','¡Crea un imperio de restaurantes!','Ayuda a Flo, una antigua corredora de bolsa, a convertir su pequeño café en un restaurante de cinco estrellas.','true',true,true,'Diner Dash OLT1');ag(114810160,'Diner Dash: Flo on the Go','/images/games/diner_dash_flo_go/diner_dash_flo_go81x46.gif',110081853,114843147,'d819a50c-fd17-4618-b75f-1fcf5a9c3bef','false','/images/games/diner_dash_flo_go/diner_dash_flo_go16x16.gif',false,11323,'/images/games/diner_dash_flo_go/diner_dash_flo_go100x75.jpg','/images/games/diner_dash_flo_go/diner_dash_flo_go179x135.jpg','/images/games/diner_dash_flo_go/diner_dash_flo_go320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_flo_go130x75.gif','','¡Con nuevos clientes y restaurantes!','Novedosas emociones y clientes en una tercera entrega totalmente nueva.','true',true,true,'Diner Dash 3 OLT1');ag(114811147,'Dynasty','/images/games/Dynasty/Dynasty81x46.jpg',110081853,114844583,'c4431343-5420-4c93-8e75-b18c2f18286e','false','/images/games/Dynasty/Dynasty16x16.gif',false,11323,'/images/games/Dynasty/Dynasty100x75.jpg','/images/games/Dynasty/Dynasty179x135.jpg','/images/games/Dynasty/Dynasty320x240.jpg','false','/images/games/thumbnails_med_2/Dynasty130x75.gif','/exe/dynasty_new-setup.exe?lc=es&ext=dynasty_new-setup.exe','¡Libera a los dragones bebé!','Libera a los dragones bebé de sus huevos en este maravilloso juego de disparar bolas.','true',true,true,'Dynasty OLT1');ag(114812443,'Elemental','/images/games/Elemental/Elemental81x46.gif',110081853,114845410,'754885ec-5a74-4aca-a3d0-5f88e802160d','false','/images/games/Elemental/Elemental16x16.gif',false,11323,'/images/games/Elemental/Elemental100x75.jpg','/images/games/Elemental/Elemental179x135.jpg','/images/games/Elemental/Elemental320x240.jpg','false','/images/games/thumbnails_med_2/Elemental130x75.gif','/exe/elemental_mp-setup.exe?lc=es&ext=elemental_mp-setup.exe','¡Combina los componentes elementales de la vida!','¡Agua, aire, tierra, fuego! ¡Combina los componentes elementales de la vida!','true',true,true,'Elemental OLT1');ag(114813537,'Mahjong Match','/images/games/mahjong_match/mahjong_match81x46.gif',110081853,114846130,'a9639b44-1d49-41b5-be11-017b0e1b2f94','false','/images/games/mahjong_match/mahjong_match16x16.gif',false,11323,'/images/games/mahjong_match/mahjong_match100x75.jpg','/images/games/mahjong_match/mahjong_match179x135.jpg','/images/games/mahjong_match/mahjong_match320x240.jpg','true','/images/games/thumbnails_med_2/mahjong_match130x75.gif','/exe/Mahjong_Match-setup.exe?lc=es&ext=Mahjong_Match-setup.exe','Majohng se une a la emoción de los puzzles.','Majohng, el clásico solitario de emparejar fichas, se une a la diversión de los puzzles.','true',true,true,'Mahjong Match OLT1');ag(114822807,'Gems Quest','/images/games/gems_quest/gems_quest81x46.gif',1007,114855590,'','false','/images/games/gems_quest/gems_quest16x16.gif',false,11323,'/images/games/gems_quest/gems_quest100x75.jpg','/images/games/gems_quest/gems_quest179x135.jpg','/images/games/gems_quest/gems_quest320x240.jpg','false','/images/games/thumbnails_med_2/gems_quest130x75.gif','/exe/Gems_Quest-setup.exe?lc=es&ext=Gems_Quest-setup.exe','¡Despierta a ocho antiguos totems!','¡Despierta a ocho antiguos tótems que te concederán un increíble regalo!','false',false,false,'Gems Quest');ag(114828640,'Garden Defense','/images/games/garden_defense/garden_defense81x46.gif',110081853,114861623,'a5ee7571-f6c9-449e-86bc-8710bfb74754','false','/images/games/garden_defense/garden_defense16x16.gif',false,11323,'/images/games/garden_defense/garden_defense100x75.jpg','/images/games/garden_defense/garden_defense179x135.jpg','/images/games/garden_defense/garden_defense320x240.jpg','false','/images/games/thumbnails_med_2/garden_defense130x75.gif','','¡Protege los jardines de plagas malévolas!','Defiende tu jardín con un arsenal de plantas, bichos y adornos para el jardín.','true',true,true,'Garden Defense OLT1');ag(114852710,'Westward II: Heroes of the Frontier','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier81x46.gif',110127790,114885430,'','false','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier16x16.gif',false,11323,'/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier100x75.jpg','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier179x135.jpg','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier320x240.jpg','false','/images/games/thumbnails_med_2/westward_2_heroes_of_the_frontier130x75.gif','/exe/Westward_II-setup.exe?lc=es&ext=Westward_II-setup.exe','¡Construye un puesto fronterizo en el salvaje oeste!','¡Construye asentamientos e imparte justicia en esta nueva aventura de fronteras!','false',false,false,'Westward II');ag(114853527,'Dragonstone','/images/games/dragonstone/dragonstone81x46.gif',110119360,114886903,'','false','/images/games/dragonstone/dragonstone16x16.gif',false,11323,'/images/games/dragonstone/dragonstone100x75.jpg','/images/games/dragonstone/dragonstone179x135.jpg','/images/games/dragonstone/dragonstone320x240.jpg','true','/images/games/thumbnails_med_2/dragonstone130x75.gif','/exe/Dragonstone-setup.exe?lc=es&ext=Dragonstone-setup.exe','¡Gánate el amor de la princesa!','¡Ayuda a un caballero a recuperar la Piedra del dragón y gánate el amor de la princesa!','false',false,false,'Dragonstone');ag(114855630,'Wordz','/images/games/wordz/wordz81x46.gif',110097120,114888990,'0f9fa01e-1f7e-443a-a8e1-4ef988abb307','false','/images/games/wordz/wordz16x16.gif',false,11323,'/images/games/wordz/wordz100x75.jpg','/images/games/wordz/wordz179x135.jpg','/images/games/wordz/wordz320x240.jpg','false','/images/games/thumbnails_med_2/wordz130x75.gif','','Pon a prueba tu vocabulario y tu habilidad deletreando.','Pon a prueba tu vocabulario y tu habilidad deletreando, cambia las letras y descifra las palabras nuevas en Wordz.','true',false,false,'Wordz OL');ag(114856197,'Glassez','/images/games/glassez/glassez81x46.gif',110097120,114889883,'611f3ddc-1665-4869-a6e1-b7bd4e70ee8a','false','/images/games/glassez/glassez16x16.gif',false,11323,'/images/games/glassez/glassez100x75.jpg','/images/games/glassez/glassez179x135.jpg','/images/games/glassez/glassez320x240.jpg','false','/images/games/thumbnails_med_2/glassez130x75.gif','','¡Una agradable sorpresa de lógica!','Si te gustan los rompecabezas, prueba esta agradable sorpresa de lógica.','true',false,false,'Glassez OL');ag(114857510,'Sonny','/images/games/sonny/sonny81x46.gif',110097120,114890210,'42c8ac8f-e67e-4910-a8f0-93075ce1a194','false','/images/games/sonny/sonny16x16.gif',false,11323,'/images/games/sonny/sonny100x75.jpg','/images/games/sonny/sonny179x135.jpg','/images/games/sonny/sonny320x240.jpg','false','/images/games/thumbnails_med_2/sonny130x75.gif','','Un juego de rol de zombis épico y aventurero','¡Juega al zombi en este juego de rol épico y aventurero!','true',false,false,'Sonny OL');ag(114858953,'Mysteriez','/images/games/Mysteriez/Mysteriez81x46.gif',110097120,114891500,'7137ee42-89f5-4c35-9c86-16d227236807','false','/images/games/Mysteriez/Mysteriez16x16.gif',false,11323,'/images/games/Mysteriez/Mysteriez100x75.jpg','/images/games/Mysteriez/Mysteriez179x135.jpg','/images/games/Mysteriez/Mysteriez320x240.jpg','false','/images/games/thumbnails_med_2/Mysteriez130x75.gif','','Disfruta de este juego de objetos escondidos.','Conviértete en un detective en este juego de objetos escondidos. Juega a Mysteriez.','true',false,false,'Mysteriez OL');ag(114859503,'Desktop Tower Defense','/images/games/desktop_tower_defence/desktop_tower_defence81x46.gif',110081853,114892457,'7d930714-4bc4-469d-9b6a-ff0563008ffe','false','/images/games/desktop_tower_defence/desktop_tower_defence16x16.gif',false,11323,'/images/games/desktop_tower_defence/desktop_tower_defence100x75.jpg','/images/games/desktop_tower_defence/desktop_tower_defence179x135.jpg','/images/games/desktop_tower_defence/desktop_tower_defence320x240.jpg','false','/images/games/thumbnails_med_2/desktop_tower_defence130x75.gif','','¡Detén a los enemigos!','¡Detén a los enemigos! Más de 100 niveles de juego.','true',true,true,'Desktop Tower Defense OLT1');ag(114931973,'Hammer Heads','/images/games/hammer_heads/hammer_heads81x46.gif',110097120,114964940,'a26194c6-c9b0-4dbc-934c-b13359d4aea9','false','/images/games/hammer_heads/hammer_heads16x16.gif',false,11323,'/images/games/hammer_heads/hammer_heads100x75.jpg','/images/games/hammer_heads/hammer_heads179x135.jpg','/images/games/hammer_heads/hammer_heads320x240.jpg','false','/images/games/thumbnails_med_2/hammer_heads130x75.gif','','¡Destroza, golpea y pulveriza a los gnomos!','Destroza, golpea y pulveriza gnomos en este rápido juego de golpes de clic.','true',false,false,'Hammer Heads OL');ag(114933493,'The Mind Bender','/images/games/the_mind_bender/the_mind_bender81x46.gif',110097120,114966743,'694bcd47-9015-4dff-922c-566a19b7a644','false','/images/games/the_mind_bender/the_mind_bender16x16.gif',false,11323,'/images/games/the_mind_bender/the_mind_bender100x75.jpg','/images/games/the_mind_bender/the_mind_bender179x135.jpg','/images/games/the_mind_bender/the_mind_bender320x240.jpg','false','/images/games/thumbnails_med_2/the_mind_bender130x75.gif','','¡La telequinesia es tu aliada!','Usa la telequinesia para superar varios obstáculos y atravesar cada nivel.','true',false,false,'The Mind Bender OL');ag(114969777,'DarkSide','/images/games/darkside/darkside81x46.gif',110109903,115002603,'','false','/images/games/darkside/darkside16x16.gif',false,11323,'/images/games/darkside/darkside100x75.jpg','/images/games/darkside/darkside179x135.jpg','/images/games/darkside/darkside320x240.jpg','false','/images/games/thumbnails_med_2/darkside130x75.gif','/exe/DarkSide-setup.exe?lc=es&ext=DarkSide-setup.exe','¡Haz volar asteroides abarrotados de alienígenas!','¡Ábrete camino a disparo limpio entre cientos de gigantescos asteroides abarrotados de alienígenas!','false',false,false,'DarkSide');ag(114972710,'Ice Cream Dee Lites','/images/games/ice_cream_dee_lites/ice_cream_dee_lites81x46.gif',110012530,115005583,'','false','/images/games/ice_cream_dee_lites/ice_cream_dee_lites16x16.gif',false,11323,'/images/games/ice_cream_dee_lites/ice_cream_dee_lites100x75.jpg','/images/games/ice_cream_dee_lites/ice_cream_dee_lites179x135.jpg','/images/games/ice_cream_dee_lites/ice_cream_dee_lites320x240.jpg','false','/images/games/thumbnails_med_2/ice_cream_dee_lites130x75.gif','/exe/Ice_Cream_Dee_Lites-setup.exe?lc=es&ext=Ice_Cream_Dee_Lites-setup.exe','¡Gestiona una ajetreadísima heladería!','¡Ayuda a Dee a servir deliciosos helados a 16 clientes chiflados!','false',false,false,'Ice Cream Dee Lites');ag(114997207,'Legend of Aladdin','/images/games/legend_of_aladdin/legend_of_aladdin81x46.gif',110081853,115030160,'375d5350-81a2-473c-86ad-3128a4f9e76f','false','/images/games/legend_of_aladdin/legend_of_aladdin16x16.gif',false,11323,'/images/games/legend_of_aladdin/legend_of_aladdin100x75.jpg','/images/games/legend_of_aladdin/legend_of_aladdin179x135.jpg','/images/games/legend_of_aladdin/legend_of_aladdin320x240.jpg','false','/images/games/thumbnails_med_2/legend_of_aladdin130x75.gif','','¡Recupera las 120 piezas de la alfombra mágica!','Recupera las 120 piezas de la alfombra mágica en esta exótica aventura de agrupar iconos.','true',true,true,'Legend of Aladdin OLT1');ag(114998800,'Castle Smasher','/images/games/castle_smasher/castle_smasher81x46.gif',110081853,115031520,'21c9966a-9174-4041-8f60-5270b5fb5696','false','/images/games/castle_smasher/castle_smasher16x16.gif',false,11323,'/images/games/castle_smasher/castle_smasher100x75.jpg','/images/games/castle_smasher/castle_smasher179x135.jpg','/images/games/castle_smasher/castle_smasher320x240.jpg','false','/images/games/thumbnails_med_2/castle_smasher130x75.gif','','¡Conquista el reino!','¡Conquista el reino con tu catapulta!','true',true,true,'Castle Smasher OLT1');ag(114999340,'ZOODomino','/images/games/zoo_domino/zoo_domino81x46.gif',110081853,115032260,'4eedaa00-3c7c-4597-845d-e5c6aaf378f5','false','/images/games/zoo_domino/zoo_domino16x16.gif',false,11323,'/images/games/zoo_domino/zoo_domino100x75.jpg','/images/games/zoo_domino/zoo_domino179x135.jpg','/images/games/zoo_domino/zoo_domino320x240.jpg','false','/images/games/thumbnails_med_2/zoo_domino130x75.gif','','¡Ayuda a las libélulas a salvar el mundo!','¡Ayuda a las libélulas mágicas a salvar el mundo en este reto de dominó!','true',true,true,'ZooDomino OLT1');ag(115001157,'Boomstick','/images/games/boomstick/boomstick81x46.gif',110097120,115034357,'873ed1b3-fb40-4477-9e95-25b0891ae10b','false','/images/games/boomstick/boomstick16x16.gif',false,11323,'/images/games/boomstick/boomstick100x75.jpg','/images/games/boomstick/boomstick179x135.jpg','/images/games/boomstick/boomstick320x240.jpg','false','/images/games/thumbnails_med_2/boomstick130x75.gif','','¡Diversión y tumulto explosivos!','Tú y tu fiel escopeta contra una avalancha de formas.','true',false,false,'Boomstick OL');ag(115002687,'Pet Shop Hop','/images/games/pet_shop_hop/pet_shop_hop81x46.gif',110012530,115035187,'','false','/images/games/pet_shop_hop/pet_shop_hop16x16.gif',false,11323,'/images/games/pet_shop_hop/pet_shop_hop100x75.jpg','/images/games/pet_shop_hop/pet_shop_hop179x135.jpg','/images/games/pet_shop_hop/pet_shop_hop320x240.jpg','false','/images/games/thumbnails_med_2/pet_shop_hop130x75.gif','/exe/Pet_Shop_Hop-setup.exe?lc=es&ext=Pet_Shop_Hop-setup.exe','¡Dirige una tienda de animales con éxito!','¡Empareja a clientes con adorables mascotas en este juego de simulación comercial!','false',false,false,'Pet Shop Hop');ag(115011423,'Snapshot Adventures','/images/games/snapshot_adventures/snapshot_adventures81x46.gif',110083820,11504480,'76c2a53b-8bd2-4dfd-9c92-4ef5a4a4415c','false','/images/games/snapshot_adventures/snapshot_adventures16x16.gif',false,11323,'/images/games/snapshot_adventures/snapshot_adventures100x75.jpg','/images/games/snapshot_adventures/snapshot_adventures179x135.jpg','/images/games/snapshot_adventures/snapshot_adventures320x240.jpg','false','/images/games/thumbnails_med_2/snapshot_adventures130x75.gif','','Fotografía 135 especies de pájaros.','Fotografía 135 especies de pájaros en una excursión por el campo.','true',false,false,'Snapshot Adventures OL');ag(115012333,'Dream Chronicles','/images/games/dream_chronicles/dream_chronicles81x46.gif',110097120,11504537,'a140410f-5cc4-4b6a-82da-99bbb79caf3b','false','/images/games/dream_chronicles/dream_chronicles16x16.gif',false,11323,'/images/games/dream_chronicles/dream_chronicles100x75.jpg','/images/games/dream_chronicles/dream_chronicles179x135.jpg','/images/games/dream_chronicles/dream_chronicles320x240.jpg','false','/images/games/thumbnails_med_2/dream_chronicles130x75.gif','','¡Donde la fantasía y la realidad se confunden!','Rompe un misterioso hechizo durmiente que afecta a toda una ciudad.','true',false,false,'Dream Chronicles OL');ag(115016213,'Chocolatier® 2: Secret Ingredients™','/images/games/chocolatier2/chocolatier281x46.gif',110083820,11504940,'6909bf93-448a-4261-9747-2f29009df160','false','/images/games/chocolatier2/chocolatier216x16.gif',false,11323,'/images/games/chocolatier2/chocolatier2100x75.jpg','/images/games/chocolatier2/chocolatier2179x135.jpg','/images/games/chocolatier2/chocolatier2320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier2130x75.gif','','¡Reconstruye tu imperio de chocolate!','¡Viaja por el mundo en busca de ingredientes mientras reconstruyes tu imperio de chocolate!','true',false,false,'Chocolatier 2 OL');ag(115017100,'Nanny Mania','/images/games/NannyMania/NannyMania81x46.gif',110083820,115050913,'882dc7bd-4b95-41e4-af91-f17f8950b18a','false','/images/games/NannyMania/NannyMania16x16.gif',false,11323,'/images/games/NannyMania/NannyMania100x75.jpg','/images/games/NannyMania/NannyMania179x135.jpg','/images/games/NannyMania/NannyMania320x240.jpg','false','/images/games/thumbnails_med_2/NannyMania130x75.gif','','Haz las tareas del hogar.','Haz las tareas del hogar mientras cuidas a cuatro niños muy movidos.','true',false,false,'Nanny Mania OL');ag(115033430,'Mahjong Quest 2','/images/games/mahjong_quest_2/mahjong_quest_281x46.gif',110081853,115066743,'234ae190-63b3-4f6a-81e0-f677da2ee07f','false','/images/games/mahjong_quest_2/mahjong_quest_216x16.gif',false,11323,'/images/games/mahjong_quest_2/mahjong_quest_2100x75.jpg','/images/games/mahjong_quest_2/mahjong_quest_2179x135.jpg','/images/games/mahjong_quest_2/mahjong_quest_2320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_quest_2130x75.gif','','¡Ayuda a Kwasi a volver a equilibrar el universo!','Resuelve los rompecabezas mahjong para recuperar el Ying y el Yang que divide a Kwasi en dos personas.','true',true,true,'Mahjong Quest 2 OLT1');ag(115035527,'Chocolatier','/images/games/chocolatier/chocolatier81x46.gif',110083820,115068387,'2704360e-d965-4706-a6c4-90978d7b46bb','false','/images/games/chocolatier/chocolatier16x16.gif',false,11323,'/images/games/chocolatier/chocolatier100x75.jpg','/images/games/chocolatier/chocolatier179x135.jpg','/images/games/chocolatier/chocolatier320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier130x75.gif','','Crea todo un imperio de chocolate.','Conquista el mundo del chocolate y conviértete en un maestro chocolatero.','true',false,false,'Chocolatier OL');ag(115036563,'Zenerchi','/images/games/zenerchi/zenerchi81x46.gif',110097120,11506980,'53792c11-5ea6-4a43-b23b-86b241a166a7','false','/images/games/zenerchi/zenerchi16x16.gif',false,11323,'/images/games/zenerchi/zenerchi100x75.jpg','/images/games/zenerchi/zenerchi179x135.jpg','/images/games/zenerchi/zenerchi320x240.jpg','false','/images/games/thumbnails_med_2/zenerchi130x75.gif','','¡Libera estrés con Zenerchi!','Libera estrés con este relajante rompecabezas. ¡Juega a Zenerchi!','true',false,false,'Zenerchi OL');ag(115037120,'Mystery of Shark Island','/images/games/MysterySharkIsland/MysterySharkIsland81x46.gif',110083820,115070340,'da2aed7c-1819-46d7-b6cf-687b553eb85c','false','/images/games/MysterySharkIsland/MysterySharkIsland16x16.gif',false,11323,'/images/games/MysterySharkIsland/MysterySharkIsland100x75.jpg','/images/games/MysterySharkIsland/MysterySharkIsland179x135.jpg','/images/games/MysterySharkIsland/MysterySharkIsland320x240.jpg','false','/images/games/thumbnails_med_2/MysterySharkIsland130x75.gif','','¡Descubre el secreto de una isla perdida!','Reúne conchas para descubrir los misterios de una civilización perdida.','true',false,false,'Mystery of Shark Island OL');ag(115039953,'Belle’s Beauty Boutique','/images/games/BellesBeauty/BellesBeauty81x46.gif',110081853,115072733,'7b593339-b69d-4300-9955-3db24a194db2','false','/images/games/BellesBeauty/BellesBeauty16x16.gif',false,11323,'/images/games/BellesBeauty/BellesBeauty100x75.jpg','/images/games/BellesBeauty/BellesBeauty179x135.jpg','/images/games/BellesBeauty/BellesBeauty320x240.jpg','false','/images/games/thumbnails_med_2/BellesBeauty130x75.gif','/exe/Belles_Beauty_Boutique-setup.exe?lc=es&ext=Belles_Beauty_Boutique-setup.exe','¡Dirige tu propio salón de belleza!','Corta el pelo a una serie loca de clientas del salón de belleza.','true',false,true,'Belles Beauty Boutique OLT1');ag(115047883,'Planet Journey','/images/games/planet_journey/planet_journey81x46.gif',110097120,115080633,'1875a15d-6a13-4261-b97b-05b42faa60c6','false','/images/games/planet_journey/planet_journey16x16.gif',false,11323,'/images/games/planet_journey/planet_journey100x75.jpg','/images/games/planet_journey/planet_journey179x135.jpg','/images/games/planet_journey/planet_journey320x240.jpg','false','/images/games/thumbnails_med_2/planet_journey130x75.gif','','Pon tu nave a salvo de los alienígenas.','¡Viaja por el espacio y pon tu nave a salvo de los alienígenas!','true',false,false,'Planet Journey OL');ag(115048393,'Cupid Run','/images/games/cupid_run/cupid_run81x46.gif',110097120,115081127,'08b9aab3-5f06-41b0-979a-8ac20d2ab5ed','false','/images/games/cupid_run/cupid_run16x16.gif',false,11323,'/images/games/cupid_run/cupid_run100x75.jpg','/images/games/cupid_run/cupid_run179x135.jpg','/images/games/cupid_run/cupid_run320x240.jpg','false','/images/games/thumbnails_med_2/cupid_run130x75.gif','','¡Gana puntos saltando nubes!','¡Salta todas las nubes que puedas para recoger puntos!','true',false,false,'Cupid Run OL');ag(115050127,'Mystery PI - The Vegas Heist','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist81x46.gif',1007,115083830,'','false','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist16x16.gif',false,11323,'/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist100x75.jpg','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist179x135.jpg','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist320x240.jpg','true','/images/games/thumbnails_med_2/mystery_pi_the_vegas_heist130x75.gif','/exe/Mystery_PI_The_Vegas_Heist-setup.exe?lc=es&ext=Mystery_PI_The_Vegas_Heist-setup.exe','¡Recupera miles de millones robados de un casino!','¡Encuentra y devuelve $4 mil millones robados del casino más nuevo de Las Vegas!','false',false,false,'Mystery PI The Vegas Heist');ag(115052737,'Bottle Busters','/images/games/bottle_busters/bottle_busters81x46.gif',110119360,115085610,'','false','/images/games/bottle_busters/bottle_busters16x16.gif',false,11323,'/images/games/bottle_busters/bottle_busters100x75.jpg','/images/games/bottle_busters/bottle_busters179x135.jpg','/images/games/bottle_busters/bottle_busters320x240.jpg','false','/images/games/thumbnails_med_2/bottle_busters130x75.gif','/exe/Bottle_Busters-setup.exe?lc=es&ext=Bottle_Busters-setup.exe','¡Derriba botellas 3D!','¡Destruye botellas y gana premios en un entorno 3D!','false',false,false,'Bottle Busters');ag(115053100,'Dairy Dash','/images/games/dairy_dash/dairy_dash81x46.gif',110012530,115086977,'','false','/images/games/dairy_dash/dairy_dash16x16.gif',false,11323,'/images/games/dairy_dash/dairy_dash100x75.jpg','/images/games/dairy_dash/dairy_dash179x135.jpg','/images/games/dairy_dash/dairy_dash320x240.jpg','false','/images/games/thumbnails_med_2/dairy_dash130x75.gif','/exe/Dairy_Dash-setup.exe?lc=es&ext=Dairy_Dash-setup.exe','¡Ayuda a unos inútiles de ciudad a llevar una granja!','¡Ayuda a unos inútiles de ciudad a criar animales y a cultivar plantas!','false',false,false,'Dairy Dash');ag(115056617,'Eye for Design','/images/games/eye_for_design/eye_for_design81x46.gif',1007,115089507,'','false','/images/games/eye_for_design/eye_for_design16x16.gif',false,11323,'/images/games/eye_for_design/eye_for_design100x75.jpg','/images/games/eye_for_design/eye_for_design179x135.jpg','/images/games/eye_for_design/eye_for_design320x240.jpg','false','/images/games/thumbnails_med_2/eye_for_design130x75.gif','/exe/Eye_for_Design-setup.exe?lc=es&ext=Eye_for_Design-setup.exe','¡Diseña y decora casas de ensueño!','¡Diseña y decora casas de ensueño en este juego-rompecabezas de diseño de interiores!','false',false,false,'Eye for Design');ag(115058743,'Finders Keepers','/images/games/finders_keepers/finders_keepers81x46.gif',110083820,115091213,'059a3e77-603c-4dea-91df-a652d95eae2f','false','/images/games/finders_keepers/finders_keepers16x16.gif',false,11323,'/images/games/finders_keepers/finders_keepers100x75.jpg','/images/games/finders_keepers/finders_keepers179x135.jpg','/images/games/finders_keepers/finders_keepers320x240.jpg','false','/images/games/thumbnails_med_2/finders_keepers130x75.gif','','Explora el Atlántico en busca de tesoros.','Navega por el Atlántico en busca de tesoros con Floyd y su gato.','true',false,false,'Finders Keepers OL');ag(115064787,'Virtual Villagers 3: The Secret City','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city81x46.gif',110127790,115097380,'','false','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city16x16.gif',false,11323,'/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city100x75.jpg','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city179x135.jpg','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city320x240.jpg','false','/images/games/thumbnails_med_2/virtual_villagers_the_secret_city130x75.gif','/exe/Virtual_Villagers_3_The_Secret_City-setup.exe?lc=es&ext=Virtual_Villagers_3_The_Secret_City-setup.exe','¡Guía a los náufragos hacia una ciudad misteriosa!','¡Guía a una tribu de náufragos hacia una nueva ciudad misteriosa!','false',false,false,'Virtual Villagers 3 The Secret');ag(115065740,'Bubbletown','/images/games/bubbletown/bubbletown81x46.gif',110119360,115098587,'','false','/images/games/bubbletown/bubbletown16x16.gif',false,11323,'/images/games/bubbletown/bubbletown100x75.jpg','/images/games/bubbletown/bubbletown179x135.jpg','/images/games/bubbletown/bubbletown320x240.jpg','false','/images/games/thumbnails_med_2/bubbletown130x75.gif','/exe/Bubbletown-setup.exe?lc=es&ext=Bubbletown-setup.exe','¡Salva a los habitantes de la bahía Borb del desastre!','Salva a los habitantes de la bahía Borb del desastre en este adictivo rompecabezas arcade.','false',false,false,'Bubbletown');ag(115067477,'The Hidden Object Show','/images/games/the_hidden_object_show/the_hidden_object_show81x46.gif',1007,11510023,'','false','/images/games/the_hidden_object_show/the_hidden_object_show16x16.gif',false,11323,'/images/games/the_hidden_object_show/the_hidden_object_show100x75.jpg','/images/games/the_hidden_object_show/the_hidden_object_show179x135.jpg','/images/games/the_hidden_object_show/the_hidden_object_show320x240.jpg','true','/images/games/thumbnails_med_2/the_hidden_object_show130x75.gif','/exe/The_Hidden_Object_Show-setup.exe?lc=es&ext=The_Hidden_Object_Show-setup.exe','¡Descubre objetos y gana millones!','¡Descubre objetos ocultos y gana millones en un concurso de juegos estrafalario!','false',false,false,'The Hidden Object Show');ag(115068540,'Little Farm','/images/games/little_farm/little_farm81x46.gif',1007,115101103,'','false','/images/games/little_farm/little_farm16x16.gif',false,11323,'/images/games/little_farm/little_farm100x75.jpg','/images/games/little_farm/little_farm179x135.jpg','/images/games/little_farm/little_farm320x240.jpg','false','/images/games/thumbnails_med_2/little_farm130x75.gif','/exe/Little_Farm-setup.exe?lc=es&ext=Little_Farm-setup.exe','¡Cultiva un montón de verduras!','¡Lucha contra los insectos, los animales y el tiempo para cultivar un montón de verduras!','false',false,false,'Little Farm');ag(115071933,'Penguin’s Journey','/images/games/penguins_journey/penguins_journey81x46.gif',1007,115104700,'','false','/images/games/penguins_journey/penguins_journey16x16.gif',false,11323,'/images/games/penguins_journey/penguins_journey100x75.jpg','/images/games/penguins_journey/penguins_journey179x135.jpg','/images/games/penguins_journey/penguins_journey320x240.jpg','false','/images/games/thumbnails_med_2/penguins_journey130x75.gif','/exe/Penguins_Journey-setup.exe?lc=es&ext=Penguins_Journey-setup.exe','Une piezas para construir puentes hacia la Antártida.','Une piezas para construir puentes y ayudar a los pingüinos a llegar a sus tierras antárticas.','false',false,false,'Penguins Journey');ag(115077637,'Virtual Farm','/images/games/virtual_farm/virtual_farm81x46.gif',110012530,115110323,'','false','/images/games/virtual_farm/virtual_farm16x16.gif',false,11323,'/images/games/virtual_farm/virtual_farm100x75.jpg','/images/games/virtual_farm/virtual_farm179x135.jpg','/images/games/virtual_farm/virtual_farm320x240.jpg','true','/images/games/thumbnails_med_2/virtual_farm130x75.gif','/exe/Virtual_Farm-setup.exe?lc=es&ext=Virtual_Farm-setup.exe','¡Cultiva y vende productos!','Lleva una granja, controla la demanda y lleva tus productos al mercado.','false',false,false,'Virtual Farm');ag(115079987,'Tropicabana','/images/games/tropicabana/tropicabana81x46.gif',1007,115112877,'','false','/images/games/tropicabana/tropicabana16x16.gif',false,11323,'/images/games/tropicabana/tropicabana100x75.jpg','/images/games/tropicabana/tropicabana179x135.jpg','/images/games/tropicabana/tropicabana320x240.jpg','false','/images/games/thumbnails_med_2/tropicabana130x75.gif','/exe/Tropicabana-setup.exe?lc=es&ext=Tropicabana-setup.exe','¡Entretén al público del casino Tropicabana!','¡Mantén al público entretenido como gerente del casino Tropicabana!','false',false,false,'Tropicabana');ag(115080293,'Ice Smash','/images/games/ice_smash/ice_smash81x46.gif',110097120,115113963,'6004e2d9-3274-42fa-9486-2ebed35b5115','false','/images/games/ice_smash/ice_smash16x16.gif',false,11323,'/images/games/ice_smash/ice_smash100x75.jpg','/images/games/ice_smash/ice_smash179x135.jpg','/images/games/ice_smash/ice_smash320x240.jpg','false','/images/games/thumbnails_med_2/ice_smash130x75.gif','','¡Rompe el hielo para rescatar a los bebés tortuga!','¡Rompe el hielo para rescatar y salvar a tus bebés tortuga!','true',false,false,'Ice Smash OL');ag(115096427,'Money Tree','/images/games/money_tree/money_tree81x46.gif',110119360,11512920,'','false','/images/games/money_tree/money_tree16x16.gif',false,11323,'/images/games/money_tree/money_tree100x75.jpg','/images/games/money_tree/money_tree179x135.jpg','/images/games/money_tree/money_tree320x240.jpg','false','/images/games/thumbnails_med_2/money_tree130x75.gif','/exe/Money_Tree-setup.exe?lc=es&ext=Money_Tree-setup.exe','Gana dinero y encuentra amor verdadero.','Planta un árbol de dinero y ayuda a un jardinero a encontrar amor verdadero.','false',false,false,'Money Tree');ag(115100790,'Brickz! 2','/images/games/brickz_2/brickz_281x46.gif',110097120,11513340,'623853d8-4d7e-48d0-bc64-014dac1cc28e','false','/images/games/brickz_2/brickz_216x16.gif',false,11323,'/images/games/brickz_2/brickz_2100x75.jpg','/images/games/brickz_2/brickz_2179x135.jpg','/images/games/brickz_2/brickz_2320x240.jpg','false','/images/games/thumbnails_med_2/brickz_2130x75.gif','','¡Construye la torre más alta!','Mueve los bloques con cuidado y construye una torre lo más alta posible.','true',false,false,'Brickz 2 OL');ag(115101127,'TBA','/images/games/TBA/TBA81x46.gif',110081853,115134407,'b71ba226-29c8-4189-b0c8-e823ac64358a','false','/images/games/TBA/TBA16x16.gif',false,11323,'/images/games/TBA/TBA100x75.jpg','/images/games/TBA/TBA179x135.jpg','/images/games/TBA/TBA320x240.jpg','false','/images/games/thumbnails_med_2/TBA130x75.gif','','¡Lanza de puerto a puerto!','Lanza de puerto a puerto tan rápido como puedas.','true',true,true,'TBA OLT1');ag(115102137,'Sunday Lawn','/images/games/sunday_lawn/sunday_lawn81x46.gif',110081853,115135823,'2ed05527-3dc8-4d8f-8d93-cd00a1547366','false','/images/games/sunday_lawn/sunday_lawn16x16.gif',false,11323,'/images/games/sunday_lawn/sunday_lawn100x75.jpg','/images/games/sunday_lawn/sunday_lawn179x135.jpg','/images/games/sunday_lawn/sunday_lawn320x240.jpg','false','/images/games/thumbnails_med_2/sunday_lawn130x75.gif','','¡Diviértete cortando el césped!','¡Cortar el césped nunca ha sido tan divertido!','true',true,true,'Sunday Lawn OLT1');ag(115105990,'Crime Puzzle','/images/games/CrimePuzzle/CrimePuzzle81x46.gif',110081853,115138833,'6b646995-ecec-4e7f-9c9f-796fe8aac735','false','/images/games/CrimePuzzle/CrimePuzzle16x16.gif',false,11323,'/images/games/CrimePuzzle/CrimePuzzle100x75.jpg','/images/games/CrimePuzzle/CrimePuzzle179x135.jpg','/images/games/CrimePuzzle/CrimePuzzle320x240.jpg','false','/images/games/thumbnails_med_2/CrimePuzzle130x75.gif','/exe/Crime_Puzzle-setup.exe?lc=es&ext=Crime_Puzzle-setup.exe','¡Resuelve las pistas para recuperar los sellos robados!','Investiga las figuras misteriosas para recuperar la colección de sellos robada de Sir Dawson.','true',true,true,'Crime Puzzle OLT1');ag(115118933,'Fitz','/images/games/fitz/fitz81x46.gif',110097120,115151857,'230d004d-e29d-47ec-bcb6-a78a1ba2d792','false','/images/games/fitz/fitz16x16.gif',false,11323,'/images/games/fitz/fitz100x75.jpg','/images/games/fitz/fitz179x135.jpg','/images/games/fitz/fitz320x240.jpg','false','/images/games/thumbnails_med_2/fitz130x75.gif','','¡Cambia las fichas y combina tres!','¡Cambia las fichas de colores y combina tres o más para hacerlas estallar!','true',false,false,'Fitz OL');ag(115121193,'The Lost Cases of Sherlock Holmes','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes81x46.gif',1007,115154583,'','false','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes16x16.gif',false,11323,'/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes100x75.jpg','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes179x135.jpg','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes320x240.jpg','true','/images/games/thumbnails_med_2/the_lost_cases_of_sherlock_holmes130x75.gif','/exe/The_Lost_Cases_of_Sherlock_Holmes-setup.exe?lc=es&ext=The_Lost_Cases_of_Sherlock_Holmes-setup.exe','Resuelve 16 delitos diferentes.','Investiga 16 casos de falsificación, espionaje, robo y asesinato.','false',false,false,'The Lost Cases of Sherlock Hol');ag(115125397,'Supermarket Mania','/images/games/supermarket_mania/supermarket_mania81x46.gif',110012530,115158223,'','false','/images/games/supermarket_mania/supermarket_mania16x16.gif',false,11323,'/images/games/supermarket_mania/supermarket_mania100x75.jpg','/images/games/supermarket_mania/supermarket_mania179x135.jpg','/images/games/supermarket_mania/supermarket_mania320x240.jpg','true','/images/games/thumbnails_med_2/supermarket_mania130x75.gif','/exe/Supermarket_Mania-setup.exe?lc=es&ext=Supermarket_Mania-setup.exe','¡Diviértete jugando a reponer hasta no poder más!','¡Transforma cinco insignificantes tiendas de comestibles en éxitos enormes!','false',false,false,'Supermarket Mania');ag(115145653,'Easter Eggin','/images/games/easter_eggin/easter_eggin81x46.gif',110081853,115178470,'0cf0aad4-5de2-46b9-b457-e4a69ecfa8a9','false','/images/games/easter_eggin/easter_eggin16x16.gif',false,11323,'/images/games/easter_eggin/easter_eggin100x75.jpg','/images/games/easter_eggin/easter_eggin179x135.jpg','/images/games/easter_eggin/easter_eggin320x240.jpg','false','/images/games/thumbnails_med_2/easter_eggin130x75.gif','','¡Encuentra todos los huevos de Pascua!','¡Busca y encuentra todos los huevos en este clásico de Pascua!','true',true,true,'Easter Eggin OLT1');ag(115146870,'Valentiner','/images/games/valentiner/valentiner81x46.gif',110081853,115179790,'c0afb164-1902-48f2-95fd-b956460f0634','false','/images/games/valentiner/valentiner16x16.gif',false,11323,'/images/games/valentiner/valentiner100x75.jpg','/images/games/valentiner/valentiner179x135.jpg','/images/games/valentiner/valentiner320x240.jpg','false','/images/games/thumbnails_med_2/valentiner130x75.gif','','¡Recoge corazones de oro!','¡Eres Cupido y debes recoger todos los corazones de oro antes de que el tiempo se agote!','true',true,true,'Valentiner OLT1');ag(115155843,'Gold Miner: SE','/images/games/gold_miner_se/gold_miner_se81x46.gif',110081853,115188310,'bfcafbec-7545-4969-bfdc-55844630d916','false','/images/games/gold_miner_se/gold_miner_se16x16.gif',false,11323,'/images/games/gold_miner_se/gold_miner_se100x75.jpg','/images/games/gold_miner_se/gold_miner_se179x135.jpg','/images/games/gold_miner_se/gold_miner_se320x240.jpg','false','/images/games/thumbnails_med_2/gold_miner_se130x75.gif','','¡Gold Miner ha vuelto!','¡Extrae oro tan rápido como puedas!','true',true,true,'Gold Miner SE OLT1');ag(115157203,'Phit','/images/games/phit/phit81x46.gif',110083820,115190953,'8e2aa850-7464-4b5b-9251-a7c175ceeabc','false','/images/games/phit/phit16x16.gif',false,11323,'/images/games/phit/phit100x75.jpg','/images/games/phit/phit179x135.jpg','/images/games/phit/phit320x240.jpg','false','/images/games/thumbnails_med_2/phit130x75.gif','','¿Puedes unirlas todas?','Une las fichas en este rompecabezas adictivo.','true',false,false,'Phit OL');ag(115162883,'Wedding Dash 2','/images/games/wedding_dash_2/wedding_dash_281x46.gif',110012530,115195743,'','false','/images/games/wedding_dash_2/wedding_dash_216x16.gif',false,11323,'/images/games/wedding_dash_2/wedding_dash_2100x75.jpg','/images/games/wedding_dash_2/wedding_dash_2179x135.jpg','/images/games/wedding_dash_2/wedding_dash_2320x240.jpg','false','/images/games/thumbnails_med_2/wedding_dash_2130x75.gif','/exe/Wedding_Dash_2-setup.exe?lc=es&ext=Wedding_Dash_2-setup.exe','¡Planifica bodas en lugares exóticos!','¡Haz realidad las solicitudes de boda de Bridezilla y del nuevo Groom-Kong!','false',false,false,'Wedding Dash 2');ag(115171837,'High Tide','/images/games/high_tide/high_tide81x46.gif',110081853,115204273,'4ab0bf1d-b955-4cc5-93fb-363e7043ae72','false','/images/games/high_tide/high_tide16x16.gif',false,11323,'/images/games/high_tide/high_tide100x75.jpg','/images/games/high_tide/high_tide179x135.jpg','/images/games/high_tide/high_tide320x240.jpg','false','/images/games/thumbnails_med_2/high_tide130x75.gif','','¡No dejes de saltar para mantenerte a salvo!','¡La marea va subiendo, así que no dejes de saltar para mantenerte a salvo!','true',true,true,'High Tide OLT1');ag(115172877,'Pool Jam','/images/games/pool_jam/pool_jam81x46.gif',110081853,115205970,'c31213c1-57e0-4b3d-8c99-69b6c8fe54fb','false','/images/games/pool_jam/pool_jam16x16.gif',false,11323,'/images/games/pool_jam/pool_jam100x75.jpg','/images/games/pool_jam/pool_jam179x135.jpg','/images/games/pool_jam/pool_jam320x240.jpg','false','/images/games/thumbnails_med_2/pool_jam130x75.gif','','¡El juego de billar favorito de todos!','¡Gana puntos jugando al juego de billar favorito de todos!','true',true,true,'Pool Jam OLT1');ag(115173990,'Speed','/images/games/speed/speed81x46.gif',110081853,115206893,'add02c6e-f2ad-440a-a2e3-53749cdaff80','false','/images/games/speed/speed16x16.gif',false,11323,'/images/games/speed/speed100x75.jpg','/images/games/speed/speed179x135.jpg','/images/games/speed/speed320x240.jpg','false','/images/games/thumbnails_med_2/speed130x75.gif','','¿Te crees rápido? ¡Prueba Speed!','¡El juego de naipes más rápido a este lado del Misisipi!','true',true,true,'Speed OLT1');ag(115176620,'Master Qwan’s Mahjongg','/images/games/master_qwans_mahjongg/master_qwans_mahjongg81x46.gif',110081853,115209793,'34f21586-06ce-4066-b3df-98d67021054e','false','/images/games/master_qwans_mahjongg/master_qwans_mahjongg16x16.gif',false,11323,'/images/games/master_qwans_mahjongg/master_qwans_mahjongg100x75.jpg','/images/games/master_qwans_mahjongg/master_qwans_mahjongg179x135.jpg','/images/games/master_qwans_mahjongg/master_qwans_mahjongg320x240.jpg','false','/images/games/thumbnails_med_2/master_qwans_mahjongg130x75.gif','','¡Diviértete con el clásico mahjongg!','¡Derrota al maestro en el divertido juego clásico de mahjongg!','true',true,true,'Master Qwanâ€™s Mahjongg OLT1');ag(115187917,'Stunt Bike Island','/images/games/stunt_bike_island/stunt_bike_island81x46.gif',110097120,115220307,'87f69d1d-7a88-47eb-a273-14084b1ac370','false','/images/games/stunt_bike_island/stunt_bike_island16x16.gif',false,11323,'/images/games/stunt_bike_island/stunt_bike_island100x75.jpg','/images/games/stunt_bike_island/stunt_bike_island179x135.jpg','/images/games/stunt_bike_island/stunt_bike_island320x240.jpg','false','/images/games/thumbnails_med_2/stunt_bike_island130x75.gif','','¡Acción extrema y tropical en bicicleta de montaña!','Stunt Bike Island es un juego de bicicletas con acrobacias espectaculares... ¡y un toque tropical!','true',false,false,'Stunt Bike Island OL');ag(115189690,'Hell’s Kitchen','/images/games/hells_kitchen/hells_kitchen81x46.gif',110012530,115222907,'','false','/images/games/hells_kitchen/hells_kitchen16x16.gif',false,11323,'/images/games/hells_kitchen/hells_kitchen100x75.jpg','/images/games/hells_kitchen/hells_kitchen179x135.jpg','/images/games/hells_kitchen/hells_kitchen320x240.jpg','false','/images/games/thumbnails_med_2/hells_kitchen130x75.gif','/exe/Hells_Kitchen-setup.exe?lc=es&ext=Hells_Kitchen-setup.exe','¿Puedes sobrevivir a una olla a presión?','¡Ábrete camino en una serie de exigentes desafíos de cocina!','false',false,false,'Hells Kitchen');ac(110011217,'Deportes','Tradewinds Caravans');ag(115190197,'Tradewinds Caravans','/images/games/tradewinds_caravans/tradewinds_caravans81x46.gif',110011217,115223260,'','false','/images/games/tradewinds_caravans/tradewinds_caravans16x16.gif',false,11323,'/images/games/tradewinds_caravans/tradewinds_caravans100x75.jpg','/images/games/tradewinds_caravans/tradewinds_caravans179x135.jpg','/images/games/tradewinds_caravans/tradewinds_caravans320x240.jpg','false','/images/games/thumbnails_med_2/tradewinds_caravans130x75.gif','/exe/Tradewinds_Caravans-setup.exe?lc=es&ext=Tradewinds_Caravans-setup.exe','¡Atraviesa una peligrosa ruta de intercambio comercial!','¡Atraviesa una peligrosa ruta de intercambio comercial mientras te defiendes de bandidos y criaturas míticas!','false',false,false,'Tradewinds Caravans');ag(115208410,'First Class Flurry','/images/games/first_class_flurry/first_class_flurry81x46.gif',110012530,115241707,'','false','/images/games/first_class_flurry/first_class_flurry16x16.gif',false,11323,'/images/games/first_class_flurry/first_class_flurry100x75.jpg','/images/games/first_class_flurry/first_class_flurry179x135.jpg','/images/games/first_class_flurry/first_class_flurry320x240.jpg','true','/images/games/thumbnails_med_2/first_class_flurry130x75.gif','/exe/First_Class_Flurry-setup.exe?lc=es&ext=First_Class_Flurry-setup.exe','¡Mima a los pasajeros como auxiliar de vuelo!','¡Ayuda a la auxiliar de vuelo Claire a mimar a caprichosos pasajeros tanto de clase turista como de primera clase!','false',false,false,'First Class Flurry');ag(115212887,'Cross Sums','/images/games/cross_sums/cross_sums81x46.gif',110097120,115245403,'4e9ae30c-6e4e-4ebc-84f8-ab503edb5139','false','/images/games/cross_sums/cross_sums16x16.gif',false,11323,'/images/games/cross_sums/cross_sums100x75.jpg','/images/games/cross_sums/cross_sums179x135.jpg','/images/games/cross_sums/cross_sums320x240.jpg','false','/images/games/thumbnails_med_2/cross_sums130x75.gif','','Un juego de números en cuadrícula.','Añade números consecutivos para alcanzar los totales dados en la cuadrícula.','true',false,false,'Cross Sums OL');ag(115213523,'Backwards','/images/games/backwards/backwards81x46.gif',110097120,115246227,'306f1728-1eb6-4f4b-87af-6147bae09786','false','/images/games/backwards/backwards16x16.gif',false,11323,'/images/games/backwards/backwards100x75.jpg','/images/games/backwards/backwards179x135.jpg','/images/games/backwards/backwards320x240.jpg','false','/images/games/thumbnails_med_2/backwards130x75.gif','','Sencillas matemáticas para resolver al revés','Utilizando sencillas matemáticas, encuentra las ecuaciones para las respuestas dadas.','true',false,false,'Backwards OL');ag(115214367,'Ranch Rush','/images/games/ranch_rush/ranch_rush81x46.gif',110012530,115247383,'','false','/images/games/ranch_rush/ranch_rush16x16.gif',false,11323,'/images/games/ranch_rush/ranch_rush100x75.jpg','/images/games/ranch_rush/ranch_rush179x135.jpg','/images/games/ranch_rush/ranch_rush320x240.jpg','true','/images/games/thumbnails_med_2/ranch_rush130x75.gif','/exe/Ranch_Rush-setup.exe?lc=es&ext=Ranch_Rush-setup.exe','¡Convierte tres acres en un próspero rancho!','Ayuda a Sara a convertir tres acres en un próspero mercado de granjeros.','false',false,false,'Ranch Rush');ag(115218107,'Bonnie’s Bookstore','/images/games/Bonnie_Bookstore/Bonnie_Bookstore81x46.gif',110097120,115251890,'d2205bde-1d8c-4425-a325-1c6f4e620d79','false','/images/games/Bonnie_Bookstore/Bonnie_Bookstore16x16.gif',false,11323,'/images/games/Bonnie_Bookstore/Bonnie_Bookstore100x75.jpg','/images/games/Bonnie_Bookstore/Bonnie_Bookstore179x135.jpg','/images/games/Bonnie_Bookstore/Bonnie_Bookstore320x240.jpg','false','/images/games/thumbnails_med_2/Bonnie_Bookstore130x75.gif','','¡Ayuda a una escritora novel a convertirse en autora!','¡Pon a prueba tu habilidad con las palabras ayudando a una ambiciosa escritora!','true',false,false,'Bonnies Bookstore OL');ag(115219193,'Family Restaurant','/images/games/family_restaurant/family_restaurant81x46.gif',110083820,115252850,'e9e35b10-07f2-4dad-b146-e5a30fec93c5','false','/images/games/family_restaurant/family_restaurant16x16.gif',false,11323,'/images/games/family_restaurant/family_restaurant100x75.jpg','/images/games/family_restaurant/family_restaurant179x135.jpg','/images/games/family_restaurant/family_restaurant320x240.jpg','false','/images/games/thumbnails_med_2/family_restaurant130x75.gif','','Pon a prueba la eficacia de tus habilidades culinarias.','Prepara platos deliciosos y creativos rápidamente para ganarte una clasificación de 5 estrellas.','true',false,false,'Family Restaurant OL');ag(115222563,'Babyblimp','/images/games/babyblimp/babyblimp81x46.gif',110012530,115255610,'','false','/images/games/babyblimp/babyblimp16x16.gif',false,11323,'/images/games/babyblimp/babyblimp100x75.jpg','/images/games/babyblimp/babyblimp179x135.jpg','/images/games/babyblimp/babyblimp320x240.jpg','false','/images/games/thumbnails_med_2/babyblimp130x75.gif','/exe/Babyblimp-setup.exe?lc=es&ext=Babyblimp-setup.exe','Ayuda a las cigüeñas a entregar los bebés.','Supervisa la producción de bebés y asegúrate de que las cigüeñas entregan los recién nacidos correctamente.','false',false,false,'Babyblimp');ag(115224440,'Fishdom','/images/games/fishdom/fishdom81x46.gif',1007,115257753,'','false','/images/games/fishdom/fishdom16x16.gif',false,11323,'/images/games/fishdom/fishdom100x75.jpg','/images/games/fishdom/fishdom179x135.jpg','/images/games/fishdom/fishdom320x240.jpg','true','/images/games/thumbnails_med_2/fishdom130x75.gif','/exe/Fishdom-setup.exe?lc=es&ext=Fishdom-setup.exe','¡Crea el acuario virtual de tus sueños!','¡Crea un acuario virtual con peces exóticos y atractivos ornamentos!','false',false,false,'Fishdom');ag(115231370,'Build In Time','/images/games/build_in_time/build_in_time81x46.gif',110012530,115264933,'','false','/images/games/build_in_time/build_in_time16x16.gif',false,11323,'/images/games/build_in_time/build_in_time100x75.jpg','/images/games/build_in_time/build_in_time179x135.jpg','/images/games/build_in_time/build_in_time320x240.jpg','false','/images/games/thumbnails_med_2/build_in_time130x75.gif','/exe/Build_In_Time-setup.exe?lc=es&ext=Build_In_Time-setup.exe','¡Construye casas modernas y retro!','Construye casas modernas y retro para jóvenes actrices, hippies y más.','false',false,false,'Build In Time');ag(115232530,'Jewel Quest 3','/images/games/jewel_quest_3/jewel_quest_381x46.gif',1007,115265627,'fec0d21c-4b05-43c3-b428-21c68672930d','false','/images/games/jewel_quest_3/jewel_quest_316x16.gif',false,11323,'/images/games/jewel_quest_3/jewel_quest_3100x75.jpg','/images/games/jewel_quest_3/jewel_quest_3179x135.jpg','/images/games/jewel_quest_3/jewel_quest_3320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_3130x75.gif','/exe/Jewel_Quest_3-setup.exe?lc=es&ext=Jewel_Quest_3-setup.exe','¡Empareja las joyas y descubre secretos!','Empareja joyas, descubre secretos y encuentra el fabuloso tablero de joyas de oro.','false',false,false,'Jewel Quest 3');ag(115235353,'Pyramid Runner','/images/games/pyramid_runner/pyramid_runner81x46.gif',110083820,115268370,'01e4b0b2-ff9e-4409-80b0-273916d752d6','false','/images/games/pyramid_runner/pyramid_runner16x16.gif',false,11323,'/images/games/pyramid_runner/pyramid_runner100x75.jpg','/images/games/pyramid_runner/pyramid_runner179x135.jpg','/images/games/pyramid_runner/pyramid_runner320x240.jpg','false','/images/games/thumbnails_med_2/pyramid_runner130x75.gif','','¡Descubre tesoros ocultos por todo el mundo!','¡Prepárate para descubrir tesoros ocultos por todo el mundo!','true',false,false,'Pyramid Runner OL');ag(115237770,'Arctic Quest 2','/images/games/Arctic_Quest_2/Arctic_Quest_281x46.gif',110083820,115270913,'8e35251f-bfcf-44d0-bab8-bd1abee785df','false','/images/games/Arctic_Quest_2/Arctic_Quest_216x16.gif',false,11323,'/images/games/Arctic_Quest_2/Arctic_Quest_2100x75.jpg','/images/games/Arctic_Quest_2/Arctic_Quest_2179x135.jpg','/images/games/Arctic_Quest_2/Arctic_Quest_2320x240.jpg','false','/images/games/thumbnails_med_2/Arctic_Quest_2130x75.gif','','Salva a las criaturas de una prisión de hielo.','Devuelve la vida a las criaturas exóticas resolviendo los 100 rompecabezas.','true',false,false,'Arctic Quest 2 OL');ag(115238163,'Crystalix','/images/games/crystalix/crystalix81x46.gif',110083820,115271617,'2be44679-accd-4f89-afe2-0058a3052910','false','/images/games/crystalix/crystalix16x16.gif',false,11323,'/images/games/crystalix/crystalix100x75.jpg','/images/games/crystalix/crystalix179x135.jpg','/images/games/crystalix/crystalix320x240.jpg','false','/images/games/thumbnails_med_2/crystalix130x75.gif','','¡Salva Fairyland del impacto de un cometa!','¡Salva Fairyland del impacto de un cometa y sus millones de fragmentos de cristal!','true',false,false,'Crystalix OL');ag(115239890,'Mahjongg Artifacts 2','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_281x46.gif',110097120,115272703,'0c24ba8f-232b-4539-b1c9-eb83b96686e7','false','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_216x16.gif',false,11323,'/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2100x75.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2179x135.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2320x240.jpg','false','/images/games/thumbnails_med_2/mahjongg_artifacts_2130x75.gif','','¡Una increíble aventura emparejando fichas!','Colecciona perlas para adquirir poderes especiales en esta aventura de emparejar fichas.','true',false,false,'Mahjongg Artifacts 2 OL');ag(115240523,'Flower Quest','/images/games/Flower_Quest/Flower_Quest81x46.gif',110083820,115273243,'9d08f73a-9ea7-4337-aecb-516b92880b32','false','/images/games/Flower_Quest/Flower_Quest16x16.gif',false,11323,'/images/games/Flower_Quest/Flower_Quest100x75.jpg','/images/games/Flower_Quest/Flower_Quest179x135.jpg','/images/games/Flower_Quest/Flower_Quest320x240.jpg','false','/images/games/thumbnails_med_2/Flower_Quest130x75.gif','','¡Lucha por reconstruir el reino de las flores!','¡Conecta y recopila flores para sacar la magia que llevan dentro!','true',false,false,'Flower Quest OL');ag(115242337,'The Black Knight','/images/games/the_black_knight/the_black_knight81x46.gif',110081853,115275680,'4149ee44-8bc9-48f3-8b89-1854c5e862c7','false','/images/games/the_black_knight/the_black_knight16x16.gif',false,11323,'/images/games/the_black_knight/the_black_knight100x75.jpg','/images/games/the_black_knight/the_black_knight179x135.jpg','/images/games/the_black_knight/the_black_knight320x240.jpg','false','/images/games/thumbnails_med_2/the_black_knight130x75.gif','','¡Recauda oro de los campesinos!','¡Recauda oro de una panda de campesinos gorrones!','true',true,true,'The Black Knight OLT1');ag(115246907,'Elf Bowling: Hawaiian Vacation','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation81x46.gif',110119360,115279140,'','false','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation16x16.gif',false,11323,'/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation100x75.jpg','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation179x135.jpg','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation320x240.jpg','false','/images/games/thumbnails_med_2/elf_bowling_hawaiian_vacation130x75.gif','/exe/Elf_Bowling_Hawaiian_Vacation-setup.exe?lc=es&ext=Elf_Bowling_Hawaiian_Vacation-setup.exe','Juega a los bolos con los personajes más estrafalarios del lugar.','Juega a los bolos contra tus adversarios haciendo trampas.','false',false,false,'Elf Bowling Hawaiian Vacation');ag(115248650,'Serfs Up','/images/games/serfs_up/serfs_up81x46.gif',110081853,115281650,'75f14c4c-6699-4158-bc04-fe03f629b851','false','/images/games/serfs_up/serfs_up16x16.gif',false,11323,'/images/games/serfs_up/serfs_up100x75.jpg','/images/games/serfs_up/serfs_up179x135.jpg','/images/games/serfs_up/serfs_up320x240.jpg','false','/images/games/thumbnails_med_2/serfs_up130x75.gif','','¿A que distancia volarán tus siervos?','Lanza a los campesinos y a los siervos tan lejos como puedas. ¡Juega a Serfs Up!','true',true,true,'Serfs Up OLT1');ag(115250583,'Fishdom','/images/games/fishdom/fishdom81x46.gif',110081853,115283787,'7b5ca69a-e1da-4b82-ba27-f7ccff1de916','false','/images/games/fishdom/fishdom16x16.gif',false,11323,'/images/games/fishdom/fishdom100x75.jpg','/images/games/fishdom/fishdom179x135.jpg','/images/games/fishdom/fishdom320x240.jpg','false','/images/games/thumbnails_med_2/fishdom130x75.gif','','¡Crea el acuario virtual de tus sueños!','¡Crea un acuario virtual con peces exóticos y atractivos ornamentos!','true',true,true,'Fishdom OLT1');ag(115251523,'Rocket’s Red Glare','/images/games/rockets_red_glare/rockets_red_glare81x46.gif',110081853,115284133,'25e1d6d4-6b7e-4488-a514-d3f9ba99297b','false','/images/games/rockets_red_glare/rockets_red_glare16x16.gif',false,11323,'/images/games/rockets_red_glare/rockets_red_glare100x75.jpg','/images/games/rockets_red_glare/rockets_red_glare179x135.jpg','/images/games/rockets_red_glare/rockets_red_glare320x240.jpg','false','/images/games/thumbnails_med_2/rockets_red_glare130x75.gif','','¡Haz que el Tío Sam se sienta orgulloso!','Ayuda al Tío Sam a impresionar al público con fuegos artificiales.','true',true,true,'Rocketâ€™s Red Glare OLT1');ag(115254883,'Jewel Miner','/images/games/jewel_miner/jewel_miner81x46.gif',110081853,115287977,'deca756b-f911-42d9-9bea-5bd70a0068ec','false','/images/games/jewel_miner/jewel_miner16x16.gif',false,11323,'/images/games/jewel_miner/jewel_miner100x75.jpg','/images/games/jewel_miner/jewel_miner179x135.jpg','/images/games/jewel_miner/jewel_miner320x240.jpg','false','/images/games/thumbnails_med_2/jewel_miner130x75.gif','','La mina de las piedras preciosas.','¡Rompecabezas de acción de combinaciones increíbles!','true',true,true,'Jewel Miner OLT1');ag(115256437,'Bling Bling Blaster','/images/games/blingblingblaster/blingblingblaster81x46.gif',110081853,115289813,'95ba10f7-387e-4005-8f87-a0c9b92355a3','false','/images/games/blingblingblaster/blingblingblaster16x16.gif',false,11323,'/images/games/blingblingblaster/blingblingblaster100x75.jpg','/images/games/blingblingblaster/blingblingblaster179x135.jpg','/images/games/blingblingblaster/blingblingblaster320x240.jpg','false','/images/games/thumbnails_med_2/blingblingblaster130x75.gif','','¡Combina tesoros y hazte rico!','¡Combina piezas de tesoro y crea conjuntos de tres piezas!','true',true,true,'Bling Bling Blaster OLT1');ag(115257803,'HangStan Trivia','/images/games/hangstan_trivia/hangstan_trivia81x46.gif',110081853,115290520,'8d8433d2-a404-4571-bd1e-a527a13cf68d','false','/images/games/hangstan_trivia/hangstan_trivia16x16.gif',false,11323,'/images/games/hangstan_trivia/hangstan_trivia100x75.jpg','/images/games/hangstan_trivia/hangstan_trivia179x135.jpg','/images/games/hangstan_trivia/hangstan_trivia320x240.jpg','false','/images/games/thumbnails_med_2/hangstan_trivia130x75.gif','','¡Salva al cerdo Stan!','¡Ayuda al cerdo Stan para evitar que acabe convertido en el almuerzo del granjero Ted!','true',true,true,'HangStan Trivia OLT1');ag(115260463,'Snowy Treasure Hunter','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter81x46.gif',110097120,115293713,'14cdef07-4833-48b6-af7d-ec915bb25e5e','false','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter16x16.gif',false,11323,'/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter100x75.jpg','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter179x135.jpg','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter320x240.jpg','false','/images/games/thumbnails_med_2/Snowy_Treasure_Hunter130x75.gif','','¡Burla a las malignas criaturas marinas y consigue tesoros!','¡Ayuda al oso Snowy a burlar a los astutos monstruos y encontrar tesoros!','true',false,false,'Snowy Treasure Hunter OL');ag(115267797,'Fashion Dash','/images/games/fashion_dash/fashion_dash81x46.gif',110012530,115300860,'','false','/images/games/fashion_dash/fashion_dash16x16.gif',false,11323,'/images/games/fashion_dash/fashion_dash100x75.jpg','/images/games/fashion_dash/fashion_dash179x135.jpg','/images/games/fashion_dash/fashion_dash320x240.jpg','false','/images/games/thumbnails_med_2/fashion_dash130x75.gif','/exe/Fashion_Dash-setup.exe?lc=es&ext=Fashion_Dash-setup.exe','¡Viste a los clientes con ropa a medida!','¡Viste a los clientes que quieren pagar muchísimo dinero por su ropa a medida!','false',false,false,'Fashion Dash');ag(115270120,'Yummy Drink Factory','/images/games/yummy_drink_factory/yummy_drink_factory81x46.gif',110012530,115303260,'','false','/images/games/yummy_drink_factory/yummy_drink_factory16x16.gif',false,11323,'/images/games/yummy_drink_factory/yummy_drink_factory100x75.jpg','/images/games/yummy_drink_factory/yummy_drink_factory179x135.jpg','/images/games/yummy_drink_factory/yummy_drink_factory320x240.jpg','false','/images/games/thumbnails_med_2/yummy_drink_factory130x75.gif','/exe/Yummy_Drink_Factory-setup.exe?lc=es&ext=Yummy_Drink_Factory-setup.exe','¡Crea bebidas para personajes de cuento!','¡Crea y sirve 36 bebidas dulces a personajes de cuento!','false',false,false,'Yummy Drink Factory');ag(115276917,'Schooled','/images/games/schooled/schooled81x46.gif',110097120,115309603,'cd2b7a5d-0fdb-44f5-8842-463c5a9ab1e4','false','/images/games/schooled/schooled16x16.gif',false,11323,'/images/games/schooled/schooled100x75.jpg','/images/games/schooled/schooled179x135.jpg','/images/games/schooled/schooled320x240.jpg','false','/images/games/thumbnails_med_2/schooled130x75.gif','','Un juego de palabras nada aburrido.','¿Podrás superar a tus rivales en la escuela de peces?','true',false,false,'Schooled OL');ag(115280190,'Saqqarah','/images/games/saqqarah/saqqarah81x46.gif',1007,115313707,'','false','/images/games/saqqarah/saqqarah16x16.gif',false,11323,'/images/games/saqqarah/saqqarah100x75.jpg','/images/games/saqqarah/saqqarah179x135.jpg','/images/games/saqqarah/saqqarah320x240.jpg','true','/images/games/thumbnails_med_2/saqqarah130x75.gif','/exe/Saqqarah-setup.exe?lc=es&ext=Saqqarah-setup.exe','¡Cumple una antigua profecía egipcia!','¡Evita que un dios maligno del antiguo Egipto escape de su tumba!','false',false,false,'Saqqarah');ag(115281967,'Run N Gun','/images/games/run_n_gun/run_n_gun81x46.gif',110081853,115314637,'2fd88da9-318c-4afc-9a7d-55ccf35dd97f','false','/images/games/run_n_gun/run_n_gun16x16.gif',false,11323,'/images/games/run_n_gun/run_n_gun100x75.jpg','/images/games/run_n_gun/run_n_gun179x135.jpg','/images/games/run_n_gun/run_n_gun320x240.jpg','false','/images/games/thumbnails_med_2/run_n_gun130x75.gif','','¡Conduce a tu equipo hacia la victoria!','¿Listo para jugar al fútbol americano?','true',true,true,'Run N Gun OLT1');ag(115282457,'Lightning','/images/games/lightning/lightning81x46.gif',110081853,115315317,'39cde4dc-0c78-4f81-a5b8-223159b9e5c3','false','/images/games/lightning/lightning16x16.gif',false,11323,'/images/games/lightning/lightning100x75.jpg','/images/games/lightning/lightning179x135.jpg','/images/games/lightning/lightning320x240.jpg','false','/images/games/thumbnails_med_2/lightning130x75.gif','','¿Eres tan rápido como el relámpago?','Deshazte de todos tus naipes antes que el ordenador.','true',true,true,'Lightning OLT1');ag(115284853,'Big Money','/images/games/BigMoney/BigMoney81x46.gif',110081853,115317760,'1eccc0fe-de49-451e-a696-6872330a694d','false','/images/games/BigMoney/BigMoney16x16.gif',false,11323,'/images/games/BigMoney/BigMoney100x75.jpg','/images/games/BigMoney/BigMoney179x135.jpg','/images/games/BigMoney/BigMoney320x240.jpg','false','/images/games/thumbnails_med_2/BigMoney130x75.gif','','¡En este rompecabezas la avaricia te llevará lejos!','¡Recoge monedas y llena bolsas de dinero en este rápido rompecabezas!','true',true,true,'Big Money OLT1');ag(115286387,'OPERATION MANIA','/images/games/operation_mania/operation_mania81x46.gif',110127790,115319247,'','false','/images/games/operation_mania/operation_mania16x16.gif',false,11323,'/images/games/operation_mania/operation_mania100x75.jpg','/images/games/operation_mania/operation_mania179x135.jpg','/images/games/operation_mania/operation_mania320x240.jpg','false','/images/games/thumbnails_med_2/operation_mania130x75.gif','/exe/OPERATION_Mania-setup.exe?lc=es&ext=OPERATION_Mania-setup.exe','¡Caos médico en urgencias!','¡Trabaja a contrarreloj para tratar a pacientes con enfermedades imposibles en urgencias!','false',false,false,'OPERATION Mania');ag(115290153,'Go-Go Gourmet: Chef of the Year','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year81x46.gif',110127790,115323997,'','false','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year16x16.gif',false,11323,'/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year100x75.jpg','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year179x135.jpg','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year320x240.jpg','false','/images/games/thumbnails_med_2/go_go_gourmet_chef_of_the_year130x75.gif','/exe/Go_Go_Gourmet_2-setup.exe?lc=es&ext=Go_Go_Gourmet_2-setup.exe','¡Compite contra a los mejores chefs internacionales!','Ayuda a Ginger a ganar concursos de cocina contra los mejores chefs del mundo.','false',false,false,'Go Go Gourmet 2');ag(115295813,'Jewel Quest 3','/images/games/jewel_quest_3/jewel_quest_381x46.gif',110081853,115328673,'fec0d21c-4b05-43c3-b428-21c68672930d','false','/images/games/jewel_quest_3/jewel_quest_316x16.gif',false,11323,'/images/games/jewel_quest_3/jewel_quest_3100x75.jpg','/images/games/jewel_quest_3/jewel_quest_3179x135.jpg','/images/games/jewel_quest_3/jewel_quest_3320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_3130x75.gif','/exe/Jewel_Quest_3-setup.exe?lc=es&ext=Jewel_Quest_3-setup.exe','¡Empareja las joyas y descubre secretos!','Empareja joyas, descubre secretos y encuentra el fabuloso tablero de joyas de oro.','true',true,true,'Jewel Quest 3 OLT1');ag(115296133,'Glyph 2','/images/games/glyph2/glyph281x46.gif',1007,115329883,'','false','/images/games/glyph2/glyph216x16.gif',false,11323,'/images/games/glyph2/glyph2100x75.jpg','/images/games/glyph2/glyph2179x135.jpg','/images/games/glyph2/glyph2320x240.jpg','true','/images/games/thumbnails_med_2/glyph2130x75.gif','/exe/Glyph_2-setup.exe?lc=es&ext=Glyph_2-setup.exe','Salva el mundo agonizante de Kuros.','Salva el mundo agonizante de Kuros en esta misteriosa e intrigante aventura.','false',false,false,'Glyph 2');ag(115310837,'Jojos Fashion Show 2','/images/games/jojos_fashion_show_2/jojos_fashion_show_281x46.gif',110012530,115343523,'','false','/images/games/jojos_fashion_show_2/jojos_fashion_show_216x16.gif',false,11323,'/images/games/jojos_fashion_show_2/jojos_fashion_show_2100x75.jpg','/images/games/jojos_fashion_show_2/jojos_fashion_show_2179x135.jpg','/images/games/jojos_fashion_show_2/jojos_fashion_show_2320x240.jpg','true','/images/games/thumbnails_med_2/jojos_fashion_show_2130x75.gif','/exe/jojos_fashion_show_2-setup.exe?lc=es&ext=jojos_fashion_show_2-setup.exe','¡Presenta una nueva línea de ropa!','¡Lanza una nueva línea de ropa en pasarelas de diferentes ciudades, desde Los Ángeles a Berlín!','false',false,false,'Jojos Fashion Show 2');ag(115312823,'Family Flights','/images/games/family_flights/family_flights81x46.gif',110012530,115345637,'','false','/images/games/family_flights/family_flights16x16.gif',false,11323,'/images/games/family_flights/family_flights100x75.jpg','/images/games/family_flights/family_flights179x135.jpg','/images/games/family_flights/family_flights320x240.jpg','true','/images/games/thumbnails_med_2/family_flights130x75.gif','/exe/Family_Flights-setup.exe?lc=es&ext=Family_Flights-setup.exe','¡Atiende las necesidades de unos pasajeros muy quisquillosos!','¡Atiende las necesidades de un avión lleno de pasajeros quisquillosos!','false',false,false,'Family Flights');ag(115313460,'Enchanted Cavern','/images/games/enchanted_cavern/enchanted_cavern81x46.gif',1007,115346307,'','false','/images/games/enchanted_cavern/enchanted_cavern16x16.gif',false,11323,'/images/games/enchanted_cavern/enchanted_cavern100x75.jpg','/images/games/enchanted_cavern/enchanted_cavern179x135.jpg','/images/games/enchanted_cavern/enchanted_cavern320x240.jpg','true','/images/games/thumbnails_med_2/enchanted_cavern130x75.gif','/exe/enchanted_cavern-setup.exe?lc=es&ext=enchanted_cavern-setup.exe','¡Combina piedras dentro de una cueva!','¡Combina piedras preciosas en un viaje por una cueva legendaria!','false',false,false,'Enchanted Cavern');ag(115320460,'Turbo Fiesta','/images/games/turbo_fiesta/turbo_fiesta81x46.gif',110127790,115353133,'','false','/images/games/turbo_fiesta/turbo_fiesta16x16.gif',false,11323,'/images/games/turbo_fiesta/turbo_fiesta100x75.jpg','/images/games/turbo_fiesta/turbo_fiesta179x135.jpg','/images/games/turbo_fiesta/turbo_fiesta320x240.jpg','false','/images/games/thumbnails_med_2/turbo_fiesta130x75.gif','/exe/Turbo_Fiesta-setup.exe?lc=es&ext=Turbo_Fiesta-setup.exe','Sirve comida rápida a clientes interplanetarios.','Sirve comida rápida a clientes interplanetarios en esta aventura astronómica y gastronómica.','false',false,false,'Turbo Fiesta');ag(115323810,'Rainbow Mystery','/images/games/rainbowmystery/rainbowmystery81x46.gif',110081853,115356327,'d380b04b-acd9-42fd-a510-5f3ff63d16e5','false','/images/games/rainbowmystery/rainbowmystery16x16.gif',false,11323,'/images/games/rainbowmystery/rainbowmystery100x75.jpg','/images/games/rainbowmystery/rainbowmystery179x135.jpg','/images/games/rainbowmystery/rainbowmystery320x240.jpg','false','/images/games/thumbnails_med_2/rainbowmystery130x75.gif','','¡Recupera los colores del arco iris maldito!','¡Rompe la maldición para recuperar los colores del Mundo del arco iris!','true',true,true,'Rainbow Mystery OLT 1');ag(115328120,'Hidden Wonders Of The Depths','/images/games/hidden_wonders/hidden_wonders81x46.gif',1007,115361857,'','false','/images/games/hidden_wonders/hidden_wonders16x16.gif',false,11323,'/images/games/hidden_wonders/hidden_wonders100x75.jpg','/images/games/hidden_wonders/hidden_wonders179x135.jpg','/images/games/hidden_wonders/hidden_wonders320x240.jpg','false','/images/games/thumbnails_med_2/hidden_wonders130x75.gif','/exe/hidden_wonders_of_the_depths-setup.exe?lc=es&ext=hidden_wonders_of_the_depths-setup.exe','Una aventura submarina de combinaciones.','Explora reinos submarinos en este rompecabezas de combinaciones excepcional.','false',false,false,'Hidden Wonders Of The Depths');ag(115329757,'Jewelleria','/images/games/jewelleria/jewelleria81x46.gif',110012530,115362320,'','false','/images/games/jewelleria/jewelleria16x16.gif',false,11323,'/images/games/jewelleria/jewelleria100x75.jpg','/images/games/jewelleria/jewelleria179x135.jpg','/images/games/jewelleria/jewelleria320x240.jpg','false','/images/games/thumbnails_med_2/jewelleria130x75.gif','/exe/jewelleria-setup.exe?lc=es&ext=jewelleria-setup.exe','Inicia un imperio de joyerías.','Convierte una pequeña joyería en un mega centro joyero.','false',false,false,'Jewelleria');ag(115334267,'Fashionista','/images/games/fashionista/fashionista81x46.gif',110012530,115367597,'','false','/images/games/fashionista/fashionista16x16.gif',false,11323,'/images/games/fashionista/fashionista100x75.jpg','/images/games/fashionista/fashionista179x135.jpg','/images/games/fashionista/fashionista320x240.jpg','false','/images/games/thumbnails_med_2/fashionista130x75.gif','/exe/fashionista-setup.exe?lc=es&ext=fashionista-setup.exe','Publica tu propia revista de modas.','Influencia el mundo de la moda como editor de una elegante revista.','false',false,false,'Fashionista');ag(115335723,'Jewel Match 2','/images/games/jewel_match_2/jewel_match_281x46.gif',1007,115368130,'','false','/images/games/jewel_match_2/jewel_match_216x16.gif',false,11323,'/images/games/jewel_match_2/jewel_match_2100x75.jpg','/images/games/jewel_match_2/jewel_match_2179x135.jpg','/images/games/jewel_match_2/jewel_match_2320x240.jpg','false','/images/games/thumbnails_med_2/jewel_match_2130x75.gif','/exe/jewel_match_2-setup.exe?lc=es&ext=jewel_match_2-setup.exe','Construye un reino mágico de joyas.','Construye majestuosos castillos con paisajes realistas en esta maravillosa tierra de combinaciones.','false',false,false,'Jewel Match 2');ag(115336143,'Mysteries of Horus','/images/games/mysteries_of_horus/mysteries_of_horus81x46.gif',110097120,11536933,'a495d57a-9285-4d7a-a49a-b008921733a2','false','/images/games/mysteries_of_horus/mysteries_of_horus16x16.gif',false,11323,'/images/games/mysteries_of_horus/mysteries_of_horus100x75.jpg','/images/games/mysteries_of_horus/mysteries_of_horus179x135.jpg','/images/games/mysteries_of_horus/mysteries_of_horus320x240.jpg','false','/images/games/thumbnails_med_2/mysteries_of_horus130x75.gif','','Aplaca a los dioses egipcios con ofrendas.','Aplaca a los dioses egipcios con ofrendas en este absorbente rompecabezas.','true',false,false,'Mysteries of Horus OL');ag(115348373,'Beach Party Craze','/images/games/beach_party_craze/beach_party_craze81x46.gif',110012530,11538193,'','false','/images/games/beach_party_craze/beach_party_craze16x16.gif',false,11323,'/images/games/beach_party_craze/beach_party_craze100x75.jpg','/images/games/beach_party_craze/beach_party_craze179x135.jpg','/images/games/beach_party_craze/beach_party_craze320x240.jpg','true','/images/games/thumbnails_med_2/beach_party_craze130x75.gif','/exe/Beach_Party_Craze-setup.exe?lc=es&ext=Beach_Party_Craze-setup.exe','¡Gestiona un elegante centro turístico de playa!','¡Atiende a bronceados clientes en un elegante centro turístico de playa!','false',false,false,'Beach Party Craze');ag(115353417,'Diner Dash Seasonal Snack Pack','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack81x46.gif',110012530,115387637,'','false','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack16x16.gif',false,11323,'/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack100x75.jpg','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack179x135.jpg','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_seasonal_snack_pack130x75.gif','/exe/Diner_Dash_Seasonal_Snack_Pack-setup.exe?lc=es&ext=Diner_Dash_Seasonal_Snack_Pack-setup.exe','¡Disfruta de los cinco primeros episodios!','¡Disfruta de los cinco primeros episodios y cinco nuevos restaurantes!','false',false,false,'Diner Dash Seasonal Snack Pack');ag(115364873,'Governor of Poker','/images/games/governor_of_poker/governor_of_poker81x46.gif',1004,11539813,'','false','/images/games/governor_of_poker/governor_of_poker16x16.gif',false,11323,'/images/games/governor_of_poker/governor_of_poker100x75.jpg','/images/games/governor_of_poker/governor_of_poker179x135.jpg','/images/games/governor_of_poker/governor_of_poker320x240.jpg','false','/images/games/thumbnails_med_2/governor_of_poker130x75.gif','/exe/governor_of_poker-setup.exe?lc=es&ext=governor_of_poker-setup.exe','¡Gana montañas de dinero y propiedades!','Compra casas y coches de lujo con tus ganancias del torneo de póquer.','false',false,false,'Governor of Poker');ag(115365613,'Treasure Masters Inc','/images/games/treasure_masters/treasure_masters81x46.gif',1007,115399507,'','false','/images/games/treasure_masters/treasure_masters16x16.gif',false,11323,'/images/games/treasure_masters/treasure_masters100x75.jpg','/images/games/treasure_masters/treasure_masters179x135.jpg','/images/games/treasure_masters/treasure_masters320x240.jpg','true','/images/games/thumbnails_med_2/treasure_masters130x75.gif','/exe/treasure_masters_inc-setup.exe?lc=es&ext=treasure_masters_inc-setup.exe','Explora las entrañas de un barco perdido.','Descubre un artefacto sorprendente en las entrañas de un barco perdido.','false',false,false,'Treasure Masters Inc');ag(115366200,'Carnival Mania','/images/games/carnival_mania/carnival_mania81x46.gif',110012530,11540073,'','false','/images/games/carnival_mania/carnival_mania16x16.gif',false,11323,'/images/games/carnival_mania/carnival_mania100x75.jpg','/images/games/carnival_mania/carnival_mania179x135.jpg','/images/games/carnival_mania/carnival_mania320x240.jpg','false','/images/games/thumbnails_med_2/carnival_mania130x75.gif','/exe/carnival_mania-setup.exe?lc=es&ext=carnival_mania-setup.exe','Restaura un parque de atracciones decadente.','Restaura un parque de atracciones antiguo y decadente y devuélvele la gloria del pasado.','false',false,false,'Carnival Mania');ag(115369807,'Sunshine Acres','/images/games/sunshine_acres/sunshine_acres81x46.gif',110012530,115403700,'','false','/images/games/sunshine_acres/sunshine_acres16x16.gif',false,11323,'/images/games/sunshine_acres/sunshine_acres100x75.jpg','/images/games/sunshine_acres/sunshine_acres179x135.jpg','/images/games/sunshine_acres/sunshine_acres320x240.jpg','true','/images/games/thumbnails_med_2/sunshine_acres130x75.gif','/exe/sunshine_acres-setup.exe?lc=es&ext=sunshine_acres-setup.exe','¡Gánate la vida con los terrenos!','Convierte una parcela pequeña de terreno en tierras de cultivo de crecimiento rápido.','false',false,false,'Sunshine Acres');ag(115370650,'World Mosaics','/images/games/world_mosaics/world_mosaics81x46.gif',1007,11540487,'','false','/images/games/world_mosaics/world_mosaics16x16.gif',false,11323,'/images/games/world_mosaics/world_mosaics100x75.jpg','/images/games/world_mosaics/world_mosaics179x135.jpg','/images/games/world_mosaics/world_mosaics320x240.jpg','false','/images/games/thumbnails_med_2/world_mosaics130x75.gif','/exe/world_mosaics-setup.exe?lc=es&ext=world_mosaics-setup.exe','¡Resuelve los rompecabezas pictográficos del pasado!','Resuelve los rompecabezas pictográficos para desenmarañar los misterios de una sociedad perdida.','false',false,false,'World Mosaics');ag(115403847,'The Great Chocolate Chase','/images/games/the_great_chocolate_chase/the_great_chocolate_chase81x46.gif',110083820,115438237,'20b74307-ea63-4bf9-832d-3ebd567414d2','false','/images/games/the_great_chocolate_chase/the_great_chocolate_chase16x16.gif',false,11323,'/images/games/the_great_chocolate_chase/the_great_chocolate_chase100x75.jpg','/images/games/the_great_chocolate_chase/the_great_chocolate_chase179x135.jpg','/images/games/the_great_chocolate_chase/the_great_chocolate_chase320x240.jpg','false','/images/games/thumbnails_med_2/the_great_chocolate_chase130x75.gif','','¡Administra tiendas internacionales de chocolate exótico!','¡Haz dulces de chocolate para clientes internacionales a principios de la década de 1900!','true',false,false,'The Great Chocolate Chase OL');ag(115415417,'Magic Encyclopedia First Story','/images/games/magic_encyclopedia/magic_encyclopedia81x46.gif',110012530,115450200,'','false','/images/games/magic_encyclopedia/magic_encyclopedia16x16.gif',false,11323,'/images/games/magic_encyclopedia/magic_encyclopedia100x75.jpg','/images/games/magic_encyclopedia/magic_encyclopedia179x135.jpg','/images/games/magic_encyclopedia/magic_encyclopedia320x240.jpg','true','/images/games/thumbnails_med_2/magic_encyclopedia130x75.gif','/exe/magic_encyclopedia_first_story-setup.exe?lc=es&ext=magic_encyclopedia_first_story-setup.exe','¡Encuentra objetos en un viaje fascinante!','¡Encuentra objetos ocultos en un viaje fascinante y maravilloso!','false',false,false,'Magic Encyclopedia First Story');ag(115416667,'Zenerchi','/images/games/zenerchi/zenerchi81x46.gif',1007,115451480,'','false','/images/games/zenerchi/zenerchi16x16.gif',false,11323,'/images/games/zenerchi/zenerchi100x75.jpg','/images/games/zenerchi/zenerchi179x135.jpg','/images/games/zenerchi/zenerchi320x240.jpg','false','/images/games/thumbnails_med_2/zenerchi130x75.gif','/exe/zenerchi-setup.exe?lc=es&ext=zenerchi-setup.exe','¡Un desafiante juego de combinaciones de meditación!','¡Revitaliza tu chakra con este desafiante juego de combinaciones de meditación!','false',false,false,'Zenerchi');ag(115420647,'4 Elements','/images/games/4_elements/4_elements81x46.gif',1000,115455520,'','false','/images/games/4_elements/4_elements16x16.gif',false,11323,'/images/games/4_elements/4_elements100x75.jpg','/images/games/4_elements/4_elements179x135.jpg','/images/games/4_elements/4_elements320x240.jpg','true','/images/games/thumbnails_med_2/4_elements130x75.gif','/exe/4_elements-setup.exe?lc=es&ext=4_elements-setup.exe','¡Descubre cuatro antiguos libros de magia!','¡Descubre cuatro antiguos libros para restablecer la paz en el reino!','false',false,false,'4 Elements');ag(115421903,'Sherlock Holmes Mystery of the Persian Carpet','/images/games/sherlock_holmes/sherlock_holmes81x46.gif',1007,115456360,'','false','/images/games/sherlock_holmes/sherlock_holmes16x16.gif',false,11323,'/images/games/sherlock_holmes/sherlock_holmes100x75.jpg','/images/games/sherlock_holmes/sherlock_holmes179x135.jpg','/images/games/sherlock_holmes/sherlock_holmes320x240.jpg','true','/images/games/thumbnails_med_2/sherlock_holmes130x75.gif','/exe/sherlock_holmes_persian_carpet-setup.exe?lc=es&ext=sherlock_holmes_persian_carpet-setup.exe','¡Investiga un asesinato en el Londres de la época victoriana!','¡Ayuda a Sherlock Holmes a resolver un asesinato en el Londres de la época victoriana!','false',false,false,'Sherlock Holmes Mystery of Per');ag(115429217,'Alex Trax','/images/games/alex_trax/alex_trax81x46.gif',110081853,115464547,'1e9a3e15-b913-46a5-b4a5-e0d0aa0f8ab6','false','/images/games/alex_trax/alex_trax16x16.gif',false,11323,'/images/games/alex_trax/alex_trax100x75.jpg','/images/games/alex_trax/alex_trax179x135.jpg','/images/games/alex_trax/alex_trax320x240.jpg','false','/images/games/thumbnails_med_2/alex_trax130x75.gif','','Alex Trax es un bonito juego de aventuras en bicicleta por unas montañas mortales desconocidas.','Alex Trax es un bonito juego de aventuras en bicicleta por unas montañas mortales desconocidas.','true',true,true,'Alex Trax OLT1');ag(115437737,'Mystery Stories: Island Of Hope','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope81x46.gif',1007,115472453,'','false','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope16x16.gif',false,11323,'/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope100x75.jpg','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope179x135.jpg','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope320x240.jpg','true','/images/games/thumbnails_med_2/mystery_stories_island_of_hope130x75.gif','/exe/mystery_stories_island_of_hope-setup.exe?lc=es&ext=mystery_stories_island_of_hope-setup.exe','¡Rompe una antigua maldición caribeña!','¡Rompe una antigua maldición caribeña en esta aventura de objetos escondidos!','false',false,false,'Mystery Stories Island Of Hope');ag(115438320,'Cinema Tycoon 2: Movie','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania81x46.gif',110012530,115473570,'','false','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania16x16.gif',false,11323,'/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania100x75.jpg','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania179x135.jpg','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania320x240.jpg','false','/images/games/thumbnails_med_2/cinema_tycoon_2_movie_mania130x75.gif','/exe/Cinema_Tycoon_2-setup.exe?lc=es&ext=Cinema_Tycoon_2-setup.exe','¡Crea un negocio de cine que dé beneficios!','¡Elige éxitos de taquilla como propietario de una cadena de cines!','false',false,false,'Cinema Tycoon 2');ag(115440173,'Poker For Dummies®','/images/games/poker_dummies/poker_dummies81x46.gif',1004,115475877,'','false','/images/games/poker_dummies/poker_dummies16x16.gif',false,11323,'/images/games/poker_dummies/poker_dummies100x75.jpg','/images/games/poker_dummies/poker_dummies179x135.jpg','/images/games/poker_dummies/poker_dummies320x240.jpg','false','/images/games/thumbnails_med_2/poker_dummies130x75.gif','/exe/Poker_For_Dummies_REGULAR-setup.exe?lc=es&ext=Poker_For_Dummies_REGULAR-setup.exe','¡Póquer para torpes!','Poker For Dummies® es tu as en la manga.','false',false,false,'Poker For Dummies (Regular)');ag(115441253,'Tri-Peaks 2 Quest for the Ruby Ring','/images/games/tri_peaks_2/tri_peaks_281x46.gif',1004,11547680,'','false','/images/games/tri_peaks_2/tri_peaks_216x16.gif',false,11323,'/images/games/tri_peaks_2/tri_peaks_2100x75.jpg','/images/games/tri_peaks_2/tri_peaks_2179x135.jpg','/images/games/tri_peaks_2/tri_peaks_2320x240.jpg','false','/images/games/thumbnails_med_2/tri_peaks_2130x75.gif','/exe/Tri_Peaks_Solitaire_2_Regular-setup.exe?lc=es&ext=Tri_Peaks_Solitaire_2_Regular-setup.exe','¡Aventura! ¡Peligro! ¡Solitario!','Tri-Peaks 2: solitario rápido con tesoros.','false',false,false,'Tri Peaks 2 (Regular');ag(115443300,'Cooking Dash','/images/games/cooking_dash/cooking_dash81x46.gif',110012530,11547820,'','false','/images/games/cooking_dash/cooking_dash16x16.gif',false,11323,'/images/games/cooking_dash/cooking_dash100x75.jpg','/images/games/cooking_dash/cooking_dash179x135.jpg','/images/games/cooking_dash/cooking_dash320x240.jpg','false','/images/games/thumbnails_med_2/cooking_dash130x75.gif','/exe/cooking_dash-setup.exe?lc=es&ext=cooking_dash-setup.exe','¡Acompaña a Flo en el programa de cocina!','¡Acompaña a Flo cuando invite estrellas a un programa de cocina!','false',false,false,'Cooking Dash');ag(115450600,'Slingo Supreme','/images/games/slingo_supreme/slingo_supreme81x46.gif',1004,115485413,'','false','/images/games/slingo_supreme/slingo_supreme16x16.gif',false,11323,'/images/games/slingo_supreme/slingo_supreme100x75.jpg','/images/games/slingo_supreme/slingo_supreme179x135.jpg','/images/games/slingo_supreme/slingo_supreme320x240.jpg','false','/images/games/thumbnails_med_2/slingo_supreme130x75.gif','/exe/slingo_supreme-setup.exe?lc=es&ext=slingo_supreme-setup.exe','¡Crea 16.000 juegos de Slingo diferentes!','¡Descubre nuevos potenciadores para crear 16.000 juegos de Slingo diferentes!','false',false,false,'Slingo Supreme');ag(115453917,'Turbo Spirit','/images/games/turbo_spirit/turbo_spirit81x46.gif',110081853,115488713,'6db86483-67b7-4a02-8536-2cc934c98733','false','/images/games/turbo_spirit/turbo_spirit16x16.gif',false,11323,'/images/games/turbo_spirit/turbo_spirit100x75.jpg','/images/games/turbo_spirit/turbo_spirit179x135.jpg','/images/games/turbo_spirit/turbo_spirit320x240.jpg','false','/images/games/thumbnails_med_2/turbo_spirit130x75.gif','','Turbo Spirit es un juego de carreras de bici sorprendente.','Turbo Spirit es un juego de carreras de bici sorprendente.','true',true,true,'Turbo Spirit OLT1');ag(115455627,'Cake Mania 3','/images/games/cake_mania_3/cake_mania_381x46.gif',1000,115490283,'','false','/images/games/cake_mania_3/cake_mania_316x16.gif',false,11323,'/images/games/cake_mania_3/cake_mania_3100x75.jpg','/images/games/cake_mania_3/cake_mania_3179x135.jpg','/images/games/cake_mania_3/cake_mania_3320x240.jpg','true','/images/games/thumbnails_med_2/cake_mania_3130x75.gif','/exe/cake_mania_3-setup.exe?lc=es&ext=cake_mania_3-setup.exe','¡Ayuda a Jill a volver de un viaje por el tiempo!','Ayuda a Jill a volver del viaje al pasado antes de que empiece su boda.','false',false,false,'Cake Mania 3');ag(115456843,'Hidden Jewel Adventure','/images/games/hidden_jewel/hidden_jewel81x46.gif',110012530,115491720,'','false','/images/games/hidden_jewel/hidden_jewel16x16.gif',false,11323,'/images/games/hidden_jewel/hidden_jewel100x75.jpg','/images/games/hidden_jewel/hidden_jewel179x135.jpg','/images/games/hidden_jewel/hidden_jewel320x240.jpg','false','/images/games/thumbnails_med_2/hidden_jewel130x75.gif','/exe/hidden_jewel_adventure-setup.exe?lc=es&ext=hidden_jewel_adventure-setup.exe','¡Encuentra las poderosas joyas ocultas!','Un fascinante juego que mezcla las combinaciones de 3 y los objetos ocultos.','false',false,false,'Hidden Jewel Adventure');ag(115461283,'Fashion Dash','/images/games/fashion_dash/fashion_dash81x46.gif',110083820,11549650,'6e4165d3-11e5-422c-a857-7d016cc24de0','false','/images/games/fashion_dash/fashion_dash16x16.gif',false,11323,'/images/games/fashion_dash/fashion_dash100x75.jpg','/images/games/fashion_dash/fashion_dash179x135.jpg','/images/games/fashion_dash/fashion_dash320x240.jpg','false','/images/games/thumbnails_med_2/fashion_dash130x75.gif','','¡Viste a los clientes con ropa a medida!','¡Viste a los clientes que quieren pagar muchísimo dinero por su ropa a medida!','true',false,false,'Fashion Dash OL');ag(115462930,'Way To Go! Bowling','/images/games/way_to_go_bowling/way_to_go_bowling81x46.gif',110011217,115497757,'','false','/images/games/way_to_go_bowling/way_to_go_bowling16x16.gif',false,11323,'/images/games/way_to_go_bowling/way_to_go_bowling100x75.jpg','/images/games/way_to_go_bowling/way_to_go_bowling179x135.jpg','/images/games/way_to_go_bowling/way_to_go_bowling320x240.jpg','false','/images/games/thumbnails_med_2/way_to_go_bowling130x75.gif','/exe/way_to_go_bowling-setup.exe?lc=es&ext=way_to_go_bowling-setup.exe','Bolos en 3D muy realistas.','Haz tu marca en las calles nuevas en 3D.','false',false,false,'Way To Go Bowling Regular');ag(115469933,'Scrapbook Paige','/images/games/scrapbook_paige/scrapbook_paige81x46.gif',1007,115504700,'','false','/images/games/scrapbook_paige/scrapbook_paige16x16.gif',false,11323,'/images/games/scrapbook_paige/scrapbook_paige100x75.jpg','/images/games/scrapbook_paige/scrapbook_paige179x135.jpg','/images/games/scrapbook_paige/scrapbook_paige320x240.jpg','true','/images/games/thumbnails_med_2/scrapbook_paige130x75.gif','/exe/scrapbook_paige-setup.exe?lc=es&ext=scrapbook_paige-setup.exe','Diseña páginas de álbumes de recortes para los clientes.','Encuentra elementos que darán a tus álbumes de recortes ese toque superpersonal.','false',false,false,'Scrapbook Paige');ag(115473733,'Patchworkz!','/images/games/patchworkz/patchworkz81x46.gif',110097120,115508293,'696085ac-dfbd-4da5-92c6-ad72173e79c8','false','/images/games/patchworkz/patchworkz16x16.gif',false,11323,'/images/games/patchworkz/patchworkz100x75.jpg','/images/games/patchworkz/patchworkz179x135.jpg','/images/games/patchworkz/patchworkz320x240.jpg','false','/images/games/thumbnails_med_2/patchworkz130x75.gif','','¡Descubre el nuevo Patchworkz divertido y gratuito!','¡Descubre el nuevo Patchworkz divertido y gratuito! ¡Haz tu propio patchwork con 250 parches de distintos tipos, formas y colores!','true',false,false,'Patchworkz OL');ag(115485823,'Enigma 7','/images/games/enigma_7/enigma_781x46.gif',1007,115520713,'','false','/images/games/enigma_7/enigma_716x16.gif',false,11323,'/images/games/enigma_7/enigma_7100x75.jpg','/images/games/enigma_7/enigma_7179x135.jpg','/images/games/enigma_7/enigma_7320x240.jpg','true','/images/games/thumbnails_med_2/enigma_7130x75.gif','/exe/enigma_7-setup.exe?lc=es&ext=enigma_7-setup.exe','Cambia y desliza hasta crear combinaciones llenas de magia y misterio.','Atraviesa un portal antiguo para cambiar y deslizar hasta crear combinaciones llenas de magia y misterio.','false',false,false,'Enigma 7');ag(115517947,'Anne’s Dream World','/images/games/annes_dream_world/annes_dream_world81x46.gif',1007,115552120,'','false','/images/games/annes_dream_world/annes_dream_world16x16.gif',false,11323,'/images/games/annes_dream_world/annes_dream_world100x75.jpg','/images/games/annes_dream_world/annes_dream_world179x135.jpg','/images/games/annes_dream_world/annes_dream_world320x240.jpg','false','/images/games/thumbnails_med_2/annes_dream_world130x75.gif','/exe/annes_dream_world-setup.exe?lc=es&ext=annes_dream_world-setup.exe','¡Lucha contra gominolas en el sueño de Ana!','¡Entra al sueño de Ana para ayudarla a salvar a su ciudad de gominolas!','false',false,false,'Annes Dream World');ag(115528390,'Peggle Nights','/images/games/peggle_nights/peggle_nights81x46.gif',110119360,115563203,'','false','/images/games/peggle_nights/peggle_nights16x16.gif',false,11323,'/images/games/peggle_nights/peggle_nights100x75.jpg','/images/games/peggle_nights/peggle_nights179x135.jpg','/images/games/peggle_nights/peggle_nights320x240.jpg','true','/images/games/thumbnails_med_2/peggle_nights130x75.gif','/exe/peggle_nights-setup.exe?lc=es&ext=peggle_nights-setup.exe','¡Apunta, dispara y elimina las pinzas!','¡Apunta, dispara y elimina 25 pinzas de color naranja con 10 bolitas de metal!','false',false,false,'Peggle Nights');ag(115529330,'Pathways 2','/images/games/pathways_2/pathways_281x46.gif',110081853,115564157,'77f0b73d-6cba-4675-936a-4b36950c8e9c','false','/images/games/pathways_2/pathways_216x16.gif',false,11323,'/images/games/pathways_2/pathways_2100x75.jpg','/images/games/pathways_2/pathways_2179x135.jpg','/images/games/pathways_2/pathways_2320x240.jpg','false','/images/games/thumbnails_med_2/pathways_2130x75.gif','','Encuentra el camino utilizando matemáticas básicas.','Intenta encontrar el camino correcto hacia el final del juego utilizando la regla matemática dada.','true',true,true,'PathwaysÂ 2 OLT1');ag(115534280,'Season Match 2','/images/games/season_match_2/season_match_281x46.gif',1000,115569153,'','false','/images/games/season_match_2/season_match_216x16.gif',false,11323,'/images/games/season_match_2/season_match_2100x75.jpg','/images/games/season_match_2/season_match_2179x135.jpg','/images/games/season_match_2/season_match_2320x240.jpg','false','/images/games/thumbnails_med_2/season_match_2130x75.gif','/exe/season_match_2-setup.exe?lc=es&ext=season_match_2-setup.exe','¡Salva el reino del azote de la escarcha!','¡Salva el reino del azote de la escarcha en este juego de combinaciones!','false',false,false,'Season Match 2');ag(115535857,'Cooking Dash','/images/games/cooking_dash/cooking_dash81x46.gif',110097120,115570747,'cabe70c9-97d6-4495-9c6a-b69e9cbb2bb2','false','/images/games/cooking_dash/cooking_dash16x16.gif',false,11323,'/images/games/cooking_dash/cooking_dash100x75.jpg','/images/games/cooking_dash/cooking_dash179x135.jpg','/images/games/cooking_dash/cooking_dash320x240.jpg','false','/images/games/thumbnails_med_2/cooking_dash130x75.gif','','¡Acompaña a Flo en el programa de cocina!','¡Acompaña a Flo cuando invite estrellas a un programa de cocina!','true',false,false,'Cooking Dash OL');ag(115538280,'Matchblox 2: Abram’s Quest','/images/games/matchblox_2/matchblox_281x46.gif',1007,11557313,'','false','/images/games/matchblox_2/matchblox_216x16.gif',false,11323,'/images/games/matchblox_2/matchblox_2100x75.jpg','/images/games/matchblox_2/matchblox_2179x135.jpg','/images/games/matchblox_2/matchblox_2320x240.jpg','false','/images/games/thumbnails_med_2/matchblox_2130x75.gif','/exe/matchblox_2_abrams_quest-setup.exe?lc=es&ext=matchblox_2_abrams_quest-setup.exe','¡Empareja los bloques y descubre secretos!','Empareja los bloques de colores, resuelve los rompecabezas y descubre los secretos del Capitán Abram.','false',false,false,'Matchblox 2 Abrams Quest');ag(115561607,'Anna’s Ice Cream','/images/games/annas_ice_cream/annas_ice_cream81x46.gif',110127790,115596433,'','false','/images/games/annas_ice_cream/annas_ice_cream16x16.gif',false,11323,'/images/games/annas_ice_cream/annas_ice_cream100x75.jpg','/images/games/annas_ice_cream/annas_ice_cream179x135.jpg','/images/games/annas_ice_cream/annas_ice_cream320x240.jpg','false','/images/games/thumbnails_med_2/annas_ice_cream130x75.gif','/exe/annas_ice_cream-setup.exe?lc=es&ext=annas_ice_cream-setup.exe','Dirige una heladería muy acelerada.','Haz deliciosos brebajes de helado y sírvelos a clientes exigentes.','false',false,false,'Annas Ice Cream');ag(115566607,'Jewel Quest Mysteries','/images/games/jewel_quest_mysteries/jewel_quest_mysteries81x46.gif',110012530,115601467,'','false','/images/games/jewel_quest_mysteries/jewel_quest_mysteries16x16.gif',false,11323,'/images/games/jewel_quest_mysteries/jewel_quest_mysteries100x75.jpg','/images/games/jewel_quest_mysteries/jewel_quest_mysteries179x135.jpg','/images/games/jewel_quest_mysteries/jewel_quest_mysteries320x240.jpg','true','/images/games/thumbnails_med_2/jewel_quest_mysteries130x75.gif','/exe/jewel_quest_mysteries-setup.exe?lc=es&ext=jewel_quest_mysteries-setup.exe','Decodifica antiguos misterios egipcios.','Desentierra joyas y objetos escondidos mientras decodificas antiguos misterios egipcios.','false',false,false,'Jewel Quest Mysteries');ag(115572357,'Fishco','/images/games/fishco/fishco81x46.gif',110012530,11560713,'','false','/images/games/fishco/fishco16x16.gif',false,11323,'/images/games/fishco/fishco100x75.jpg','/images/games/fishco/fishco179x135.jpg','/images/games/fishco/fishco320x240.jpg','false','/images/games/thumbnails_med_2/fishco130x75.gif','/exe/fischo-setup.exe?lc=es&ext=fischo-setup.exe','¡Reproduce, cría y vende peces!','¡Reproduce, cría y vende peces de agua dulce en tu tienda de acuarios!','false',false,false,'Fishco');ag(115576463,'Grave Shift','/images/games/graveshift/graveshift81x46.gif',110081853,115611323,'5f242a27-fcfa-4cec-9e78-82eea8f8376f','false','/images/games/graveshift/graveshift16x16.gif',false,11323,'/images/games/graveshift/graveshift100x75.jpg','/images/games/graveshift/graveshift179x135.jpg','/images/games/graveshift/graveshift320x240.jpg','false','/images/games/thumbnails_med_2/graveshift130x75.gif','','Aventura de rompecabezas con giro inesperado Sokoban.','Ayuda a Arimose a través de esta aventura de rompecabezas con giro inesperado Sokoban','true',true,true,'Graveshift OLT1');ag(115586140,'Baseball','/images/games/baseball/baseball81x46.gif',110097120,115621970,'e83a1f54-a993-413f-9da1-08d9f6ac4bad','false','/images/games/baseball/baseball16x16.gif',false,11323,'/images/games/baseball/baseball100x75.jpg','/images/games/baseball/baseball179x135.jpg','/images/games/baseball/baseball320x240.jpg','false','/images/games/thumbnails_med_2/baseball130x75.gif','','¡Juega al béisbol aquí! ¡Al bate!','¡Juega al béisbol! Juega con Arcade o con el modo “segunda mitad de la novena entrada”. ¡Al bate!','true',false,false,'Baseball OL');ag(115587213,'Alice Greenfingers 2','/images/games/alice_greenfingers2/alice_greenfingers281x46.gif',110127790,115622760,'','false','/images/games/alice_greenfingers2/alice_greenfingers216x16.gif',false,11323,'/images/games/alice_greenfingers2/alice_greenfingers2100x75.jpg','/images/games/alice_greenfingers2/alice_greenfingers2179x135.jpg','/images/games/alice_greenfingers2/alice_greenfingers2320x240.jpg','false','/images/games/thumbnails_med_2/alice_greenfingers2130x75.gif','/exe/alice_greenfingers_2-setup.exe?lc=es&ext=alice_greenfingers_2-setup.exe','¡Revitaliza una antigua granja abandonada!','Revitaliza la granja abandonada del tío Berry en este desafiante juego de simulación.','false',false,false,'Alice Greenfingers 2');ag(115590363,'Treasures of Mystery Island','/images/games/treasures_of_mystery_island/treasures_of_mystery_island81x46.gif',1000,115625257,'','false','/images/games/treasures_of_mystery_island/treasures_of_mystery_island16x16.gif',false,11323,'/images/games/treasures_of_mystery_island/treasures_of_mystery_island100x75.jpg','/images/games/treasures_of_mystery_island/treasures_of_mystery_island179x135.jpg','/images/games/treasures_of_mystery_island/treasures_of_mystery_island320x240.jpg','true','/images/games/thumbnails_med_2/treasures_of_mystery_island130x75.gif','/exe/treasures_of_mystery_island-setup.exe?lc=es&ext=treasures_of_mystery_island-setup.exe','¡Escápate de una isla desierta!','¡Encuentra y reúne objetos ocultos para escapar de la isla perdida!','false',false,false,'Treasures of Mystery Island');ag(115600480,'Bejeweled Twist','/images/games/bejeweled_twist/bejeweled_twist81x46.gif',1007,115635853,'','false','/images/games/bejeweled_twist/bejeweled_twist16x16.gif',false,11323,'/images/games/bejeweled_twist/bejeweled_twist100x75.jpg','/images/games/bejeweled_twist/bejeweled_twist179x135.jpg','/images/games/bejeweled_twist/bejeweled_twist320x240.jpg','true','/images/games/thumbnails_med_2/bejeweled_twist130x75.gif','/exe/bejeweled_twist-setup.exe?lc=es&ext=bejeweled_twist-setup.exe','¡Gira, encaja y explota!','¡Gira gemas de alto voltaje para hacer grupos compatibles y formar combinaciones electrizantes!','false',false,false,'Bejeweled Twist');ag(115603380,'MouseMaze','/images/games/mousemaze/mousemaze81x46.gif',110081853,115638863,'da8c7dd8-186c-459e-9a55-346085648368','false','/images/games/mousemaze/mousemaze16x16.gif',false,11323,'/images/games/mousemaze/mousemaze100x75.jpg','/images/games/mousemaze/mousemaze179x135.jpg','/images/games/mousemaze/mousemaze320x240.jpg','false','/images/games/thumbnails_med_2/mousemaze130x75.gif','','¡MouseMaze es un juego creativo de fantasía mecánica!','¡MouseMaze es un juego creativo de fantasía mecánica!','true',true,true,'Mousemaze OLT1');ag(115604730,'Operation Big Bang','/images/games/operation_big_bang/operation_big_bang81x46.gif',110081853,115639527,'eaefac53-a534-4035-9c87-fdf8b31dda2f','false','/images/games/operation_big_bang/operation_big_bang16x16.gif',false,11323,'/images/games/operation_big_bang/operation_big_bang100x75.jpg','/images/games/operation_big_bang/operation_big_bang179x135.jpg','/images/games/operation_big_bang/operation_big_bang320x240.jpg','false','/images/games/thumbnails_med_2/operation_big_bang130x75.gif','','Operation Big Bang es un juego táctico que consiste en crear el camino correcto para que ”Átomo” llegue al otro lado.','Operation Big Bang es un juego táctico que consiste en crear el camino correcto para que ”Átomo” llegue al otro lado.','true',true,true,'Operation Big Bang OLT1');ag(115607753,'Diner Dash: Flo Through Time','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time81x46.gif',110012530,115642300,'','false','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time16x16.gif',false,11323,'/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time100x75.jpg','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time179x135.jpg','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_flo_through_time130x75.gif','/exe/diner_dash_flo_through_time-setup.exe?lc=es&ext=diner_dash_flo_through_time-setup.exe','¡Visita cenas del pasado eón!','Un microondas defectuoso manda a Flo y a su pandilla al pasado.','false',false,false,'Diner Dash Flo Through Time');ag(115649517,'Cake Shop','/images/games/cake_shop/cake_shop81x46.gif',1000,115684110,'','false','/images/games/cake_shop/cake_shop16x16.gif',false,11323,'/images/games/cake_shop/cake_shop100x75.jpg','/images/games/cake_shop/cake_shop179x135.jpg','/images/games/cake_shop/cake_shop320x240.jpg','false','/images/games/thumbnails_med_2/cake_shop130x75.gif','/exe/cake_shop-setup.exe?lc=es&ext=cake_shop-setup.exe','¡Gestiona una trepidante cafetería!','¡Sirve rápidamente pastel, café y helado a tus impacientes clientes!','false',false,false,'Cake Shop');ag(115657437,'Diamond Fever','/images/games/diamond_fever/diamond_fever81x46.gif',110083820,11569260,'233fe2bc-8fc6-40cd-8f4c-179fa8e204da','false','/images/games/diamond_fever/diamond_fever16x16.gif',false,11323,'/images/games/diamond_fever/diamond_fever100x75.jpg','/images/games/diamond_fever/diamond_fever179x135.jpg','/images/games/diamond_fever/diamond_fever320x240.jpg','false','/images/games/thumbnails_med_2/diamond_fever130x75.gif','','¡¡¡Consigue los diamantes rápidamente!!!','En Diamond Fever tendrás que recoger diamantes. Tienes un límite de tiempo para conseguir tantos diamantes como puedas antes de que explotes.','true',false,false,'Diamond Fever OL');ag(115660753,'Airport Mania: First Flight','/images/games/airport_mania_first_flight/airport_mania_first_flight81x46.gif',110097120,115695223,'5474af1a-1292-40cf-bd09-2e1dc0d9e70f','false','/images/games/airport_mania_first_flight/airport_mania_first_flight16x16.gif',false,11323,'/images/games/airport_mania_first_flight/airport_mania_first_flight100x75.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight179x135.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight320x240.jpg','false','/images/games/thumbnails_med_2/airport_mania_first_flight130x75.gif','','¡Gestiona un aeropuerto la mar de ajetreado!','En este juego, eres el director de un aeropuerto y debes dirigir el aterrizaje de los aviones y evitar retrasos.','true',false,false,'Airport Mania First Flight OL');ag(115670370,'Atlantis Quest','/images/games/Atlantis_Quest/Atlantis_Quest81x46.gif',110081853,115705243,'ec312c1a-02ec-46ab-92d5-00d13068cac3','false','/images/games/Atlantis_Quest/Atlantis_Quest16x16.gif',false,11323,'/images/games/Atlantis_Quest/Atlantis_Quest100x75.jpg','/images/games/Atlantis_Quest/Atlantis_Quest179x135.jpg','/images/games/Atlantis_Quest/Atlantis_Quest320x240.jpg','false','/images/games/thumbnails_med_2/Atlantis_Quest130x75.gif','/exe/Atlantis_Quest-setup.exe?lc=es&ext=Atlantis_Quest-setup.exe','Explora el Mediterráneo en busca de Atlantis.','Viaja por el Mediterráneo en busca de Atlantis, el continente perdido.','true',true,true,'Atlantis Quest OLT1');ag(115704307,'Call Of Atlantis','/images/games/call_of_atlantis/call_of_atlantis81x46.gif',1007,115739840,'','false','/images/games/call_of_atlantis/call_of_atlantis16x16.gif',false,11323,'/images/games/call_of_atlantis/call_of_atlantis100x75.jpg','/images/games/call_of_atlantis/call_of_atlantis179x135.jpg','/images/games/call_of_atlantis/call_of_atlantis320x240.jpg','true','/images/games/thumbnails_med_2/call_of_atlantis130x75.gif','/exe/call_of_atlantis-setup.exe?lc=es&ext=call_of_atlantis-setup.exe','¡Salva al legendario continente de la Atlántida!','¡Consigue los siete cristales del poder necesarios para salvar la Atlántida!','false',false,false,'Call Of Atlantis');ag(115707893,'Parking Dash','/images/games/parking_dash/parking_dash81x46.gif',110097120,115742740,'7281009f-54eb-4ed0-aac8-0914c72f00c7','false','/images/games/parking_dash/parking_dash16x16.gif',false,11323,'/images/games/parking_dash/parking_dash100x75.jpg','/images/games/parking_dash/parking_dash179x135.jpg','/images/games/parking_dash/parking_dash320x240.jpg','false','/images/games/thumbnails_med_2/parking_dash130x75.gif','','¡Aparca los coches en la parte de atrás del restaurante Flo’s!','¡Aparca los coches en la parte de atrás del restaurante Flo’s en el último juego de DASH!','true',false,false,'Parking Dash OL');ag(115708100,'7 Wonders - Treasures of Seven','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven81x46.gif',110083820,115743193,'0e76aeb7-5d18-43c7-866a-a2c2c745c96d','false','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven16x16.gif',false,11323,'/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven100x75.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven179x135.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders_treasures_of_seven130x75.gif','','¡Construye nueve estructuras históricas!','Une piezas para construir tu camino hacia la oculta Ciudad de los Dioses.','true',false,false,'7 Wonders - Treasures of Seven');ag(115723300,'Book of Legends','/images/games/book_of_legends/book_of_legends81x46.gif',1007,115758190,'','false','/images/games/book_of_legends/book_of_legends16x16.gif',false,11323,'/images/games/book_of_legends/book_of_legends100x75.jpg','/images/games/book_of_legends/book_of_legends179x135.jpg','/images/games/book_of_legends/book_of_legends320x240.jpg','true','/images/games/thumbnails_med_2/book_of_legends130x75.gif','/exe/book_of_legends-setup.exe?lc=es&ext=book_of_legends-setup.exe','¡Descubre misterios ocultos en un libro!','Descubre el misterio que se oculta en un libro largo tiempo olvidado.','false',false,false,'Book of Legends');ag(115725340,'My Tribe','/images/games/my_tribe/my_tribe81x46.gif',110012530,115760153,'','false','/images/games/my_tribe/my_tribe16x16.gif',false,11323,'/images/games/my_tribe/my_tribe100x75.jpg','/images/games/my_tribe/my_tribe179x135.jpg','/images/games/my_tribe/my_tribe320x240.jpg','false','/images/games/thumbnails_med_2/my_tribe130x75.gif','/exe/my_tribe-setup.exe?lc=es&ext=my_tribe-setup.exe','Ayuda a los supervivientes de un naufragio a construir sus nuevas vidas.','Ayuda a los supervivientes de un naufragio a aprender nuevas habilidades y construir sus nuevas vidas.','false',false,false,'My Tribe');ag(115730993,'Westward','/images/games/west/west81x46.gif',110097120,115765837,'6162a231-e91f-48e1-b989-0c081597bed3','false','/images/games/west/west16x16.gif',false,11323,'/images/games/west/west100x75.jpg','/images/games/west/west179x135.jpg','/images/games/west/west320x240.jpg','false','/images/games/thumbnails_med_2/west130x75.gif','','¡Domina las fronteras del Lejano Oeste!','¡Construye ciudades prósperas en el Oeste mientras descubres a estafadores y rufianes!','true',false,false,'Westward OL');ag(115733830,'Cake Mania 3','/images/games/cake_mania_3/cake_mania_381x46.gif',110097120,115768597,'460f3bff-6598-422d-848f-7c5889403fd3','false','/images/games/cake_mania_3/cake_mania_316x16.gif',false,11323,'/images/games/cake_mania_3/cake_mania_3100x75.jpg','/images/games/cake_mania_3/cake_mania_3179x135.jpg','/images/games/cake_mania_3/cake_mania_3320x240.jpg','false','/images/games/thumbnails_med_2/cake_mania_3130x75.gif','','¡Ayuda a Jill a volver de un viaje por el tiempo!','Ayuda a Jill a volver del viaje al pasado antes de que empiece su boda.','true',false,false,'Cake Mania 3 OL');ag(115734653,'Cake Mania 2','/images/games/cake_mania_2/cake_mania_281x46.gif',110097120,115769640,'e876414d-7f39-45c6-a9b1-2ce9b1af920b','false','/images/games/cake_mania_2/cake_mania_216x16.gif',false,11323,'/images/games/cake_mania_2/cake_mania_2100x75.jpg','/images/games/cake_mania_2/cake_mania_2179x135.jpg','/images/games/cake_mania_2/cake_mania_2320x240.jpg','true','/images/games/thumbnails_med_2/cake_mania_2130x75.gif','','Nuevas aventuras en la panadería.','Sirve deliciosos pasteles a clientes estrafalarios en la última aventura en la panadería de Jill.','true',false,false,'Cake Mania 2 OL');ag(115735150,'Build-a-lot 3','/images/games/build_a_lot_3/build_a_lot_381x46.gif',1000,115770900,'','false','/images/games/build_a_lot_3/build_a_lot_316x16.gif',false,11323,'/images/games/build_a_lot_3/build_a_lot_3100x75.jpg','/images/games/build_a_lot_3/build_a_lot_3179x135.jpg','/images/games/build_a_lot_3/build_a_lot_3320x240.jpg','true','/images/games/thumbnails_med_2/build_a_lot_3130x75.gif','/exe/build_a_lot_3-setup.exe?lc=es&ext=build_a_lot_3-setup.exe','Hazte con el control del mercado de la vivienda en Europa.','Restaura casas destrozadas y embellece barrios: y obtén grandes beneficios.','false',false,false,'Build a lot 3');ag(115764397,'Detective Stories: Hollywood','/images/games/detective_stories_hollywood/detective_stories_hollywood81x46.gif',1007,115799320,'','false','/images/games/detective_stories_hollywood/detective_stories_hollywood16x16.gif',false,11323,'/images/games/detective_stories_hollywood/detective_stories_hollywood100x75.jpg','/images/games/detective_stories_hollywood/detective_stories_hollywood179x135.jpg','/images/games/detective_stories_hollywood/detective_stories_hollywood320x240.jpg','true','/images/games/thumbnails_med_2/detective_stories_hollywood130x75.gif','/exe/detective_stories_hollywood-setup.exe?lc=es&ext=detective_stories_hollywood-setup.exe','¡Encuentra a una estrella de Hollywood desaparecida!','Encuentra a una estrella desaparecida y la única copia de su película.','false',false,false,'Detective Stories Hollywood');ag(115773753,'Color Cross','/images/games/color_cross/color_cross81x46.gif',1000,115808643,'','false','/images/games/color_cross/color_cross16x16.gif',false,11323,'/images/games/color_cross/color_cross100x75.jpg','/images/games/color_cross/color_cross179x135.jpg','/images/games/color_cross/color_cross320x240.jpg','false','/images/games/thumbnails_med_2/color_cross130x75.gif','/exe/color_cross-setup.exe?lc=es&ext=color_cross-setup.exe','¡Resuelve rompecabezas para descubrir imágenes!','¡Utiliza la lógica, los números y los colores para revelar una imagen impresionante!','false',false,false,'Color Cross');ag(115781567,'Farm Craft','/images/games/farm_craft/farm_craft81x46.gif',1003,115816460,'','false','/images/games/farm_craft/farm_craft16x16.gif',false,11323,'/images/games/farm_craft/farm_craft100x75.jpg','/images/games/farm_craft/farm_craft179x135.jpg','/images/games/farm_craft/farm_craft320x240.jpg','true','/images/games/thumbnails_med_2/farm_craft130x75.gif','/exe/farm_craft-setup.exe?lc=es&ext=farm_craft-setup.exe','¡Salva las granjas de la absorción empresarial!','¡Salva las granjas locales de la absorción por parte de un enorme conglomerado agrícola!','false',false,false,'Farm Craft');ag(116439183,'Heartwild Solitaire','/images/games/heartwild_solitaire/heartwild_solitaire81x46.gif',1004,116475950,'','false','/images/games/heartwild_solitaire/heartwild_solitaire16x16.gif',false,11323,'/images/games/heartwild_solitaire/heartwild_solitaire100x75.jpg','/images/games/heartwild_solitaire/heartwild_solitaire179x135.jpg','/images/games/heartwild_solitaire/heartwild_solitaire320x240.jpg','true','/images/games/thumbnails_med_2/heartwild_solitaire130x75.gif','/exe/heartwild_solitaire-setup.exe?lc=es&ext=heartwild_solitaire-setup.exe','¡Sumérgete en el romance y la aventura!','¡Un exclusivo juego tipo solitario lleno de belleza, romance y aventura!','false',false,false,'Heartwild Solitaire');ag(116486213,'Fitness Dash','/images/games/fitness_dash/fitness_dash81x46.gif',110083820,116522323,'a5a08f31-1613-4fb4-82b3-4fc817756ed5','false','/images/games/fitness_dash/fitness_dash16x16.gif',false,11323,'/images/games/fitness_dash/fitness_dash100x75.jpg','/images/games/fitness_dash/fitness_dash179x135.jpg','/images/games/fitness_dash/fitness_dash320x240.jpg','false','/images/games/thumbnails_med_2/fitness_dash130x75.gif','','¡Vuelve a poner en forma a los clientes de DinerTown!','¡Ayuda a los habitantes de DinerTown a ponerse en forma de nuevo!','true',false,false,'Fitness Dash OL');ag(116490390,'Natalie Brooks: The Treasure of the Lost Kingdom','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom81x46.gif',1007,116526123,'','false','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom16x16.gif',false,11323,'/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom100x75.jpg','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom179x135.jpg','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom320x240.jpg','true','/images/games/thumbnails_med_2/natalie_brooks_the_lost_kingdom130x75.gif','/exe/natalie_brooks_the_lost_kingdom-setup.exe?lc=es&ext=natalie_brooks_the_lost_kingdom-setup.exe','¡Salva a un arqueólogo de sus secuestradores!','¡Ayuda a Natalie a salvar a un arqueólogo de unos secuestradores que exigen como rescate un antiguo mapa!','false',false,false,'Natalie Brooks The Treasure of');ag(116495170,'Westward® III: Gold Rush','/images/games/westward_3_gold_rush/westward_3_gold_rush81x46.gif',110012530,116531780,'','false','/images/games/westward_3_gold_rush/westward_3_gold_rush16x16.gif',false,11323,'/images/games/westward_3_gold_rush/westward_3_gold_rush100x75.jpg','/images/games/westward_3_gold_rush/westward_3_gold_rush179x135.jpg','/images/games/westward_3_gold_rush/westward_3_gold_rush320x240.jpg','false','/images/games/thumbnails_med_2/westward_3_gold_rush130x75.gif','/exe/westward_3_gold_rush-setup.exe?lc=es&ext=westward_3_gold_rush-setup.exe','¡Hazte valer en tierras salvajes!','Construye asentamientos en las tierras salvajes del norte de California y defiéndelos.','false',false,false,'Westward 3 Gold Rush');ag(116507277,'Miracles','/images/games/miracles/miracles81x46.gif',110012530,116543167,'','false','/images/games/miracles/miracles16x16.gif',false,11323,'/images/games/miracles/miracles100x75.jpg','/images/games/miracles/miracles179x135.jpg','/images/games/miracles/miracles320x240.jpg','true','/images/games/thumbnails_med_2/miracles130x75.gif','/exe/miracles-setup.exe?lc=es&ext=miracles-setup.exe','¡Concede deseos y busca el amor verdadero!','¡Ayuda a la hechicera Aliona a conceder deseos y buscar el amor verdadero!','false',false,false,'Miracles');ag(116512480,'Burger Island 2','/images/games/burger_island_2/burger_island_281x46.gif',110097120,116548277,'d605062d-3a77-4f75-ba0a-a8027482800a','false','/images/games/burger_island_2/burger_island_216x16.gif',false,11323,'/images/games/burger_island_2/burger_island_2100x75.jpg','/images/games/burger_island_2/burger_island_2179x135.jpg','/images/games/burger_island_2/burger_island_2320x240.jpg','false','/images/games/thumbnails_med_2/burger_island_2130x75.gif','','Crea recetas de hamburguesas totalmente nuevas.','Prepara hamburguesas, tortillas y nachos para los hambrientos clientes de Beach Burger.','true',false,false,'Burger Island 2 OL');ag(116530713,'Strike Ball 3','/images/games/strike_ball_3/strike_ball_381x46.gif',1003,116566510,'','false','/images/games/strike_ball_3/strike_ball_316x16.gif',false,11323,'/images/games/strike_ball_3/strike_ball_3100x75.jpg','/images/games/strike_ball_3/strike_ball_3179x135.jpg','/images/games/strike_ball_3/strike_ball_3320x240.jpg','true','/images/games/thumbnails_med_2/strike_ball_3130x75.gif','/exe/strike_ball_3-setup.exe?lc=es&ext=strike_ball_3-setup.exe','¡Evasión explosiva en 3D!','¡Evasión explosiva en 3D llevada al máximo nivel!','false',false,false,'strike ball 3');ag(116554407,'DQ Tycoon','/images/games/dq_tycoon/dq_tycoon81x46.gif',110127790,116590953,'','false','/images/games/dq_tycoon/dq_tycoon16x16.gif',false,11323,'/images/games/dq_tycoon/dq_tycoon100x75.jpg','/images/games/dq_tycoon/dq_tycoon179x135.jpg','/images/games/dq_tycoon/dq_tycoon320x240.jpg','false','/images/games/thumbnails_med_2/dq_tycoon130x75.gif','/exe/dq_tycoon-setup.exe?lc=es&ext=dq_tycoon-setup.exe','¡Sé el mago de los vientos!','¡Sé el mago de los vientos gestionando tu propio Dairy Queen!','false',false,false,'DQ Tycoon');ag(116555140,'Farm Frenzy Pizza Party','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party81x46.gif',110127790,116591890,'','false','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party16x16.gif',false,11323,'/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party100x75.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party179x135.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_pizza_party130x75.gif','/exe/farm_frenzy_pizza_party-setup.exe?lc=es&ext=farm_frenzy_pizza_party-setup.exe','¡Prepara una pizza de masa gruesa con productos directos de la granja!','¡Vuelve a la vida acelerada de la granja para preparar a toda velocidad deliciosas pizzas recién hechas!','false',false,false,'Farm Frenzy Pizza Party');ag(116558297,'Jenny’s Fish Shop','/images/games/jennys_fish_shop/jennys_fish_shop81x46.gif',110127790,116594140,'','false','/images/games/jennys_fish_shop/jennys_fish_shop16x16.gif',false,11323,'/images/games/jennys_fish_shop/jennys_fish_shop100x75.jpg','/images/games/jennys_fish_shop/jennys_fish_shop179x135.jpg','/images/games/jennys_fish_shop/jennys_fish_shop320x240.jpg','false','/images/games/thumbnails_med_2/jennys_fish_shop130x75.gif','/exe/jennys_fish_shop-setup.exe?lc=es&ext=jennys_fish_shop-setup.exe','¡Cría y vende peces exóticos!','¡Ayuda a rejuvenecer la tienda de Jenny criando y vendiendo peces exóticos!','false',false,false,'Jennys Fish Shop');ag(116562340,'Farm Frenzy 2','/images/games/farm_frenzy_2/farm_frenzy_281x46.gif',110083820,116598140,'ff9f829a-4d29-4f52-ba86-ff9287d866e3','false','/images/games/farm_frenzy_2/farm_frenzy_216x16.gif',false,11323,'/images/games/farm_frenzy_2/farm_frenzy_2100x75.jpg','/images/games/farm_frenzy_2/farm_frenzy_2179x135.jpg','/images/games/farm_frenzy_2/farm_frenzy_2320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_2130x75.gif','','¡Gestiona una granja trepidante!','¡Cría animales, cultiva tu campo y envía tus productos al mercado!','true',true,false,'Farm Frenzy 2 OL');ag(116563147,'Cooking Academy 2 World Cuisine','/images/games/cooking_academy_2/cooking_academy_281x46.gif',110127790,116599427,'','false','/images/games/cooking_academy_2/cooking_academy_216x16.gif',false,11323,'/images/games/cooking_academy_2/cooking_academy_2100x75.jpg','/images/games/cooking_academy_2/cooking_academy_2179x135.jpg','/images/games/cooking_academy_2/cooking_academy_2320x240.jpg','false','/images/games/thumbnails_med_2/cooking_academy_2130x75.gif','/exe/cooking_academy_2_world_cuisine-setup.exe?lc=es&ext=cooking_academy_2_world_cuisine-setup.exe','¡Un reto culinario transcultural!','Prepara 60 recetas diferentes en este reto culinario transcultural.','false',false,false,'Cooking Academy 2 World Cuisin');ag(116648913,'Costume Chaos','/images/games/costume_chaos/costume_chaos81x46.gif',110127790,11668453,'','false','/images/games/costume_chaos/costume_chaos16x16.gif',false,11323,'/images/games/costume_chaos/costume_chaos100x75.jpg','/images/games/costume_chaos/costume_chaos179x135.jpg','/images/games/costume_chaos/costume_chaos320x240.jpg','false','/images/games/thumbnails_med_2/costume_chaos130x75.gif','/exe/costume_chaos-setup.exe?lc=es&ext=costume_chaos-setup.exe','¡Piratas y princesas! ¡Reyes y vaqueros!','Viste a tus clientes de piratas, princesas, reyes y vaqueros.','false',false,false,'Costume Chaos');ag(116649747,'Amelie’s Cafe','/images/games/amelies_cafe/amelies_cafe81x46.gif',110127790,116685590,'','false','/images/games/amelies_cafe/amelies_cafe16x16.gif',false,11323,'/images/games/amelies_cafe/amelies_cafe100x75.jpg','/images/games/amelies_cafe/amelies_cafe179x135.jpg','/images/games/amelies_cafe/amelies_cafe320x240.jpg','false','/images/games/thumbnails_med_2/amelies_cafe130x75.gif','/exe/amelies_cafe-setup.exe?lc=es&ext=amelies_cafe-setup.exe','¡Dirige el local más de moda de la ciudad!','Satisface a los clientes hambrientos mientras creas el local más de moda de la ciudad.','false',false,false,'Amelies Cafe');ag(116673137,'Nanny Mania 2','/images/games/nanny_mania_2/nanny_mania_281x46.gif',110012530,116709857,'','false','/images/games/nanny_mania_2/nanny_mania_216x16.gif',false,11323,'/images/games/nanny_mania_2/nanny_mania_2100x75.jpg','/images/games/nanny_mania_2/nanny_mania_2179x135.jpg','/images/games/nanny_mania_2/nanny_mania_2320x240.jpg','false','/images/games/thumbnails_med_2/nanny_mania_2130x75.gif','/exe/nanny_mania_2-setup.exe?lc=es&ext=nanny_mania_2-setup.exe','¡Encárgate de las citas, las mascotas y los paparazzi!','Encárgate de las citas y los paparazzi para salvar a un famoso que está al borde del colapso.','false',false,false,'Nanny Mania 2');ag(116674290,'Ikibago: The Caribbean Jewel','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel81x46.gif',1007,116710133,'','false','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel16x16.gif',false,11323,'/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel100x75.jpg','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel179x135.jpg','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel320x240.jpg','true','/images/games/thumbnails_med_2/ikibago_the_caribbean_jewel130x75.gif','/exe/ikibago_the_caribbean_jewel-setup.exe?lc=es&ext=ikibago_the_caribbean_jewel-setup.exe','Rompecabezas de acción con tesoro perdido.','Descubre el tesoro perdido de Ikibago en este intrépido rompecabezas de acción.','false',false,false,'Ikibago The Caribbean Jewel');ag(116675410,'WorldCup Cricket 20-20','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_2081x46.gif',110011217,116711220,'','false','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_2016x16.gif',false,11323,'/images/games/world_cup_cricket_20_20/world_cup_cricket_20_20100x75.jpg','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_20179x135.jpg','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_20320x240.jpg','false','/images/games/thumbnails_med_2/world_cup_cricket_20_20130x75.gif','/exe/worldcup_cricket_20_20-setup.exe?lc=es&ext=worldcup_cricket_20_20-setup.exe','¡Da tu mejor golpe!','Da tu mejor golpe en emocionantes partidos en 3D.','false',false,false,'WorldCup Cricket 20-20');ag(116691280,'Farm Frenzy Pizza Party','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party81x46.gif',110083820,116727420,'f31d67a8-8bbc-469c-8427-2e5295894b48','false','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party16x16.gif',false,11323,'/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party100x75.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party179x135.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_pizza_party130x75.gif','','¡Prepara una pizza de masa gruesa con productos directos de la granja!','¡Vuelve a la vida acelerada de la granja para preparar a toda velocidad deliciosas pizzas recién hechas!','true',false,false,'Farm Frenzy Pizza Party OL');ag(116703127,'Party Down','/images/games/party_down/party_down81x46.gif',110127790,116739923,'','false','/images/games/party_down/party_down16x16.gif',false,11323,'/images/games/party_down/party_down100x75.jpg','/images/games/party_down/party_down179x135.jpg','/images/games/party_down/party_down320x240.jpg','true','/images/games/thumbnails_med_2/party_down130x75.gif','/exe/party_down-setup.exe?lc=es&ext=party_down-setup.exe','¡La última novedad en organización de fiestas!','¡Conoce la última y suprema novedad en organización de fiestas mientras te encargas de satisfacer las exigencias de la élite de Hollywood!','false',false,false,'Party Down');ag(116726920,'Fab Fashion','/images/games/fab_fashion/fab_fashion81x46.gif',110127790,116762577,'','false','/images/games/fab_fashion/fab_fashion16x16.gif',false,11323,'/images/games/fab_fashion/fab_fashion100x75.jpg','/images/games/fab_fashion/fab_fashion179x135.jpg','/images/games/fab_fashion/fab_fashion320x240.jpg','false','/images/games/thumbnails_med_2/fab_fashion130x75.gif','/exe/fab_fashion-setup.exe?lc=es&ext=fab_fashion-setup.exe','¡Crea diseños que enloquezcan las pasarelas!','Crea prendas de última moda para convertirte en la mejor diseñadora de las pasarelas.','false',false,false,'Fab Fashion');ag(116746420,'Funky Farm 2','/images/games/funky_farm_2/funky_farm_281x46.gif',1007,11678290,'','false','/images/games/funky_farm_2/funky_farm_216x16.gif',false,11323,'/images/games/funky_farm_2/funky_farm_2100x75.jpg','/images/games/funky_farm_2/funky_farm_2179x135.jpg','/images/games/funky_farm_2/funky_farm_2320x240.jpg','false','/images/games/thumbnails_med_2/funky_farm_2130x75.gif','/exe/funky_farm_2-setup.exe?lc=es&ext=funky_farm_2-setup.exe','¡De fiesta en la granja!','¡Pásatelo en grande en compañía de un grupo original de estrafalarios animales de granja!','false',false,false,'Funky Farm 2');ag(116756150,'Y3K Race','/images/games/y3k_race/y3k_race81x46.gif',110083820,116792400,'562db73f-e1aa-455b-ab42-79cb7ca8a77d','false','/images/games/y3k_race/y3k_race16x16.gif',false,11323,'/images/games/y3k_race/y3k_race100x75.jpg','/images/games/y3k_race/y3k_race179x135.jpg','/images/games/y3k_race/y3k_race320x240.jpg','false','/images/games/thumbnails_med_2/y3k_race130x75.gif','','Y3KRace es un juego magnífico con una increíble sensación de carrera en el espacio.','Y3KRace es un magnífico juego de carreras de naves espaciales, que consiste en cruzar todos los puntos de control en 30 segundos en los modos Champion y Knockout.','true',true,true,'Y3K Race OLT1');ag(116815903,'Samantha Swift and the Golden Touch','/images/games/samantha_swift_2/samantha_swift_281x46.gif',1007,116851903,'','false','/images/games/samantha_swift_2/samantha_swift_216x16.gif',false,11323,'/images/games/samantha_swift_2/samantha_swift_2100x75.jpg','/images/games/samantha_swift_2/samantha_swift_2179x135.jpg','/images/games/samantha_swift_2/samantha_swift_2320x240.jpg','true','/images/games/thumbnails_med_2/samantha_swift_2130x75.gif','/exe/samantha_swift_2-setup.exe?lc=es&ext=samantha_swift_2-setup.exe','¡Descubre el misterio del toque del rey Midas!','Ayuda a una valiente arqueóloga a descubrir el misterio del toque de oro del rey Midas.','false',false,false,'Samantha Swift and the Golden');ag(116845570,'Mushroom Revolution','/images/games/mushroom_revolution/mushroom_revolution81x46.gif',110083820,116881710,'60a22d06-449f-4dc6-b47e-d22cd6c9e104','false','/images/games/mushroom_revolution/mushroom_revolution16x16.gif',false,11323,'/images/games/mushroom_revolution/mushroom_revolution100x75.jpg','/images/games/mushroom_revolution/mushroom_revolution179x135.jpg','/images/games/mushroom_revolution/mushroom_revolution320x240.jpg','false','/images/games/thumbnails_med_2/mushroom_revolution130x75.gif','','Un juego de defensa de torres adictivo','Un juego de defensa de torres adictivo con un sinfín de combinaciones y posibilidades.','true',true,true,'Mushroom Revolution OLT1 AS2');ag(116866250,'Escape Rosecliff Island','/images/games/escape_rosecliff_island/escape_rosecliff_island81x46.gif',1007,116902187,'','false','/images/games/escape_rosecliff_island/escape_rosecliff_island16x16.gif',false,11323,'/images/games/escape_rosecliff_island/escape_rosecliff_island100x75.jpg','/images/games/escape_rosecliff_island/escape_rosecliff_island179x135.jpg','/images/games/escape_rosecliff_island/escape_rosecliff_island320x240.jpg','true','/images/games/thumbnails_med_2/escape_rosecliff_island130x75.gif','/exe/escape_rosecliff_island-setup.exe?lc=es&ext=escape_rosecliff_island-setup.exe','Una aventura de buscar y encontrar para salvarte.','Has naufragado y estás perdido; debes buscar y encontrar para salvarte.','false',false,false,'Escape from Rosecliff island');ag(116879907,'Mae Q’West and the Sign of the Stars','/images/games/mae_q_west/mae_q_west81x46.gif',1007,116915690,'','false','/images/games/mae_q_west/mae_q_west16x16.gif',false,11323,'/images/games/mae_q_west/mae_q_west100x75.jpg','/images/games/mae_q_west/mae_q_west179x135.jpg','/images/games/mae_q_west/mae_q_west320x240.jpg','true','/images/games/thumbnails_med_2/mae_q_west130x75.gif','/exe/mae_qwest_and_the_sign_of_the_stars-setup.exe?lc=es&ext=mae_qwest_and_the_sign_of_the_stars-setup.exe','¡Aventura con objetos ocultos de los misteriosos horóscopos!','Encuentra al marido de Mae, que se ha perdido, resolviendo este misterio con objetos ocultos dirigido por el horóscopo.','false',false,false,'Mae QWest and the Sign of the');ag(116881683,'Diaper Dash','/images/games/diaper_dash/diaper_dash81x46.gif',110127790,116917183,'','false','/images/games/diaper_dash/diaper_dash16x16.gif',false,11323,'/images/games/diaper_dash/diaper_dash100x75.jpg','/images/games/diaper_dash/diaper_dash179x135.jpg','/images/games/diaper_dash/diaper_dash320x240.jpg','false','/images/games/thumbnails_med_2/diaper_dash130x75.gif','/exe/diaper_dash-setup.exe?lc=es&ext=diaper_dash-setup.exe','Trabaja en el servicio de guardería más adorable.','Atiende a la gente más mona de DinerTown mientras te encargas del servicio de guardería.','false',false,false,'Diaper Dash');ag(116920500,'Legacy World Adventure','/images/games/legacy_world_adventure/legacy_world_adventure81x46.gif',1007,116956923,'','false','/images/games/legacy_world_adventure/legacy_world_adventure16x16.gif',false,11323,'/images/games/legacy_world_adventure/legacy_world_adventure100x75.jpg','/images/games/legacy_world_adventure/legacy_world_adventure179x135.jpg','/images/games/legacy_world_adventure/legacy_world_adventure320x240.jpg','false','/images/games/thumbnails_med_2/legacy_world_adventure130x75.gif','/exe/legacy_world_adventure-setup.exe?lc=es&ext=legacy_world_adventure-setup.exe','Expedición de 3 combinaciones para el legado mundial.','Viaja por el mundo en una expedición de 3 combinaciones para reclamar el legado de tu familia.','false',false,false,'Legacy World Adventure');ag(116922920,'Sky Kingdoms','/images/games/sky_kingdoms/sky_kingdoms81x46.gif',1007,116958750,'','false','/images/games/sky_kingdoms/sky_kingdoms16x16.gif',false,11323,'/images/games/sky_kingdoms/sky_kingdoms100x75.jpg','/images/games/sky_kingdoms/sky_kingdoms179x135.jpg','/images/games/sky_kingdoms/sky_kingdoms320x240.jpg','true','/images/games/thumbnails_med_2/sky_kingdoms130x75.gif','/exe/sky_kingdoms-setup.exe?lc=es&ext=sky_kingdoms-setup.exe','¡Combinaciones de bolas explosivas!','Haz combinaciones explosivas de 3 bolas de colores en un increíble mundo de fantasía.','false',false,false,'Sky Kingdoms');ag(116926163,'Yosumin','/images/games/yosumin/yosumin81x46.gif',1007,116962930,'','false','/images/games/yosumin/yosumin16x16.gif',false,11323,'/images/games/yosumin/yosumin100x75.jpg','/images/games/yosumin/yosumin179x135.jpg','/images/games/yosumin/yosumin320x240.jpg','false','/images/games/thumbnails_med_2/yosumin130x75.gif','/exe/yosumin-setup.exe?lc=es&ext=yosumin-setup.exe','Busca el destrozado cristal de colores de Yosumin.','Rompecabezas de aventuras para recobrar el muy preciado cristal de colores destrozado del bosque de Yosumin.','false',false,false,'Yosumin');ag(116954420,'Diaper Dash','/images/games/diaper_dash/diaper_dash81x46.gif',110083820,116990187,'30a24f3d-be01-487a-b105-bde2b07b6c27','false','/images/games/diaper_dash/diaper_dash16x16.gif',false,11323,'/images/games/diaper_dash/diaper_dash100x75.jpg','/images/games/diaper_dash/diaper_dash179x135.jpg','/images/games/diaper_dash/diaper_dash320x240.jpg','false','/images/games/thumbnails_med_2/diaper_dash130x75.gif','','Trabaja en el servicio de guardería más adorable.','Atiende a la gente más mona de DinerTown mientras te encargas del servicio de guardería.','true',false,false,'Diaper Dash OL');ag(116959157,'Enchanted Katya','/images/games/enchanted_katya/enchanted_katya81x46.gif',110127790,116995657,'','false','/images/games/enchanted_katya/enchanted_katya16x16.gif',false,11323,'/images/games/enchanted_katya/enchanted_katya100x75.jpg','/images/games/enchanted_katya/enchanted_katya179x135.jpg','/images/games/enchanted_katya/enchanted_katya320x240.jpg','false','/images/games/thumbnails_med_2/enchanted_katya130x75.gif','/exe/enchanted_katya-setup.exe?lc=es&ext=enchanted_katya-setup.exe','El mágico misterio de la preparación de pócimas.','Busca a un mago desaparecido a la vez que aprendes a dominar la preparación de pócimas mágicas.','false',false,false,'Enchanted Katya');ag(116961663,'Charm Tale 2 Mermaid Lagoon','/images/games/charm_tale_2/charm_tale_281x46.gif',1007,116997367,'','false','/images/games/charm_tale_2/charm_tale_216x16.gif',false,11323,'/images/games/charm_tale_2/charm_tale_2100x75.jpg','/images/games/charm_tale_2/charm_tale_2179x135.jpg','/images/games/charm_tale_2/charm_tale_2320x240.jpg','false','/images/games/thumbnails_med_2/charm_tale_2130x75.gif','/exe/charm_tale2-setup.exe?lc=es&ext=charm_tale2-setup.exe','¡Una aventura de 3 combinaciones por el fondo del mar llena de secretos!','Únete a esta aventura de 3 combinaciones por el fondo del mar para ayudar a Dorothy a descubrir misteriosos secretos.','false',false,false,'Charm Tale 2');ag(117037443,'Ranch Rush','/images/games/ranch_rush/ranch_rush81x46.gif',110081853,117073180,'f143048c-8c5e-42cf-b30b-660ff02a54cb','false','/images/games/ranch_rush/ranch_rush16x16.gif',false,11323,'/images/games/ranch_rush/ranch_rush100x75.jpg','/images/games/ranch_rush/ranch_rush179x135.jpg','/images/games/ranch_rush/ranch_rush320x240.jpg','true','/images/games/thumbnails_med_2/ranch_rush130x75.gif','','¡Convierte tres acres en un próspero rancho!','Ayuda a Sara a convertir tres acres en un próspero mercado de granjeros.','true',true,true,'Ranch Rush OLT1');ag(117042567,'Bundle of Joy','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy81x46.gif',110127790,117078927,'','false','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy16x16.gif',false,11323,'/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy100x75.jpg','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy179x135.jpg','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy320x240.jpg','false','/images/games/thumbnails_med_2/mothers_day_bundle_of_joy130x75.gif','/exe/bundle_of_joy-setup.exe?lc=es&ext=bundle_of_joy-setup.exe','Paquete de 2 juegos de locos desafíos para cuidar a niños.','Remángate para un paquete de 2 juegos con un sinfín de locos desafíos para cuidar a niños.','false',false,false,'Bundle of Joy');ag(117044280,'Mystic Emporium','/images/games/mystic_emporium/mystic_emporium81x46.gif',110012530,117080873,'','false','/images/games/mystic_emporium/mystic_emporium16x16.gif',false,11323,'/images/games/mystic_emporium/mystic_emporium100x75.jpg','/images/games/mystic_emporium/mystic_emporium179x135.jpg','/images/games/mystic_emporium/mystic_emporium320x240.jpg','true','/images/games/thumbnails_med_2/mystic_emporium130x75.gif','/exe/mystic_emporium-setup.exe?lc=es&ext=mystic_emporium-setup.exe','¡Transforma una tienda de magia y misterio!','Transforma una tienda fantástica de magia y misterio usando tu talento para gestionar el tiempo.','false',false,false,'Mystic Emporium');ag(117075440,'Hidden Island','/images/games/hidden_island/hidden_island81x46.gif',1007,117111267,'','false','/images/games/hidden_island/hidden_island16x16.gif',false,11323,'/images/games/hidden_island/hidden_island100x75.jpg','/images/games/hidden_island/hidden_island179x135.jpg','/images/games/hidden_island/hidden_island320x240.jpg','false','/images/games/thumbnails_med_2/hidden_island130x75.gif','/exe/hidden_island-setup.exe?lc=es&ext=hidden_island-setup.exe','¡Rompe el antiguo hechizo de la Isla Oculta!','¡Descubre los misterios de la Isla Oculta y rompe su antiguo hechizo!','false',false,false,'Hidden Island');ag(117080787,'Plants vs Zombies','/images/games/plants_vs_zombies/plants_vs_zombies81x46.gif',1003,117116617,'','false','/images/games/plants_vs_zombies/plants_vs_zombies16x16.gif',false,11323,'/images/games/plants_vs_zombies/plants_vs_zombies100x75.jpg','/images/games/plants_vs_zombies/plants_vs_zombies179x135.jpg','/images/games/plants_vs_zombies/plants_vs_zombies320x240.jpg','true','/images/games/thumbnails_med_2/plants_vs_zombies130x75.gif','/exe/plants_vs_zombies-setup.exe?lc=es&ext=plants_vs_zombies-setup.exe','¡Defiende tu hogar con plantas que ahuyentan a los zombis!','¡Defiende tu hogar frente a los ataques de los zombis plantando con rapidez y estrategia!','false',false,false,'Plants vs Zombies');ag(117093760,'Big Brain Wolf','/images/games/big_brain_wolf/big_brain_wolf81x46.gif',1007,117129573,'','false','/images/games/big_brain_wolf/big_brain_wolf16x16.gif',false,11323,'/images/games/big_brain_wolf/big_brain_wolf100x75.jpg','/images/games/big_brain_wolf/big_brain_wolf179x135.jpg','/images/games/big_brain_wolf/big_brain_wolf320x240.jpg','false','/images/games/thumbnails_med_2/big_brain_wolf130x75.gif','/exe/big_brain_wolf-setup.exe?lc=es&ext=big_brain_wolf-setup.exe','¡Una divertida aventura de rompecabezas de apuntar y hacer clic!','Divertidos rompecabezas y personajes estrafalarios en una aventura de rompecabezas de apuntar y hacer clic.','false',false,false,'Big Brain Wolf');ag(117095587,'Restaurant Rush','/images/games/restaurant_rush/restaurant_rush81x46.gif',110127790,117131417,'','false','/images/games/restaurant_rush/restaurant_rush16x16.gif',false,11323,'/images/games/restaurant_rush/restaurant_rush100x75.jpg','/images/games/restaurant_rush/restaurant_rush179x135.jpg','/images/games/restaurant_rush/restaurant_rush320x240.jpg','true','/images/games/thumbnails_med_2/restaurant_rush130x75.gif','/exe/restaurant_rush-setup.exe?lc=es&ext=restaurant_rush-setup.exe','¡Deliciosa secuela que presenta el concurso de chefs definitivo!','Heidi vuelve en un juego de combinaciones y gestión del tiempo para ganar el concurso de chefs definitivo.','false',false,false,'Restaurant Rush');ag(117096290,'Satisfashion','/images/games/satisfashion/satisfashion81x46.gif',110012530,117132103,'','false','/images/games/satisfashion/satisfashion16x16.gif',false,11323,'/images/games/satisfashion/satisfashion100x75.jpg','/images/games/satisfashion/satisfashion179x135.jpg','/images/games/satisfashion/satisfashion320x240.jpg','true','/images/games/thumbnails_med_2/satisfashion130x75.gif','/exe/satisfashion-setup.exe?lc=es&ext=satisfashion-setup.exe','La diva del diseño: ¡consigue la fama internacional en el mundo de la moda!','Diseña ropa, viste a las modelos y consigue la fama en desfiles de moda internacionales.','false',false,false,'Satisfashion');ag(117148623,'Musaic Box','/images/games/musaic_box/musaic_box81x46.gif',1007,117184263,'','false','/images/games/musaic_box/musaic_box16x16.gif',false,11323,'/images/games/musaic_box/musaic_box100x75.jpg','/images/games/musaic_box/musaic_box179x135.jpg','/images/games/musaic_box/musaic_box320x240.jpg','false','/images/games/thumbnails_med_2/musaic_box130x75.gif','/exe/musaic_box-setup.exe?lc=es&ext=musaic_box-setup.exe','¡Descubre los misterios musicales de tu abuelo!','Descubre los misterios musicales de tu abuelo buscando partituras y componiendo melodías.','false',false,false,'Musaic Box');ag(117163550,'TAKI','/images/games/taki/taki81x46.gif',110083820,11719917,'7ea51672-1583-40e7-a200-01edfc3b53c6','false','/images/games/taki/taki16x16.gif',false,11323,'/images/games/taki/taki100x75.jpg','/images/games/taki/taki179x135.jpg','/images/games/taki/taki320x240.jpg','false','/images/games/thumbnails_med_2/taki130x75.gif','','¡Crazy Eight se vuelve realmente trepidante!','Con Taki, Crazy Eight se adentra en la emoción de nuevas dimensiones','true',true,true,'TAKI OLT1');ag(117166810,'Diner Town Tycoon','/images/games/DinerTownTycoon/DinerTownTycoon81x46.gif',110012530,117202530,'','false','/images/games/DinerTownTycoon/DinerTownTycoon16x16.gif',false,11323,'/images/games/DinerTownTycoon/DinerTownTycoon100x75.jpg','/images/games/DinerTownTycoon/DinerTownTycoon179x135.jpg','/images/games/DinerTownTycoon/DinerTownTycoon320x240.jpg','false','/images/games/thumbnails_med_2/DinerTownTycoon130x75.gif','/exe/diner_town_tycoon-setup.exe?lc=es&ext=diner_town_tycoon-setup.exe','¡Dale la patada a Grub Burger!','Dale la patada a Grub Burger. Salva al pueblo DinerTown™ con nuevos restaurantes saludables.','false',false,false,'Diner Town Tycoon');ag(117168453,'Jessica’s Cupcake Cafe','/images/games/jessicas_cupcake/jessicas_cupcake81x46.gif',110127790,117204907,'','false','/images/games/jessicas_cupcake/jessicas_cupcake16x16.gif',false,11323,'/images/games/jessicas_cupcake/jessicas_cupcake100x75.jpg','/images/games/jessicas_cupcake/jessicas_cupcake179x135.jpg','/images/games/jessicas_cupcake/jessicas_cupcake320x240.jpg','false','/images/games/thumbnails_med_2/jessicas_cupcake130x75.gif','/exe/jessicas_cupcake_cafe-setup.exe?lc=es&ext=jessicas_cupcake_cafe-setup.exe','¡Levanta un imperio pastelero!','Ayuda a Jessica a hacerse cargo de la pastelería de su tía y a levantar un imperio pastelero','false',false,false,'Jessicas Cupcake Cafe');ag(117213877,'TikiBar','/images/games/tikibar/tikibar81x46.gif',110127790,117249643,'','false','/images/games/tikibar/tikibar16x16.gif',false,11323,'/images/games/tikibar/tikibar100x75.jpg','/images/games/tikibar/tikibar179x135.jpg','/images/games/tikibar/tikibar320x240.jpg','false','/images/games/thumbnails_med_2/tikibar130x75.gif','/exe/tikibar-setup.exe?lc=es&ext=tikibar-setup.exe','El éxito está servido: ¡gestión de tiempo tropical!','Mantén satisfechos a los clientes de la isla con comida y bebida, en este juego de gestión de tiempo tropical.','false',false,false,'TikiBar');ag(117217620,'Faerie Solitaire','/images/games/faerie_solitaire/faerie_solitaire81x46.gif',1004,117253273,'','false','/images/games/faerie_solitaire/faerie_solitaire16x16.gif',false,11323,'/images/games/faerie_solitaire/faerie_solitaire100x75.jpg','/images/games/faerie_solitaire/faerie_solitaire179x135.jpg','/images/games/faerie_solitaire/faerie_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/faerie_solitaire130x75.gif','/exe/faerie_solitaire-setup.exe?lc=es&ext=faerie_solitaire-setup.exe','¡Salva a las hadas en un mundo de fantasía!','Salva a las hadas y ve repoblando el mundo mágico de Avalón.','false',false,false,'Faerie Solitaire');ag(117244230,'Wedding Dash: Ready, Aim, Love','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love81x46.gif',110012530,117280730,'','false','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love16x16.gif',false,11323,'/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love100x75.jpg','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love179x135.jpg','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love320x240.jpg','false','/images/games/thumbnails_med_2/wedding_dash_ready_aim_love130x75.gif','/exe/wedding_dash_3-setup.exe?lc=es&ext=wedding_dash_3-setup.exe','¡Ayuda a Quinn a planear su boda!','Coloca a los invitados en las mesas del banquete mientras mantienes alejados a los aguafiestas.','false',false,false,'Wedding Dash 3');ag(117266807,'Aveyond: Lord of the Twilight','/images/games/aveyond_lord_of_twilight/aveyond_lord_of_twilight81x46.gif',1007,117302430,'','false','/images/games/aveyond_lord_of_twilight/aveyond_lord_of_twilight16x16.gif',false,11323,'/images/games/aveyond_lord_of_twilight/aveyond_lord_of_twilight100x75.jpg','/images/games/aveyond_lord_of_twilight/aveyond_lord_of_twilight179x135.jpg','/images/games/aveyond_lord_of_twilight/aveyond_lord_of_twilight320x240.jpg','false','/images/games/thumbnails_med_2/aveyond_lord_of_twilight130x75.gif','/exe/aveyond_lord_of_twilight-setup.exe?lc=es&ext=aveyond_lord_of_twilight-setup.exe','¡Salva a la humanidad de un malvado vampiro!','¡Lucha contra los monstruos para impedir que un malvado vampiro esclavice a la humanidad!','false',false,false,'Aveyond Lord of Twilight');ag(117267127,'Roboball','/images/games/roboball/roboball81x46.gif',1003,117303953,'','false','/images/games/roboball/roboball16x16.gif',false,11323,'/images/games/roboball/roboball100x75.jpg','/images/games/roboball/roboball179x135.jpg','/images/games/roboball/roboball320x240.jpg','false','/images/games/thumbnails_med_2/roboball130x75.gif','/exe/roboball-setup.exe?lc=es&ext=roboball-setup.exe','¡Un salvaje rompeladrillos en 3D!','¡Hazte camino entre decenas de delirantes escenarios rompeladrillos en 3D!','false',false,false,'Roboball');ag(117302430,'Atlantis Bundle: Atlantis Quest & Rise of Atlantis','/images/games/atlantis_bundle/atlantis_bundle81x46.gif',1007,117338180,'','false','/images/games/atlantis_bundle/atlantis_bundle16x16.gif',false,11323,'/images/games/atlantis_bundle/atlantis_bundle100x75.jpg','/images/games/atlantis_bundle/atlantis_bundle179x135.jpg','/images/games/atlantis_bundle/atlantis_bundle320x240.jpg','false','/images/games/thumbnails_med_2/atlantis_bundle130x75.gif','/exe/atlantis_bundle-setup.exe?lc=es&ext=atlantis_bundle-setup.exe','Desentierra la ciudad perdida de la Atlántida: ¡2 por 1!','Desentierra la antigua ciudad perdida de la Atlántida: ¡2 juegos superventas por el precio de 1!','false',false,false,'Atlantis Bundle');ag(117307377,'Pahelika: Secret Legends','/images/games/pahelika_secret_legends/pahelika_secret_legends81x46.gif',110012530,117343143,'','false','/images/games/pahelika_secret_legends/pahelika_secret_legends16x16.gif',false,11323,'/images/games/pahelika_secret_legends/pahelika_secret_legends100x75.jpg','/images/games/pahelika_secret_legends/pahelika_secret_legends179x135.jpg','/images/games/pahelika_secret_legends/pahelika_secret_legends320x240.jpg','true','/images/games/thumbnails_med_2/pahelika_secret_legends130x75.gif','/exe/pahelika_secret_legends-setup.exe?lc=es&ext=pahelika_secret_legends-setup.exe','Busca templos para encontrar un libro místico.','Evita que un libro secreto caiga en las manos equivocadas.','false',false,false,'Pahelika Secret Legends');ag(117312417,'Super Ranch','/images/games/super_ranch/super_ranch81x46.gif',110127790,11734887,'','false','/images/games/super_ranch/super_ranch16x16.gif',false,11323,'/images/games/super_ranch/super_ranch100x75.jpg','/images/games/super_ranch/super_ranch179x135.jpg','/images/games/super_ranch/super_ranch320x240.jpg','false','/images/games/thumbnails_med_2/super_ranch130x75.gif','/exe/super_ranch-setup.exe?lc=es&ext=super_ranch-setup.exe','Cosecha cereales y cría ganado.','Convierte una pequeña parcela de tierras de cultivo en un próspero rancho.','false',false,false,'Super Ranch');ag(117324803,'Holly 2: Magic Land','/images/games/holly_2_magic_land/holly_2_magic_land81x46.gif',1003,11736053,'','false','/images/games/holly_2_magic_land/holly_2_magic_land16x16.gif',false,11323,'/images/games/holly_2_magic_land/holly_2_magic_land100x75.jpg','/images/games/holly_2_magic_land/holly_2_magic_land179x135.jpg','/images/games/holly_2_magic_land/holly_2_magic_land320x240.jpg','true','/images/games/thumbnails_med_2/holly_2_magic_land130x75.gif','/exe/holly_2_magic_land-setup.exe?lc=es&ext=holly_2_magic_land-setup.exe','Haz posible que Holly y su hija se reencuentren.','Ayuda a Holly a reencontrarse con su hija en la Tierra Mágica.','false',false,false,'Holly 2 Magic Land');ag(117325817,'Mr Bilbo’s Four Corners Of The World','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world81x46.gif',110127790,117361627,'','false','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world16x16.gif',false,11323,'/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world100x75.jpg','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world179x135.jpg','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world320x240.jpg','true','/images/games/thumbnails_med_2/bilbo_the_four_corners_of_the_world130x75.gif','/exe/mr_bilbos_four_corners_of_the_world-setup.exe?lc=es&ext=mr_bilbos_four_corners_of_the_world-setup.exe','¡Dirige restaurantes por todo el mundo!','Dirige restaurantes y conquista el corazón de tu amor verdadero.','false',false,false,'Bilbos Four Corners Of The');ag(117334223,'Babylonia','/images/games/babylonia/babylonia81x46.gif',1007,117370897,'','false','/images/games/babylonia/babylonia16x16.gif',false,11323,'/images/games/babylonia/babylonia100x75.jpg','/images/games/babylonia/babylonia179x135.jpg','/images/games/babylonia/babylonia320x240.jpg','true','/images/games/thumbnails_med_2/babylonia130x75.gif','/exe/babylonia-setup.exe?lc=es&ext=babylonia-setup.exe','¡Empareja las flores para recuperar antiguos jardines!','Empareja las flores para recuperar los legendarios jardines colgantes de Babilonia y devolverles su antigua gloria.','false',false,false,'Babylonia');ag(117362747,'World Mosaics 2','/images/games/world_mosaics2/world_mosaics281x46.gif',1007,117398213,'','false','/images/games/world_mosaics2/world_mosaics216x16.gif',false,11323,'/images/games/world_mosaics2/world_mosaics2100x75.jpg','/images/games/world_mosaics2/world_mosaics2179x135.jpg','/images/games/world_mosaics2/world_mosaics2320x240.jpg','false','/images/games/thumbnails_med_2/world_mosaics2130x75.gif','/exe/world_mosaics_2-setup.exe?lc=es&ext=world_mosaics_2-setup.exe','¡Viaja a través de siete épocas históricas!','Viaja en el tiempo mientras construyes tu camino hacia siete épocas históricas.','false',false,false,'World Mosaics 2');ag(117373543,'My Kingdom for the Princess','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess81x46.gif',110127790,117409903,'','false','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess16x16.gif',false,11323,'/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess100x75.jpg','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess179x135.jpg','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess320x240.jpg','false','/images/games/thumbnails_med_2/my_kingdom_for_the_princess130x75.gif','/exe/my_kingdom_for_the_princess-setup.exe?lc=es&ext=my_kingdom_for_the_princess-setup.exe','¡Un desastre de la Edad Oscura y una damisela afligida!','Ayuda al valeroso caballero Arthur a enfrentarse a un desastre de la Edad Oscura y una damisela afligida.','false',false,false,'My Kingdom for the Princess');ag(117375803,'Magic Farm Ultimate Flower','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower81x46.gif',110012530,117411493,'','false','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower16x16.gif',false,11323,'/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower100x75.jpg','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower179x135.jpg','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower320x240.jpg','false','/images/games/thumbnails_med_2/magic_farm_ultimate_flower130x75.gif','/exe/magic_farm_utimate_flower-setup.exe?lc=es&ext=magic_farm_utimate_flower-setup.exe','¡Ayuda a una florista de cuento de hadas!','Ayuda a una florista de cuento de hadas a salvar a sus queridos padres.','false',false,false,'Magic Farm Ultimate Flower');ag(117379630,'Youda Sushi Chef','/images/games/youda_sushi_chef/youda_sushi_chef81x46.gif',110012530,117415740,'','false','/images/games/youda_sushi_chef/youda_sushi_chef16x16.gif',false,11323,'/images/games/youda_sushi_chef/youda_sushi_chef100x75.jpg','/images/games/youda_sushi_chef/youda_sushi_chef179x135.jpg','/images/games/youda_sushi_chef/youda_sushi_chef320x240.jpg','false','/images/games/thumbnails_med_2/youda_sushi_chef130x75.gif','/exe/youda_sushi_chef-setup.exe?lc=es&ext=youda_sushi_chef-setup.exe','Sushi, Sashimi, Sake: eres el maestro.','Sushi, Sashimi, Sake: crea un imperio de la restauración y conviértete en el maestro del sushi.','false',false,false,'Youda Sushi Chef');ag(117386723,'Sally’s Spa','/images/games/sallys_spa/sallys_spa81x46.gif',110127790,117422427,'','false','/images/games/sallys_spa/sallys_spa16x16.gif',false,11323,'/images/games/sallys_spa/sallys_spa100x75.jpg','/images/games/sallys_spa/sallys_spa179x135.jpg','/images/games/sallys_spa/sallys_spa320x240.jpg','false','/images/games/thumbnails_med_2/sallys_spa130x75.gif','/exe/Sallys_Spa_Network-setup.exe?lc=es&ext=Sallys_Spa_Network-setup.exe','¡Mima a los clientes de 10 balnearios increíbles!','Ayuda a Sally a mimar a los clientes de 10 balnearios increíbles de todo el mundo.','false',false,false,'Sallys Spa Network');ag(117388953,'Hotel Mogul','/images/games/hotel_mogul/hotel_mogul81x46.gif',110012530,117424563,'','false','/images/games/hotel_mogul/hotel_mogul16x16.gif',false,11323,'/images/games/hotel_mogul/hotel_mogul100x75.jpg','/images/games/hotel_mogul/hotel_mogul179x135.jpg','/images/games/hotel_mogul/hotel_mogul320x240.jpg','true','/images/games/thumbnails_med_2/hotel_mogul130x75.gif','/exe/hotel_mogul-setup.exe?lc=es&ext=hotel_mogul-setup.exe','Lucha por el negocio familiar.','Ayuda a Lynette a luchar por el negocio familiar y manda a su marido en la cárcel.','false',false,false,'Hotel Mogul');ag(117449150,'Bato: Treasures of Tibet','/images/games/bato/bato81x46.gif',1007,117485183,'','false','/images/games/bato/bato16x16.gif',false,11323,'/images/games/bato/bato100x75.jpg','/images/games/bato/bato179x135.jpg','/images/games/bato/bato320x240.jpg','false','/images/games/thumbnails_med_2/bato130x75.gif','/exe/bato-setup.exe?lc=es&ext=bato-setup.exe','¡Une las piedras de colores para desenterrar antiguos tesoros!','Une las piedras de colores similares para desenterrar los tesoros del lejano Oriente.','false',false,false,'Bato');ag(117451913,'Passport to Perfume™','/images/games/passport_to_perfume/passport_to_perfume81x46.gif',110127790,117487710,'','false','/images/games/passport_to_perfume/passport_to_perfume16x16.gif',false,11323,'/images/games/passport_to_perfume/passport_to_perfume100x75.jpg','/images/games/passport_to_perfume/passport_to_perfume179x135.jpg','/images/games/passport_to_perfume/passport_to_perfume320x240.jpg','false','/images/games/thumbnails_med_2/passport_to_perfume130x75.gif','/exe/passport_to_perfume-setup.exe?lc=es&ext=passport_to_perfume-setup.exe','¡Busca y vende lujosas fragancias!','Busca los ingredientes, combina las fragancias y dirige con éxito una tienda de perfumes en Londres.','false',false,false,'Passport To Perfume');ag(117459997,'QuantZ™','/images/games/quantz/quantz81x46.gif',1007,117495200,'','false','/images/games/quantz/quantz16x16.gif',false,11323,'/images/games/quantz/quantz100x75.jpg','/images/games/quantz/quantz179x135.jpg','/images/games/quantz/quantz320x240.jpg','false','/images/games/thumbnails_med_2/quantz130x75.gif','/exe/quantz-setup.exe?lc=es&ext=quantz-setup.exe','Rompecabezas de acción física exclusivo e hipnotizante.','Rompecabezas de acción física exclusivo e hipnotizante de dejar caer bolas y explosiones de color fantásticas.','false',false,false,'QuantZ');ag(117487143,'Horatio’s Travels','/images/games/horatios_travels/horatios_travels81x46.gif',110127790,117525847,'','false','/images/games/horatios_travels/horatios_travels16x16.gif',false,11323,'/images/games/horatios_travels/horatios_travels100x75.jpg','/images/games/horatios_travels/horatios_travels179x135.jpg','/images/games/horatios_travels/horatios_travels320x240.jpg','false','/images/games/thumbnails_med_2/horatios_travels130x75.gif','/exe/horatios_travels-setup.exe?lc=es&ext=horatios_travels-setup.exe','¡Entrega postres a los clientes más excéntricos del mundo!','Entrega postres a los clientes más excéntricos del mundo en esta aventura de gestión del tiempo alrededor del mundo.','false',false,false,'Horatios Travels');ag(117488817,'Puppy Stylin’','/images/games/puppy_stylin/puppy_stylin81x46.gif',110127790,117526537,'','false','/images/games/puppy_stylin/puppy_stylin16x16.gif',false,11323,'/images/games/puppy_stylin/puppy_stylin100x75.jpg','/images/games/puppy_stylin/puppy_stylin179x135.jpg','/images/games/puppy_stylin/puppy_stylin320x240.jpg','false','/images/games/thumbnails_med_2/puppy_stylin130x75.gif','/exe/puppy_stylin-setup.exe?lc=es&ext=puppy_stylin-setup.exe','Prepara a los cachorros para ser los campeones del concurso de perros.','Prepara a los cachorros para ser los campeones del concurso de perros. Lava, recorta y cepilla para iniciar el camino hacia los mejores.','false',false,false,'Puppy Stylin');ag(117555593,'Fishdom H20: Hidden Oddysey','/images/games/fishdom_h2o/fishdom_h2o81x46.gif',110083820,11759493,'180cb4ea-7a8a-4aad-bea3-d99395daf16c','false','/images/games/fishdom_h2o/fishdom_h2o16x16.gif',false,11323,'/images/games/fishdom_h2o/fishdom_h2o100x75.jpg','/images/games/fishdom_h2o/fishdom_h2o179x135.jpg','/images/games/fishdom_h2o/fishdom_h2o320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_h2o130x75.gif','','Crea fantásticos acuarios exóticos.','Sumérgete, descubre objetos ocultos y crea acuarios de ensueño.','true',true,true,'Fishdom H20 OLT1');ag(117584170,'The Lost Inca Prophecy','/images/games/lost_inca_prophecy/lost_inca_prophecy81x46.gif',1007,117623920,'','false','/images/games/lost_inca_prophecy/lost_inca_prophecy16x16.gif',false,11323,'/images/games/lost_inca_prophecy/lost_inca_prophecy100x75.jpg','/images/games/lost_inca_prophecy/lost_inca_prophecy179x135.jpg','/images/games/lost_inca_prophecy/lost_inca_prophecy320x240.jpg','false','/images/games/thumbnails_med_2/lost_inca_prophecy130x75.gif','/exe/the_lost_inca_prophecy-setup.exe?lc=es&ext=the_lost_inca_prophecy-setup.exe','¡Detén la profecía y salva a los incas!','¡Descifra los misteriosos sueños de Acua para evitar la profecía y salvar a la civilización inca!','false',false,false,'The Lost Inca Prophecy');ag(117601840,'Farm Frenzy 3','/images/games/farm_frenzy3/farm_frenzy381x46.gif',110127790,117640670,'','false','/images/games/farm_frenzy3/farm_frenzy316x16.gif',false,11323,'/images/games/farm_frenzy3/farm_frenzy3100x75.jpg','/images/games/farm_frenzy3/farm_frenzy3179x135.jpg','/images/games/farm_frenzy3/farm_frenzy3320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy3130x75.gif','/exe/farm_frenzy_3-setup.exe?lc=es&ext=farm_frenzy_3-setup.exe','¡Gestiona granjas extravagantes en todo el mundo!','Desde criar pingüinos hasta elaborar joyas; gestiona 5 granjas extravagantes en todo el mundo.','false',false,false,'Farm Frenzy 3');ag(117602277,'Bumble Tales','/images/games/bumble_tales/bumble_tales81x46.gif',1007,11764190,'','false','/images/games/bumble_tales/bumble_tales16x16.gif',false,11323,'/images/games/bumble_tales/bumble_tales100x75.jpg','/images/games/bumble_tales/bumble_tales179x135.jpg','/images/games/bumble_tales/bumble_tales320x240.jpg','false','/images/games/thumbnails_med_2/bumble_tales130x75.gif','/exe/bumble_tales-setup.exe?lc=es&ext=bumble_tales-setup.exe','¡Adorables aventuras de diversión de combinaciones en familia!','Adorables aventuras de diversión de combinaciones en familia con un pueblo de Bumbles memorables.','false',false,false,'Bumble Tales');ag(117603270,'Go! Go! Rescue Squad!','/images/games/gogo_rescue_squad/gogo_rescue_squad81x46.gif',1007,117642100,'','false','/images/games/gogo_rescue_squad/gogo_rescue_squad16x16.gif',false,11323,'/images/games/gogo_rescue_squad/gogo_rescue_squad100x75.jpg','/images/games/gogo_rescue_squad/gogo_rescue_squad179x135.jpg','/images/games/gogo_rescue_squad/gogo_rescue_squad320x240.jpg','true','/images/games/thumbnails_med_2/gogo_rescue_squad130x75.gif','/exe/go_go_rescue_squad-setup.exe?lc=es&ext=go_go_rescue_squad-setup.exe','¡Salva a los desventurados ciudadanos de una muerte inminente!','Resuelve rompecabezas diabólicamente adictivos para salvar a los desventurados ciudadanos de una muerte inminente.','false',false,false,'Go Go Rescue Squad');ag(117604257,'Joe’s Garden','/images/games/joes_garden/joes_garden81x46.gif',1003,117643867,'','false','/images/games/joes_garden/joes_garden16x16.gif',false,11323,'/images/games/joes_garden/joes_garden100x75.jpg','/images/games/joes_garden/joes_garden179x135.jpg','/images/games/joes_garden/joes_garden320x240.jpg','false','/images/games/thumbnails_med_2/joes_garden130x75.gif','/exe/joes_garden-setup.exe?lc=es&ext=joes_garden-setup.exe','Resucita el fracasado negocio de flores de Joe.','Resucita el fracasado negocio de flores fracasado de Joe y ayúdalo a alcanzar la riqueza.','false',false,false,'Joes Garden');ag(117618927,'Pequeñas cosas','/images/games/little_things/little_things81x46.gif',1007,117657950,'','false','/images/games/little_things/little_things16x16.gif',false,11323,'/images/games/little_things/little_things100x75.jpg','/images/games/little_things/little_things179x135.jpg','/images/games/little_things/little_things320x240.jpg','true','/images/games/thumbnails_med_2/little_things130x75.gif','/exe/little_things-setup.exe?lc=es&ext=little_things-setup.exe','Estrafalaria y colorista búsqueda de objetos escondidos.','Una búsqueda de objetos escondidos estrafalaria, colorista y revolucionaria que divertirá a toda la familia.','false',false,false,'Little Things');ag(117629560,'Princess Isabella: A Witch’s Curse','/images/games/PrincessIsabella/PrincessIsabella81x46.gif',1007,117668400,'','false','/images/games/PrincessIsabella/PrincessIsabella16x16.gif',false,11323,'/images/games/PrincessIsabella/PrincessIsabella100x75.jpg','/images/games/PrincessIsabella/PrincessIsabella179x135.jpg','/images/games/PrincessIsabella/PrincessIsabella320x240.jpg','true','/images/games/thumbnails_med_2/PrincessIsabella130x75.gif','/exe/princess_isabella-setup.exe?lc=es&ext=princess_isabella-setup.exe','Rompe el maleficio del castillo.','Rompe el maleficio del castillo para salvar a tu Príncipe encantador.','false',false,false,'Princess Isabella');ag(117649450,'Becky Brogan – The Mystery of Meane Manor','/images/games/BeckyBrogan/BeckyBrogan81x46.gif',1007,117688120,'','false','/images/games/BeckyBrogan/BeckyBrogan16x16.gif',false,11323,'/images/games/BeckyBrogan/BeckyBrogan100x75.jpg','/images/games/BeckyBrogan/BeckyBrogan179x135.jpg','/images/games/BeckyBrogan/BeckyBrogan320x240.jpg','true','/images/games/thumbnails_med_2/BeckyBrogan130x75.gif','/exe/becky_brogan-setup.exe?lc=es&ext=becky_brogan-setup.exe','Thriller de buscar y encontrar en una mansión abandonada','Desentierra pistas misteriosas y secretos espeluznantes en este thriller de buscar y encontrar en Meane Manor.','false',false,false,'Becky Brogan');ag(117650233,'Everything Nice','/images/games/everything_nice/everything_nice81x46.gif',110127790,11768963,'','false','/images/games/everything_nice/everything_nice16x16.gif',false,11323,'/images/games/everything_nice/everything_nice100x75.jpg','/images/games/everything_nice/everything_nice179x135.jpg','/images/games/everything_nice/everything_nice320x240.jpg','false','/images/games/thumbnails_med_2/everything_nice130x75.gif','/exe/everything_nice-setup.exe?lc=es&ext=everything_nice-setup.exe','¡Una increíble fábrica de golosinas llena de sorpresas!','La increíble fábrica de golosinas de Abby está llena de sorpresas.','false',false,false,'Everything Nice');ag(117666710,'Magic Encyclopedia: Moonlight Mystery','/images/games/magic_encyclopedia2/magic_encyclopedia281x46.gif',1007,11770553,'','false','/images/games/magic_encyclopedia2/magic_encyclopedia216x16.gif',false,11323,'/images/games/magic_encyclopedia2/magic_encyclopedia2100x75.jpg','/images/games/magic_encyclopedia2/magic_encyclopedia2179x135.jpg','/images/games/magic_encyclopedia2/magic_encyclopedia2320x240.jpg','true','/images/games/thumbnails_med_2/magic_encyclopedia2130x75.gif','/exe/magic_encyclopedia_2-setup.exe?lc=es&ext=magic_encyclopedia_2-setup.exe','¡Descubre los secretos místicos del Profesor!','La búsqueda mística de Katrina para encontrar a su profesor y descubrir secretos antiguos.','false',false,false,'Magic Encyclopedia 2');ag(117669340,'Wendy’s Wellness','/images/games/wendys_wellness/wendys_wellness81x46.gif',110083820,117709263,'2a13d41f-a86c-45cb-b6e5-f08892fcbd36','false','/images/games/wendys_wellness/wendys_wellness16x16.gif',false,11323,'/images/games/wendys_wellness/wendys_wellness100x75.jpg','/images/games/wendys_wellness/wendys_wellness179x135.jpg','/images/games/wendys_wellness/wendys_wellness320x240.jpg','false','/images/games/thumbnails_med_2/wendys_wellness130x75.gif','','Gestiona una cadena de gimnasios.','Gestiona tu propia cadena de 10 gimnasios completamente equipados.','true',false,false,'Wendys Wellness OL');ag(117680873,'Escape from Paradise 2: A Kingdom’s Quest','/images/games/escape_from_paradise2/escape_from_paradise281x46.gif',110012530,117720247,'','false','/images/games/escape_from_paradise2/escape_from_paradise216x16.gif',false,11323,'/images/games/escape_from_paradise2/escape_from_paradise2100x75.jpg','/images/games/escape_from_paradise2/escape_from_paradise2179x135.jpg','/images/games/escape_from_paradise2/escape_from_paradise2320x240.jpg','true','/images/games/thumbnails_med_2/escape_from_paradise2130x75.gif','/exe/escape_from_paradise_2-setup.exe?lc=es&ext=escape_from_paradise_2-setup.exe','Conviértete en el jefe de la tribu para encontrar el verdadero amor.','Conviértete en el jefe de la tribu de una sociedad extitosa para ganar la mano de tu verdadero amor.','false',false,false,'Escape from Paradise 2');ag(117693570,'Zuma’s Revenge Aventura','/images/games/zumas_revenge/zumas_revenge81x46.gif',1007,117734103,'','false','/images/games/zumas_revenge/zumas_revenge16x16.gif',false,11323,'/images/games/zumas_revenge/zumas_revenge100x75.jpg','/images/games/zumas_revenge/zumas_revenge179x135.jpg','/images/games/zumas_revenge/zumas_revenge320x240.jpg','true','/images/games/thumbnails_med_2/zumas_revenge130x75.gif','/exe/zumas_revenge-setup.exe?lc=es&ext=zumas_revenge-setup.exe','¡Enfréntate a los tikis!','Enfréntate a los tikis, con habilidad anfibia, en esta secuela de explosión de bolas.','false',false,false,'Zumas Revenge');ag(117700587,'Superior Save','/images/games/superior_save/superior_save81x46.gif',1007,117741880,'','false','/images/games/superior_save/superior_save16x16.gif',false,11323,'/images/games/superior_save/superior_save100x75.jpg','/images/games/superior_save/superior_save179x135.jpg','/images/games/superior_save/superior_save320x240.jpg','true','/images/games/thumbnails_med_2/superior_save130x75.gif','/exe/superior_save-setup.exe?lc=es&ext=superior_save-setup.exe','Han secuestrado a tu jefe, ¡rescátalo!','¡Un thriller de objetos ocultos para rescatar a tu jefe secuestrado!','false',false,false,'Superior Save');ag(117701833,'Cake Mania Main Street','/images/games/CakeMania_MainStreet/CakeMania_MainStreet81x46.gif',110012530,117742537,'','false','/images/games/CakeMania_MainStreet/CakeMania_MainStreet16x16.gif',false,11323,'/images/games/CakeMania_MainStreet/CakeMania_MainStreet100x75.jpg','/images/games/CakeMania_MainStreet/CakeMania_MainStreet179x135.jpg','/images/games/CakeMania_MainStreet/CakeMania_MainStreet320x240.jpg','false','/images/games/thumbnails_med_2/CakeMania_MainStreet130x75.gif','/exe/cake_mania_4-setup.exe?lc=es&ext=cake_mania_4-setup.exe','¡Compra y gestiona las tiendas Bakersfield!','¡Ayuda a Jill y a sus amigos a comprar, gestionar y actualizar 4 tiendas Bakersfield!','false',false,false,'Cake Mania 4');ag(117703647,'Aztec Tribe','/images/games/aztec_tribe/aztec_tribe81x46.gif',110012530,117744727,'','false','/images/games/aztec_tribe/aztec_tribe16x16.gif',false,11323,'/images/games/aztec_tribe/aztec_tribe100x75.jpg','/images/games/aztec_tribe/aztec_tribe179x135.jpg','/images/games/aztec_tribe/aztec_tribe320x240.jpg','true','/images/games/thumbnails_med_2/aztec_tribe130x75.gif','/exe/aztec_tribe-setup.exe?lc=es&ext=aztec_tribe-setup.exe','¡Construye una civilización superior!','¡Construye una civilización superior y defiéndete de los atacantes de los aztecas!','false',false,false,'Aztec Tribe');ag(117753307,'Fishdom: Spooky Splash™','/images/games/fishdom_spooky_splash/fishdom_spooky_splash81x46.gif',1007,117794137,'','false','/images/games/fishdom_spooky_splash/fishdom_spooky_splash16x16.gif',false,11323,'/images/games/fishdom_spooky_splash/fishdom_spooky_splash100x75.jpg','/images/games/fishdom_spooky_splash/fishdom_spooky_splash179x135.jpg','/images/games/fishdom_spooky_splash/fishdom_spooky_splash320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_spooky_splash130x75.gif','/exe/fishdom_spooky_splash-setup.exe?lc=es&ext=fishdom_spooky_splash-setup.exe','¡Pásatelo de miedo!','Resuelve rompecabezas para crear un acuario terrorífico. ¡Pásatelo de miedo!','false',false,false,'Fishdom Spooky Splash');ag(117762797,'Kelly Green: Garden Queen','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen81x46.gif',110012530,117804437,'','false','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen16x16.gif',false,11323,'/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen100x75.jpg','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen179x135.jpg','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen320x240.jpg','false','/images/games/thumbnails_med_2/KellyGreen_GardenQueen130x75.gif','/exe/kelly_green-setup.exe?lc=es&ext=kelly_green-setup.exe','De chica de ciudad a gurú de la jardinería','Conviértete en un experto en viveros, deja tu vida de urbanita y conviértete en un gurú de 