Greasy Fork is available in English.

GN_FirstCampaignMarkers

ЧГК для первой кампании

// ==UserScript==
// @name        GN_FirstCampaignMarkers
// @namespace   Gradient
// @description ЧГК для первой кампании
// @include     http://heroes-guide.ru/images/upload/5e07866d.jpeg
// @version     1.0.2
// ==/UserScript==

"use strict";

//----------------------------------------------------------------------------//

(function(){ // wrapper start
  
//----------------------------------------------------------------------------//
  
var img = document.querySelector('img');
img.className = '';
img.width = 1280;
img.height = 720;
  
var e_m = {
  dt_hero          : 1,
  knight_hero      : 2,
  elven_hero       : 3,
  amphibian_hero   : 4,
  savage_treant    : 5,
  forest_keeper    : 6,
  monastery_cellar : 7,
  hided_mages      : 8,
  hided_dragons    : 9,
  empire_guards    : 10,
  hermit           : 11,
  fight_for_ship   : 12,
  boarding         : 13,
  three_thieves    : 14,
  two_heroes       : 15,
  robbers_leader   : 16,
  arsenal          : 17,
  last_fight       : 18
};
  
var descriptors = get_descriptors();
  
descriptors = descriptors.filter(function(current){
  return current.campaign == 'first';
});
                 
var markers = [
  new Marker(e_m.dt_hero, 525, 274, 'Разбойник-демон', 'Герой на воровском поле (жертва)'),
  new Marker(e_m.knight_hero, 503, 369, 'Разбойник-рыцарь', 'Герой на воровском поле (жертва)'),
  new Marker(e_m.elven_hero, 430, 435, 'Разбойник-ЭЗ', 'Герой на воровском поле (жертва)'),
  new Marker(e_m.amphibian_hero, 470, 589, 'Герой-амфибия', 'Герой на дуэльном поле'),
  new Marker(e_m.savage_treant, 629, 279, 'Обитатели рощи', 'Жирные стеки нимф и немного диких энтов'),
  new Marker(e_m.forest_keeper, 706, 239, 'Хранитель рощи', 'Герой на дуэльном поле'),
  new Marker(e_m.monastery_cellar, 828, 268, 'В подвалах монастыря', 'Герой на дуэльном поле'),
  new Marker(e_m.hided_mages, 613, 596, 'Тайник магов', 'Тонна магов по углам'),
  new Marker(e_m.hided_dragons, 686, 602, 'Тайник драконов', 'Тонна драконов по центральным клеткам'),
  new Marker(e_m.empire_guards, 905, 290, 'Имперская стража', 'Жирные стеки латов и немного паладинов'),
  new Marker(e_m.hermit, 731, 337, 'Нападение отшельника', 'Герой-хаосит'),
  new Marker(e_m.fight_for_ship, 990, 495, 'Битва за корабль', 'Герой-пират на земле'),
  new Marker(e_m.boarding, 1110, 470, 'Абордаж', 'Герой-пират на корабле'),
  new Marker(e_m.three_thieves, 1270, 450, 'Разбойники', '3 героя играбельных фракций'),
  new Marker(e_m.two_heroes, 1355, 505, 'Древний обелиск', '2 героя из прошлого'),
  new Marker(e_m.robbers_leader, 1445, 400, 'Главарь разбойников', 'Мобы с боссом'),
  new Marker(e_m.arsenal, 780, 597, 'Арсенал гномов', 'Тонна стрелков по углам и рукопашников по центральным'),
  new Marker(e_m.last_fight, 1390, 320, 'Лагерь разбойников', 'Мобы с боссом')
];                 
  
var fractions = [
  new Fraction(0, 0, ''),
  new Fraction(1, 0, 'Рыцарь'),
  new Fraction(1, 1, 'Рыцарь света'),
  new Fraction(2, 0, 'Некромант'),
  new Fraction(2, 1, 'Некромант - повелитель смерти'),
  new Fraction(3, 0, 'Маг'),
  new Fraction(3, 1, 'Маг-разрушитель'),
  new Fraction(4, 0, 'Эльф'),
  new Fraction(4, 1, 'Эльф-заклинатель'),
  new Fraction(5, 0, 'Варвар'),
  new Fraction(5, 1, 'Варвар крови'),
  new Fraction(5, 2, 'Варвар-шаман'),
  new Fraction(6, 0, 'Темный эльф'),
  new Fraction(6, 1, 'Темный эльф-укротитель'),
  new Fraction(7, 0, 'Демон'),
  new Fraction(7, 1, 'Демон тьмы'),
  new Fraction(8, 0, 'Гном'),
  new Fraction(9, 0, 'Степной варвар')
];
  
var current_f = 0;
var current_c = 0;
var current_l = 0;
  
//----------------------------------------------------------------------------//
  
draw_titles();
draw_fraction_select();
draw_level_select();
draw_markers();
  
//----------------------------------------------------------------------------//
  
function draw_titles(){
  var div = document.createElement('div');
  div.style.position = 'fixed';
  div.style.top      = '130px';
  div.style.left     = '10px';
  
  document.body.appendChild(div);
  div.appendChild(document.createTextNode("Фракция: "));
  
  div = document.createElement('div');
  div.style.position = 'fixed';
  div.style.top      = '130px';
  div.style.left     = '220px';
  
  document.body.appendChild(div);
  div.appendChild(document.createTextNode("Уровень: "));
}
  
//----------------------------------------------------------------------------//
  
function draw_fraction_select(){
  var div = document.createElement('div');
  div.style.position = 'fixed';
  div.style.top      = '150px';
  div.style.left     = '10px';
  
  document.body.appendChild(div);
  
  var select = document.createElement('select');
  select.style.width = '200px';
  select.addEventListener('change', function(e){
    var current = select.options[select.selectedIndex].value;
    current_f = +current[0];
    current_c = +current[1];
    
    draw_descriptors();
  });
  div.appendChild(select);
  
  fractions.forEach(function(current){
    var option = document.createElement('option');
    option.setAttribute('value', current.f + '' + current.c);
    option.appendChild(document.createTextNode(current.name));

    select.appendChild(option);
  });
}
  
//----------------------------------------------------------------------------//
  
function draw_level_select(){
  var div = document.createElement('div');
  div.style.position = 'fixed';
  div.style.top      = '150px';
  div.style.left     = '220px';
  
  document.body.appendChild(div);
  
  var select = document.createElement('select');
  select.style.width = '50px';
  select.addEventListener('change', function(e){
    current_l = +select.options[select.selectedIndex].value;

    draw_descriptors();
  });
  div.appendChild(select);
  
  var levels = [];
  descriptors.forEach(function(current){
    levels.push(current.lvl);
  });
  
  levels = levels.filter(function(item, pos, self) {
    return self.indexOf(item) == pos;
  });
  
  var option = document.createElement('option');
  option.setAttribute('value', '0');
  select.appendChild(option);

  levels.forEach(function(current){
    var option = document.createElement('option');
    option.setAttribute('value', current);
    option.appendChild(document.createTextNode(current));

    select.appendChild(option);
  });
}
  
//----------------------------------------------------------------------------//
  
function draw_markers(){
  markers.forEach(function(current){
    draw_marker(current);
  })
}
  
//----------------------------------------------------------------------------// 
  
function clear_markers()
{
  var divs = document.querySelectorAll("div[id*=GN_Marker]");

  for(var i = 0; i < divs.length; ++i)
  {
    divs[i].style.zIndex = 1;
    show_el(divs[i].firstChild.firstChild.lastChild.firstChild, false);
  }
}
  
//----------------------------------------------------------------------------// 
  
function draw_marker(obj){
  var div = document.createElement('div');
  div.id = 'GN_Marker' + obj.id;
  
  div.style.position = 'fixed';
  div.style.top      = obj.y + 'px';
  div.style.left     = obj.x + 'px';
  
  document.body.appendChild(div);
  
  var table = document.createElement('table');
  div.appendChild(table);
  
  var tr = document.createElement('tr');
  table.appendChild(tr);
  
  var td = document.createElement('td');
  tr.appendChild(td);
  
  var marker = document.createElement('font');
  marker.textContent    = 'ʘ';
  marker.style.fontSize = '50px';
  marker.style.color    = '#FF0000';
  td.appendChild(marker);
  td.style.verticalAlign = 'top';
  
  td = document.createElement('td');
  tr.appendChild(td);
  
  var hint_table = document.createElement('table');
  td.appendChild(hint_table);
  
  tr = document.createElement('tr');
  hint_table.appendChild(tr);
  
  td = document.createElement('td');
  td.style.backgroundColor = 'white';
  tr.appendChild(td);
  
  var hint = document.createElement('font');
  hint.textContent    = obj.sdesc;
  hint.id             = 'GN_Font' + obj.id;
  hint.style.fontSize = '16px';
  hint.style.color    = 'black';
  td.appendChild(hint);
  
  td.appendChild(document.createElement('br'));
  
  hint = document.createElement('font');
  hint.textContent    = obj.desc;
  hint.style.fontSize = '16px';
  hint.style.color    = 'black';
  td.appendChild(hint);
  
  td.appendChild(document.createElement('br'));
  
  td = document.createElement('td');
  td.setAttribute('align', 'center');
  td.style.width           = '16px';
  td.textContent           = 'x';
  td.style.backgroundColor = 'red';
  td.style.fontSize        = '16px';
  td.title                 = 'Закрыть окно';
  td.addEventListener('click', function(e){
    show_el(hint_table, false);
  });
  tr.appendChild(td);
  
  show_el(hint_table, false);
  
  div.addEventListener('mouseover', function(e){
    clear_markers();
    div.style.zIndex = 10;
    show_el(hint_table, true);
  });
}
  
//----------------------------------------------------------------------------// 
  
function draw_descriptors(){
  clear_old_descriptors();
  
  var filtered = descriptors.filter(function(current){
    return current.c == current_c && current.f == current_f && (!current_l || current.lvl == current_l);
  });
  
  filtered.forEach(function(current){
    draw_descriptor(current);
  });
}
  
//----------------------------------------------------------------------------//  
  
function draw_descriptor(obj){
  var hint = document.querySelector('font[id="GN_Font' + obj.mid + '"]');
  
  var a = hint.parentNode.querySelector('a');
  if(a)
    hint.parentNode.appendChild(document.createElement('br'));
    
  var txt = document.createElement('font');
  txt.textContent    = obj.nick + '[' + obj.lvl + ']' + (obj.result ? '(В)' : '(П)') + ':';
  txt.style.fontSize = '16px';
  txt.style.color    = 'black';
  hint.parentNode.appendChild(txt);
  
  a = document.createElement('a');
  a.href = 'http://www.heroeswm.ru/war.php?warid=' + obj.battle + '&lt';
  a.textContent = 'Ссылка на бой';
  hint.parentNode.appendChild(a);
}
  
//----------------------------------------------------------------------------// 
  
function clear_old_descriptors(){
  var markers = document.querySelectorAll('font[id*="GN_Font"]');
  
  for(var i = 0; i < markers.length; ++i)
    clear_marker(markers[i]);
}
  
//----------------------------------------------------------------------------// 
  
function clear_marker(obj){
  var parent = obj.parentNode;
  
  while(parent.childElementCount > 4)
    parent.removeChild(parent.lastChild);
}
  
//----------------------------------------------------------------------------//

function show_el(el, visible){
  el.style.display = visible ? '' : 'none';
}

//----------------------------------------------------------------------------// 
    
function Fraction(f_, c_, name_){
  this.f    = +f_;
  this.c    = +c_;
  this.name = name_;
}
 
//----------------------------------------------------------------------------// 

function Descriptor(marker_id_, f_, c_, lvl_, nick_, result_, battle_, campaign_){
  this.mid      = marker_id_;
  this.f        = +f_;
  this.c        = +c_;
  this.lvl      = +lvl_;
  this.nick     = nick_;
  this.result   = result_;
  this.battle   = battle_;
  this.campaign = campaign_;
}
  
//----------------------------------------------------------------------------// 
    
function Marker(id_, x_, y_, sdesc_, desc_){
  this.id    = id_;
  this.x     = +x_ - 25;
  this.y     = +y_ - 25;
  this.sdesc = sdesc_;
  this.desc  = desc_;
}
  
//----------------------------------------------------------------------------// 
  
function get_descriptors()
{
  return [
    new Descriptor(e_m.dt_hero, 7, 0, 20, 'Gradient', false, '828532014&show_for_all=ec7ff9839f', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 20, 'Gradient', true, '828531573&show_for_all=3e9021193b', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 20, 'Gradient', true, '828324630&show_for_all=e780655d6f', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 20, 'Gradient', true, '828324188&show_for_all=bbb0f0a059', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 20, 'Gradient', true, '828323903&show_for_all=887855c0d7', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 20, 'Gradient', true, '828323636&show_for_all=5b38333610', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 20, 'Gradient', true, '828323323&show_for_all=882df9a259', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 20, 'Gradient', false, '828322680&show_for_all=0a161cea0a', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 20, 'Gradient', true, '828322396&show_for_all=de3f09967f', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 20, 'Gradient', true, '828322205&show_for_all=342bedbed2', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 20, 'Gradient', true, '828321956&show_for_all=61c79c1cb1', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 20, 'Gradient', true, '828321446&show_for_all=32565638b7', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 20, 'Gradient', true, '828321201&show_for_all=94522803e9', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 20, 'Gradient', true, '828321013&show_for_all=d2dba3e084', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 20, 'Gradient', true, '828320639&show_for_all=fc4e87c590', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 20, 'Gradient', false, '828319904&show_for_all=d07446aa98', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 20, 'Gradient', true, '828319447&show_for_all=e0cad4db4a', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 20, 'Gradient', true, '828318980&show_for_all=5bd8bc773a', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 20, 'Gradient', true, '828318395&show_for_all=dd61ddb845', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 20, 'Gradient', true, '828317987&show_for_all=e9becf6c05', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 20, 'Gradient', true, '828317649&show_for_all=9346a1bfba', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 20, 'Gradient', true, '828316481&show_for_all=95e25bc65a', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 20, 'Gradient', false, '807357402&show_for_all=6eaf870837', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 20, 'Gradient', true, '807357104&show_for_all=d832cb71ae', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 20, 'Gradient', true, '807356749&show_for_all=9fdc06dca3', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 20, 'Gradient', true, '807356504&show_for_all=b907c4d0e2', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 20, 'Gradient', false, '807356310&show_for_all=c92fdbce4c', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Gradient', true, '788259390&show_for_all=89ae1b6100', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Gradient', false, '788254249&show_for_all=29c68e01cc', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Gradient', false, '788251839&show_for_all=d0df761c5f', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'Gradient', true, '788250968&show_for_all=748379018f', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'Gradient', false, '788248241&show_for_all=eb625ef5e2', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Gradient', true, '788247530&show_for_all=486022dddc', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Gradient', false, '788245417&show_for_all=86c7310aaf', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'Gradient', true, '788244509&show_for_all=289a5e9205', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 19, 'Gradient', true, '788243326&show_for_all=b04d25d61e', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Gradient', true, '788242504&show_for_all=f239570984', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 19, 'Gradient', true, '788241881&show_for_all=379eb7f179', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Gradient', true, '788241489&show_for_all=f4d369f81c', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Gradient', true, '788241038&show_for_all=58d5c3386d', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Gradient', false, '788238568&show_for_all=d0f8c2bdae', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 19, 'Gradient', true, '788237729&show_for_all=24534470fb', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 19, 'Gradient', true, '788236408&show_for_all=f1d6176deb', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'Gradient', true, '788235456&show_for_all=5dafe96428', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'Gradient', true, '788234302&show_for_all=9ede90974f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Gradient', true, '788233650&show_for_all=62d8486c06', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 19, 'Gradient', true, '788232737&show_for_all=bfe22337e7', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Gradient', true, '788232062&show_for_all=ead4a6b89f', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 19, 'Gradient', true, '788231009&show_for_all=79db5f410e', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Gradient', true, '788229359&show_for_all=a23ddedb81', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Gradient', false, '788226159&show_for_all=595298de5b', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Gradient', false, '788223869&show_for_all=8b1ce8dbf9', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Gradient', true, '787399545&show_for_all=ee4ce11921', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Gradient', true, '787398408&show_for_all=d27cd98071', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Gradient', true, '787397796&show_for_all=47a8e85f11', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Gradient', true, '787397078&show_for_all=7552d4bea7', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Gradient', false, '787394921&show_for_all=e5b1c77071', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Gradient', false, '787393204&show_for_all=e8ba1c3928', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Gradient', true, '787392534&show_for_all=59feddaac3', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Gradient', true, '787392101&show_for_all=e52ac6512a', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Gradient', true, '787391791&show_for_all=ac0c7f72b4', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Gradient', true, '787391198&show_for_all=03dcd16fc5', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Gradient', false, '787389467&show_for_all=986273d552', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Gradient', true, '787388799&show_for_all=906cf42576', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Gradient', true, '787388542&show_for_all=f02387a972', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Gradient', true, '787387962&show_for_all=f00fd06993', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Gradient', true, '787387118&show_for_all=61e6a5c40d', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Gradient', true, '787385304&show_for_all=affeb80a38', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Gradient', true, '787384748&show_for_all=7c85710507', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Gradient', false, '787382768&show_for_all=069d654bcf', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Gradient', false, '787380883&show_for_all=b478796864', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Gradient', true, '787379867&show_for_all=04a3b0a45b', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Gradient', true, '787379133&show_for_all=5a6f15d4e2', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Gradient', true, '787378570&show_for_all=bdc9693c18', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Gradient', true, '787377874&show_for_all=50ec084c71', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Gradient', true, '787374485&show_for_all=ace3114a97', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Gradient', true, '787373802&show_for_all=36b8ecc97c', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Gradient', true, '787373275&show_for_all=13f3736746', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Gradient', true, '787372707&show_for_all=f11631d297', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Gradient', true, '787371780&show_for_all=994d091d14', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Gradient', true, '787370418&show_for_all=c3e4723d6b', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Gradient', true, '787370114&show_for_all=b4ed287129', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Gradient', true, '787369401&show_for_all=73bfad6e0b', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Gradient', true, '787368389&show_for_all=db4bc1fe2a', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Gradient', false, '787365707&show_for_all=adb1fbd60c', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Gradient', true, '787365202&show_for_all=20a1a483b5', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Gradient', true, '787358069&show_for_all=ed14fc69ec', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Gradient', false, '787356198&show_for_all=160a34a834', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Gradient', true, '787354825&show_for_all=45223a0c41', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Gradient', true, '787353602&show_for_all=02b491b1ab', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Gradient', true, '787351560&show_for_all=53c5650b89', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Gradient', true, '787350599&show_for_all=0bfca82f7c', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Gradient', true, '787349535&show_for_all=afd9a87666', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Gradient', true, '787348922&show_for_all=cb02e963a2', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Gradient', false, '787346969&show_for_all=826ef0942e', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Gradient', true, '787346347&show_for_all=20c4b40fce', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Gradient', true, '784300928&show_for_all=12f6767b12', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'Gradient', true, '784299001&show_for_all=bdeb203e97', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Gradient', true, '784298534&show_for_all=86f021a6c9', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Gradient', true, '784298083&show_for_all=090c157aa4', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Gradient', false, '784294926&show_for_all=949609dcce', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Gradient', true, '784286701&show_for_all=4e5a5ae014', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Gradient', true, '784286212&show_for_all=5e6fe109d3', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Gradient', true, '784285896&show_for_all=275ec14cd4', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Gradient', true, '784198464&show_for_all=33a79f8603', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Gradient', true, '784187648&show_for_all=75ab2c3e1b', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Gradient', true, '784183354&show_for_all=07046c98a3', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Gradient', true, '784181771&show_for_all=8e7ac68dce', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Gradient', false, '784179559&show_for_all=bc2e50f1a1', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Gradient', true, '784177512&show_for_all=4d100ac8cd', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Gradient', true, '784171799&show_for_all=7d7651179c', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Gradient', true, '784170460&show_for_all=88665f386b', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Gradient', false, '784168907&show_for_all=24d1c8fd1a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Gradient', true, '784166860&show_for_all=ba8620f3fb', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Gradient', true, '784166015&show_for_all=0b743b07a9', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Gradient', true, '784165318&show_for_all=534f1488ae', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Gradient', true, '784163806&show_for_all=1bc47fd4d5', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Gradient', true, '784151419&show_for_all=25e1deaba7', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'Gradient', true, '784150383&show_for_all=483116184e', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Gradient', true, '784148671&show_for_all=c51b4594fc', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Gradient', true, '784147824&show_for_all=5b4185250c', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Gradient', true, '784147124&show_for_all=7ad2e55f7d', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Gradient', true, '784146626&show_for_all=d10987a32e', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Gradient', true, '784146381&show_for_all=e9dab8f574', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Gradient', true, '784145787&show_for_all=432aa02d59', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Gradient', true, '784145012&show_for_all=53b745f61e', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Gradient', true, '784144666&show_for_all=9c5b22abf1', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Gradient', true, '784144197&show_for_all=a06711abf8', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Gradient', true, '784015113&show_for_all=4c69c7225d', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Gradient', true, '784012199&show_for_all=079b4e74d6', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Gradient', false, '784009889&show_for_all=532ac37abf', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Gradient', true, '784009584&show_for_all=29805bc2e2', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Gradient', true, '783400449&show_for_all=8aed2ad7c9', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Gradient', true, '780830646&show_for_all=093dce3651', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Gradient', true, '780185754&show_for_all=ffbad57026', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Gradient', true, '778541452&show_for_all=c7364e734a', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Gradient', true, '778540821&show_for_all=6be703bf85', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Gradient', false, '778537028&show_for_all=82676c0239', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Gradient', false, '778534450&show_for_all=b1662e325a', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Gradient', true, '777818352&show_for_all=dedd7a9fd6', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Gradient', true, '777494545&show_for_all=f5725a1bf5', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Gradient', true, '775861812&show_for_all=84deb6d3ea', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Gradient', false, '775861199&show_for_all=a34f14afc0', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Gradient', true, '775860834&show_for_all=8b40084549', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Gradient', true, '775860585&show_for_all=161a1e9c72', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Gradient', true, '775860418&show_for_all=05d87a207d', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Gradient', false, '775858391&show_for_all=0426d903de', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Gradient', true, '775858064&show_for_all=a9d587f6c8', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Gradient', true, '775857657&show_for_all=e2e62b2e7e', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Gradient', false, '775856714&show_for_all=ad2d34950f', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Gradient', false, '775855621&show_for_all=f7d771797d', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Gradient', false, '775854148&show_for_all=e0011258b4', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Gradient', true, '775853975&show_for_all=4d6d47d5ea', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Gradient', true, '775853652&show_for_all=40ca9de4cf', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Gradient', false, '775852261&show_for_all=d2e14ae8e4', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Gradient', true, '775850954&show_for_all=ad90e68b44', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Gradient', false, '775844906&show_for_all=b2f210152b', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Gradient', true, '775844247&show_for_all=fb738eeb68', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Gradient', false, '775842836&show_for_all=4596ae3b4a', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Gradient', false, '775782662&show_for_all=ef273ef7d8', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Gradient', false, '775778413&show_for_all=a86b0303a7', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Gradient', true, '775777808&show_for_all=88b6999249', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Gradient', true, '775777266&show_for_all=c1923ea4d6', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Gradient', true, '775776409&show_for_all=4b0223623c', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Gradient', false, '775774766&show_for_all=630a434cd4', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Gradient', false, '775772417&show_for_all=a29cf2ed32', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Gradient', false, '775770532&show_for_all=038a9fb7d2', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Gradient', true, '775769551&show_for_all=9159c77802', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Gradient', true, '775769176&show_for_all=7a23209e24', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Gradient', true, '775768802&show_for_all=122ad1b4b3', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Gradient', true, '775768019&show_for_all=2345fd16cf', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Gradient', true, '775767659&show_for_all=0b65fc3f77', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Gradient', false, '775764232&show_for_all=8140954928', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Gradient', true, '775717682&show_for_all=1f2eca7bb6', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Gradient', true, '775717503&show_for_all=65c3b7e1a5', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Gradient', false, '775717054&show_for_all=88c7001ec3', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Gradient', true, '775716948&show_for_all=3e75da293d', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Gradient', true, '775716851&show_for_all=a70b390e32', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Gradient', false, '775716525&show_for_all=e888b2cdae', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Gradient', true, '775716316&show_for_all=a280ed02ae', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Gradient', true, '775716223&show_for_all=3c5bf90339', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Gradient', true, '775716182&show_for_all=946062f292', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Gradient', true, '775716123&show_for_all=9f0151a5a5', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Gradient', true, '775715990&show_for_all=ab0fe09147', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Gradient', true, '775715888&show_for_all=e0147ac696', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Gradient', true, '775715808&show_for_all=77238e7d3c', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Gradient', true, '775715715&show_for_all=b53a875d69', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Gradient', true, '775715608&show_for_all=96ada79e45', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Gradient', true, '775715534&show_for_all=c19c08f55e', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Gradient', true, '775715470&show_for_all=721bb82a5c', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Gradient', false, '775715225&show_for_all=5da860d66e', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Gradient', true, '775715144&show_for_all=4fde50366c', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Gradient', true, '775715088&show_for_all=b3262fb229', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Gradient', true, '775715007&show_for_all=85b5ad40d3', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Gradient', true, '775713740&show_for_all=317f93fa78', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Gradient', true, '775713676&show_for_all=6e5a859bc2', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Gradient', false, '775713326&show_for_all=9c7b2b01e2', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'Asmadeuss', true, '792274070&show_for_all=43f10134e4', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'Asmadeuss', false, '792273580&show_for_all=f4c8f34e95', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'Asmadeuss', false, '792272747&show_for_all=18bf24cc83', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 18, 'Asmadeuss', true, '792270875&show_for_all=579d46adce', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 18, 'Asmadeuss', true, '792269808&show_for_all=a6ff3c7d77', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 18, 'Asmadeuss', true, '792269416&show_for_all=907bdded2c', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 18, 'Asmadeuss', true, '792268804&show_for_all=0f8640dc0a', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 18, 'Asmadeuss', true, '792268201&show_for_all=010f90eccd', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 18, 'Asmadeuss', false, '792267774&show_for_all=0f53a9d98c', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 18, 'Asmadeuss', true, '792267574&show_for_all=26e4a25b6c', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 18, 'Asmadeuss', true, '792267092&show_for_all=6ef5a5470d', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 18, 'Asmadeuss', true, '792265439&show_for_all=140aef404c', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 18, 'Asmadeuss', true, '792264918&show_for_all=4270d0a8e7', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'Asmadeuss', true, '792264523&show_for_all=eb9e8dccfe', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'Asmadeuss', false, '792264142&show_for_all=1fb63414a5', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 18, 'Asmadeuss', true, '792262863&show_for_all=62bb2ac303', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'Asmadeuss', true, '792261898&show_for_all=144af19f68', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'Asmadeuss', true, '792261429&show_for_all=f6c8b2f7da', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'Asmadeuss', false, '792261074&show_for_all=8b6d42c0d0', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'Asmadeuss', false, '792260843&show_for_all=04c616dbc0', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'Asmadeuss', false, '792260440&show_for_all=6a6bbddc2a', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 18, 'Asmadeuss', true, '792259699&show_for_all=551ffbc836', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'Asmadeuss', true, '792253229&show_for_all=e1d3f9c0e4', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'Asmadeuss', false, '792251943&show_for_all=d8bef6a55f', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 18, 'Asmadeuss', true, '792251689&show_for_all=eb57c68053', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 18, 'Asmadeuss', true, '792251191&show_for_all=ca1759630b', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Asmadeuss', true, '792250011&show_for_all=3450fd6632', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'Asmadeuss', true, '792249239&show_for_all=3dd22733da', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'Asmadeuss', false, '792248355&show_for_all=b6d3e2ed9d', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'Asmadeuss', false, '792246888&show_for_all=d1469a4571', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'Asmadeuss', false, '792242866&show_for_all=6b947db1e5', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 18, 'Asmadeuss', true, '792241466&show_for_all=3f14de59c8', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 18, 'Asmadeuss', false, '792241369&show_for_all=29f75a78c8', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 18, 'Asmadeuss', true, '792240905&show_for_all=ffa6683115', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 18, 'Asmadeuss', false, '792240496&show_for_all=c20fcceae8', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'Asmadeuss', true, '792239994&show_for_all=4108be23c1', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'Asmadeuss', false, '792239382&show_for_all=61dc1ae1b0', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 18, 'Asmadeuss', true, '792238917&show_for_all=ff784c3f9e', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 18, 'Asmadeuss', true, '792238510&show_for_all=8bf0b42d05', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'Asmadeuss', true, '792238236&show_for_all=4e886af0c0', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 18, 'Asmadeuss', true, '792237536&show_for_all=6bed98ba2e', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 18, 'Asmadeuss', true, '792236890&show_for_all=31954a1095', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 18, 'Asmadeuss', true, '792236390&show_for_all=52f26f492d', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 18, 'Asmadeuss', false, '792235568&show_for_all=5e51a3cd31', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 18, 'Asmadeuss', true, '792234866&show_for_all=0630cd130b', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 18, 'Asmadeuss', true, '792234563&show_for_all=010443f830', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 18, 'Asmadeuss', true, '792233187&show_for_all=42b355052b', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'Asmadeuss', true, '792232766&show_for_all=e7d5412397', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 18, 'Asmadeuss', true, '792232392&show_for_all=a39dcf2166', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 18, 'Asmadeuss', true, '792232136&show_for_all=8cec01ed7f', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 18, 'Asmadeuss', true, '792231773&show_for_all=17eabfdbe3', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 18, 'Asmadeuss', true, '792195240&show_for_all=52c71c543d', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 18, 'Asmadeuss', true, '792194216&show_for_all=4a27ae962e', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 18, 'Asmadeuss', true, '792193306&show_for_all=5a446297c7', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 18, 'Asmadeuss', true, '792191333&show_for_all=4d19edfc91', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 18, 'Asmadeuss', true, '792190418&show_for_all=fb568244f1', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 18, 'Asmadeuss', true, '792189341&show_for_all=32d4bdb0e8', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 18, 'Asmadeuss', true, '792188753&show_for_all=17a2a9f2fc', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Asmadeuss', true, '792188173&show_for_all=849e31692d', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'Asmadeuss', true, '792187323&show_for_all=0487038de0', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 18, 'Asmadeuss', true, '792186356&show_for_all=67f54afa10', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Asmadeuss', true, '792185886&show_for_all=a3c3ff820e', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Asmadeuss', false, '792185243&show_for_all=5f9b709f15', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Asmadeuss', false, '792184559&show_for_all=0408a36485', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'Asmadeuss', true, '792183582&show_for_all=a7fc8ba12b', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Asmadeuss', true, '792182703&show_for_all=42f28efe46', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Asmadeuss', false, '792182349&show_for_all=171217575a', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Asmadeuss', false, '792180947&show_for_all=6c690a3aa4', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Asmadeuss', true, '792179929&show_for_all=8ccc532fc4', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Asmadeuss', true, '792179198&show_for_all=0ac5b250f0', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Asmadeuss', false, '792177023&show_for_all=2944eede64', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'Asmadeuss', true, '792116583&show_for_all=bf9b9b9df6', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'Asmadeuss', true, '792109749&show_for_all=e3d3e013a0', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'Asmadeuss', true, '792108844&show_for_all=86b75609c8', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 18, 'Asmadeuss', true, '791213152&show_for_all=dd600ad76b', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 18, 'Asmadeuss', true, '791210515&show_for_all=b96e6d6b2e', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 18, 'Asmadeuss', false, '791208604&show_for_all=00e6363f83', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 18, 'Asmadeuss', true, '791207608&show_for_all=48edc68ade', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 18, 'Asmadeuss', true, '791206299&show_for_all=9e90fbef35', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 18, 'Asmadeuss', true, '791204527&show_for_all=a977e07c8f', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 18, 'Asmadeuss', true, '791203098&show_for_all=58062b5907', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 18, 'Asmadeuss', true, '791202609&show_for_all=c9adfbe7c3', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 18, 'Asmadeuss', true, '791201551&show_for_all=7a985319f1', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 18, 'Asmadeuss', true, '791199596&show_for_all=0d87f8d2e3', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 18, 'Asmadeuss', false, '791197546&show_for_all=303de4190c', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 18, 'Asmadeuss', false, '791196177&show_for_all=5e09be76cc', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 18, 'Asmadeuss', true, '791194589&show_for_all=9600182936', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 18, 'Asmadeuss', true, '791193374&show_for_all=ef40bb07d0', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 18, 'Asmadeuss', true, '791191327&show_for_all=35958e1a16', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 18, 'Asmadeuss', true, '791190228&show_for_all=cac88ecc1f', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 18, 'Asmadeuss', true, '791128016&show_for_all=491d5a4a95', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 18, 'Asmadeuss', true, '791125436&show_for_all=4bdf5f6156', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 18, 'Asmadeuss', true, '791123793&show_for_all=4bdd4bb146', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 18, 'Asmadeuss', true, '791122521&show_for_all=57caa3559d', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 18, 'Asmadeuss', true, '791120850&show_for_all=f6065c6b50', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 18, 'Asmadeuss', true, '787421278&show_for_all=e1032fdd7f', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 18, 'Asmadeuss', true, '787420101&show_for_all=c2206d13ea', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 18, 'Asmadeuss', true, '787419521&show_for_all=0daf8d619b', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 18, 'Asmadeuss', true, '787418615&show_for_all=c619bf9edb', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 18, 'Asmadeuss', true, '787417979&show_for_all=81279761b6', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 18, 'Asmadeuss', true, '787417238&show_for_all=058e9d39bb', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 18, 'Asmadeuss', false, '787416090&show_for_all=b44ecc364f', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 18, 'Asmadeuss', true, '787415847&show_for_all=a2a8e85a38', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 18, 'Asmadeuss', true, '787414956&show_for_all=f5ff97696e', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 18, 'Asmadeuss', true, '787414022&show_for_all=d328aa6d9c', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 18, 'Asmadeuss', true, '787413319&show_for_all=7eac4fba49', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 18, 'Asmadeuss', true, '787412836&show_for_all=020de5d29e', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 18, 'Asmadeuss', true, '787411746&show_for_all=0d9d52dc87', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 18, 'Asmadeuss', true, '787410930&show_for_all=7259a4bc24', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 18, 'Asmadeuss', true, '787410373&show_for_all=5409fb64be', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 18, 'Asmadeuss', true, '787409808&show_for_all=9fb1419cf8', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 18, 'Asmadeuss', true, '787409419&show_for_all=b124674f05', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 18, 'Asmadeuss', true, '787408907&show_for_all=44964ff27a', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 18, 'Asmadeuss', true, '787407950&show_for_all=1531dd0e74', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'Asmadeuss', true, '784450400&show_for_all=ed391314af', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 18, 'Asmadeuss', true, '784449530&show_for_all=ea2a778fa1', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 18, 'Asmadeuss', true, '784448659&show_for_all=552c71a12f', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 18, 'Asmadeuss', true, '784447761&show_for_all=33fbc7edae', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 18, 'Asmadeuss', true, '784446818&show_for_all=cd669f2561', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 18, 'Asmadeuss', true, '784443803&show_for_all=f6e4dbcbb2', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 18, 'Asmadeuss', true, '784443335&show_for_all=6502ecd041', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 18, 'Asmadeuss', true, '784442861&show_for_all=b4dfd5a68e', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 18, 'Asmadeuss', true, '784442191&show_for_all=1ab9f29b7c', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 18, 'Asmadeuss', true, '784441487&show_for_all=09b46d042d', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 18, 'Asmadeuss', true, '784440983&show_for_all=f197b9baec', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 18, 'Asmadeuss', true, '784440394&show_for_all=ff24c73d60', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 18, 'Asmadeuss', true, '784439863&show_for_all=ffec9dc947', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 18, 'Asmadeuss', true, '784439330&show_for_all=f7f2243b39', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 18, 'Asmadeuss', true, '784438517&show_for_all=68f1efe7d5', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 18, 'Asmadeuss', true, '784437953&show_for_all=068ba3d7c1', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 18, 'Asmadeuss', true, '784437411&show_for_all=6eda6e75fd', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 18, 'Asmadeuss', true, '784433515&show_for_all=0375056850', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 18, 'Asmadeuss', true, '781495384&show_for_all=0578077076', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 18, 'Asmadeuss', true, '781494130&show_for_all=aadd084589', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 18, 'Asmadeuss', true, '781493228&show_for_all=579e938456', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 18, 'Asmadeuss', true, '781491223&show_for_all=18c32ad041', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 18, 'Asmadeuss', true, '781489116&show_for_all=ea4a32edb4', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 18, 'Asmadeuss', true, '781487957&show_for_all=b7c83dcfac', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 18, 'Asmadeuss', true, '781487643&show_for_all=b8f43ab79b', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 18, 'Asmadeuss', true, '781486086&show_for_all=e0640abeca', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 18, 'Asmadeuss', true, '781484957&show_for_all=7d6f92dace', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 18, 'Asmadeuss', true, '781483930&show_for_all=052e18802b', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 18, 'Asmadeuss', true, '781482169&show_for_all=94701278ad', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 18, 'Asmadeuss', false, '781470771&show_for_all=86fb7acf9f', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 18, 'Asmadeuss', true, '781469415&show_for_all=69a13239f8', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 18, 'Asmadeuss', true, '781468017&show_for_all=ab432cb1ac', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 18, 'Asmadeuss', true, '781467211&show_for_all=442e8f015e', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 18, 'Asmadeuss', true, '781466056&show_for_all=47ae2aafd3', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 18, 'Asmadeuss', true, '781396243&show_for_all=b1469a50f8', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 18, 'Asmadeuss', true, '781395551&show_for_all=90245131cb', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 18, 'Asmadeuss', true, '781394300&show_for_all=ed94f237ff', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 18, 'Asmadeuss', true, '781183019&show_for_all=b8b82c7381', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 18, 'Asmadeuss', true, '781181678&show_for_all=e74fb39688', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Asmadeuss', true, '781181027&show_for_all=1ea94f3545', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Asmadeuss', false, '781180179&show_for_all=6b40f35bee', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 18, 'Asmadeuss', true, '781179515&show_for_all=e0a1e07c1c', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 18, 'Asmadeuss', true, '781179134&show_for_all=b200364a8b', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 18, 'Asmadeuss', true, '781178563&show_for_all=5802ed7bd3', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 18, 'Asmadeuss', true, '781178238&show_for_all=1fb73aae0d', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 18, 'Asmadeuss', true, '781177731&show_for_all=f16e3f5f3e', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Asmadeuss', true, '781176626&show_for_all=fd892bbb45', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Asmadeuss', false, '781175824&show_for_all=141f03bc01', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 18, 'Asmadeuss', true, '781174883&show_for_all=0bbcd74d2e', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 18, 'Asmadeuss', true, '781174033&show_for_all=f8dbc82c69', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 18, 'Asmadeuss', true, '781173254&show_for_all=b8e6d20778', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 18, 'Asmadeuss', true, '781172370&show_for_all=a45ca03536', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 18, 'Asmadeuss', true, '781171605&show_for_all=8ab1d7c1f5', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 18, 'Asmadeuss', true, '781170623&show_for_all=2f16743283', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 18, 'Asmadeuss', true, '781170041&show_for_all=f70d7ccd15', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 18, 'Asmadeuss', true, '781169498&show_for_all=4da36e5089', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 18, 'Asmadeuss', true, '781167536&show_for_all=4c2f24ebe3', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'Asmadeuss', true, '779476195&show_for_all=603b995318', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'Asmadeuss', false, '779475166&show_for_all=07ba0c2224', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'Asmadeuss', false, '779474559&show_for_all=b1b79baaa8', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'Asmadeuss', false, '779473133&show_for_all=f49e5131e3', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 18, 'Asmadeuss', true, '779471709&show_for_all=c70b151d62', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 18, 'Asmadeuss', false, '779470653&show_for_all=84e90e1ccf', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 18, 'Asmadeuss', true, '779467575&show_for_all=eeeb4b6994', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 18, 'Asmadeuss', true, '779467105&show_for_all=e0f0af516f', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 18, 'Asmadeuss', true, '779466327&show_for_all=eae3f70e05', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 18, 'Asmadeuss', false, '779465655&show_for_all=6c8887029b', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 18, 'Asmadeuss', false, '779464970&show_for_all=74467d8826', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 18, 'Asmadeuss', true, '779464263&show_for_all=1be79c0d9d', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 18, 'Asmadeuss', true, '779463776&show_for_all=2ff8edc3c5', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 18, 'Asmadeuss', true, '779463067&show_for_all=b3d0ffa3c1', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 18, 'Asmadeuss', false, '779462244&show_for_all=00096e2c3d', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 18, 'Asmadeuss', true, '779461129&show_for_all=67c94621f5', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 18, 'Asmadeuss', true, '779460301&show_for_all=bd4b413484', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 18, 'Asmadeuss', false, '779459568&show_for_all=d7e14b0474', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 18, 'Asmadeuss', true, '779458817&show_for_all=e610eef94c', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 18, 'Asmadeuss', false, '779454120&show_for_all=e3845844a8', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 18, 'Asmadeuss', false, '779452187&show_for_all=0ad6b8f5c2', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 18, 'Asmadeuss', true, '779451278&show_for_all=910557f700', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 18, 'Asmadeuss', true, '779450321&show_for_all=d02e5be1a0', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 18, 'Asmadeuss', true, '779449473&show_for_all=fe3f06e0a0', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 18, 'Asmadeuss', true, '779447996&show_for_all=dd79a9da28', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 18, 'Asmadeuss', true, '779447368&show_for_all=6d7c9c497e', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 18, 'Asmadeuss', false, '779384855&show_for_all=e7ddb3e26e', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 18, 'Asmadeuss', true, '779384618&show_for_all=44cc091bb0', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 18, 'Asmadeuss', true, '779384384&show_for_all=593f3e5b09', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 18, 'Asmadeuss', false, '779383421&show_for_all=ac17aa9c1e', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Asmadeuss', true, '776019926&show_for_all=435a6267a4', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Asmadeuss', false, '776019791&show_for_all=99ebf71c46', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Asmadeuss', false, '776019609&show_for_all=f9c01dedf0', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Asmadeuss', true, '776019412&show_for_all=6cf496baf7', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Asmadeuss', false, '776019257&show_for_all=86c1206ab9', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Asmadeuss', false, '776019054&show_for_all=0ca9bb0347', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 18, 'Asmadeuss', true, '776018892&show_for_all=c0c4bbf905', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 18, 'Asmadeuss', true, '776018736&show_for_all=19dd9c40de', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 18, 'Asmadeuss', true, '776018551&show_for_all=586567f833', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Asmadeuss', true, '776018355&show_for_all=c5b8087c47', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Asmadeuss', false, '776018140&show_for_all=a9b331a8ff', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 18, 'Asmadeuss', true, '776017982&show_for_all=22b2e7faf2', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Asmadeuss', true, '776017709&show_for_all=0ef3e89b92', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Asmadeuss', false, '776017503&show_for_all=e4a1b580ae', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Asmadeuss', false, '776017255&show_for_all=e2b5bb7565', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 18, 'Asmadeuss', true, '776016986&show_for_all=2c1f048146', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 18, 'Asmadeuss', true, '776016182&show_for_all=cb20ba8e23', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'Asmadeuss', true, '776015756&show_for_all=c5a39d6c84', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'Asmadeuss', false, '776001833&show_for_all=b626078ea7', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 18, 'Asmadeuss', true, '776000894&show_for_all=f46327370e', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 18, 'Asmadeuss', true, '775999657&show_for_all=f17a2749a4', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 18, 'Asmadeuss', true, '775999194&show_for_all=bb4ccbed1e', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 18, 'Asmadeuss', true, '775998016&show_for_all=bdcbf47eb3', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 18, 'Asmadeuss', true, '775997230&show_for_all=3101f81e67', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 18, 'Asmadeuss', true, '775994640&show_for_all=35a901000b', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'Asmadeuss', true, '775994003&show_for_all=b3ba2c6363', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Asmadeuss', true, '775927620&show_for_all=e41dee6f37', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'Asmadeuss', true, '775926622&show_for_all=7fe61591c8', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'Asmadeuss', true, '775926094&show_for_all=11480fa41b', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'Asmadeuss', true, '775925540&show_for_all=c6ff3fc843', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'Asmadeuss', true, '775924650&show_for_all=d4a235160d', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'Asmadeuss', false, '775923873&show_for_all=518ea718e7', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Asmadeuss', true, '775923290&show_for_all=6423de9331', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'Asmadeuss', true, '775922996&show_for_all=5260cdbcba', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'Asmadeuss', true, '775922399&show_for_all=1a44d9823e', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'Asmadeuss', true, '775921862&show_for_all=a71c8e35cf', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Asmadeuss', true, '775921438&show_for_all=35bb5a69a6', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'Asmadeuss', true, '775920976&show_for_all=0bb261247d', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'Asmadeuss', true, '775920589&show_for_all=daa3e7c8f4', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Asmadeuss', true, '775919982&show_for_all=93233b8d15', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Asmadeuss', true, '775919235&show_for_all=1856d8136b', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Asmadeuss', false, '775918591&show_for_all=7896538e79', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Asmadeuss', false, '775918158&show_for_all=001f7cce5c', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Asmadeuss', false, '775917813&show_for_all=bea5b8d38a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'Asmadeuss', true, '775917326&show_for_all=e57aea9e61', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'Asmadeuss', false, '775916276&show_for_all=f4166c4ab3', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'Asmadeuss', true, '775915638&show_for_all=03b3281fdb', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'Asmadeuss', true, '775915232&show_for_all=c9f144e3b2', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'Asmadeuss', true, '775914915&show_for_all=2a528093ca', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'Asmadeuss', true, '775852097&show_for_all=5e69513d79', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'Asmadeuss', true, '775851708&show_for_all=fcef93c9af', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 18, 'Asmadeuss', true, '775851415&show_for_all=caf69c8b09', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'Asmadeuss', true, '775851110&show_for_all=c2300f36a8', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'Asmadeuss', true, '775850478&show_for_all=2ff4d7ca9e', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'Asmadeuss', true, '775849167&show_for_all=263b4a30c5', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 18, 'Asmadeuss', true, '775848954&show_for_all=0a91b76f31', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'Asmadeuss', true, '775848721&show_for_all=5c835ea5c6', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 18, 'Asmadeuss', true, '775848230&show_for_all=b34407a9c0', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Asmadeuss', true, '775847836&show_for_all=603f49d332', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Asmadeuss', false, '775847432&show_for_all=ee082e1f9c', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Asmadeuss', false, '775847171&show_for_all=ec748474a6', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'Asmadeuss', true, '775846695&show_for_all=1cbbf47066', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'Asmadeuss', true, '775846280&show_for_all=5d25a8618d', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'Asmadeuss', true, '775845692&show_for_all=4aa34d0482', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'Asmadeuss', false, '775844692&show_for_all=f22142c002', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Asmadeuss', true, '775844261&show_for_all=83740f68b3', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'Asmadeuss', true, '775843819&show_for_all=8e5bde65ca', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 18, 'Asmadeuss', true, '775843207&show_for_all=88edc2afe9', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'Asmadeuss', true, '775842393&show_for_all=1b3b27e25c', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'Asmadeuss', true, '775842071&show_for_all=f8d042a22d', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'Asmadeuss', true, '765435429&show_for_all=4c5d3c0c29', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 18, 'Asmadeuss', true, '765433757&show_for_all=6bd39b386b', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'Asmadeuss', true, '765432808&show_for_all=2819a2d14f', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 18, 'Asmadeuss', true, '765431094&show_for_all=bfd5ccf75b', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 18, 'Asmadeuss', true, '765429687&show_for_all=70143c37f4', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'Asmadeuss', true, '765427281&show_for_all=625a7f9788', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 18, 'Asmadeuss', true, '765426760&show_for_all=10e77f6268', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'Asmadeuss', true, '765425878&show_for_all=ac1b07b8c1', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'Asmadeuss', true, '765422593&show_for_all=40ccd2e091', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 18, 'Asmadeuss', true, '765421452&show_for_all=ca714e5ce8', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 18, 'Asmadeuss', true, '765420155&show_for_all=6a5394eec5', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 18, 'Asmadeuss', true, '765409709&show_for_all=75bf894592', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 18, 'Asmadeuss', true, '765408640&show_for_all=26a3e642e6', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'Asmadeuss', true, '765407468&show_for_all=6f807986e2', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'Asmadeuss', false, '765402221&show_for_all=fd5063c8b0', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 18, 'Asmadeuss', true, '765399716&show_for_all=3c327a1a9c', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'Asmadeuss', true, '765398756&show_for_all=cebb3b8f52', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Asmadeuss', true, '765398087&show_for_all=b643a33dcb', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Asmadeuss', true, '765396907&show_for_all=c7cc72f74c', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'Asmadeuss', true, '765193612&show_for_all=6abe9b0502', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'Asmadeuss', false, '765189141&show_for_all=7ab197f983', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 18, 'Asmadeuss', true, '765187668&show_for_all=b04722b3f3', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'Asmadeuss', true, '765186850&show_for_all=9ed7108726', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 18, 'Asmadeuss', true, '765184756&show_for_all=42962d2287', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 18, 'Asmadeuss', true, '765183534&show_for_all=ba371582cf', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'Asmadeuss', true, '765182047&show_for_all=d3e2771948', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'Asmadeuss', false, '765173539&show_for_all=5ea6ff4cef', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 18, 'Asmadeuss', true, '765172520&show_for_all=a70c760e29', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'Asmadeuss', true, '765171588&show_for_all=f2d2879304', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'Asmadeuss', true, '765169161&show_for_all=438a6aebab', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 18, 'Asmadeuss', true, '765161863&show_for_all=8e32de4f53', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 18, 'Asmadeuss', true, '765160655&show_for_all=bef667add0', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 18, 'Asmadeuss', true, '765152286&show_for_all=f9471c1a97', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 18, 'Asmadeuss', true, '765140820&show_for_all=b0403761c5', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'Asmadeuss', true, '765139513&show_for_all=ceac17d878', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 18, 'Asmadeuss', true, '765133001&show_for_all=f7acc1ad66', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 18, 'Asmadeuss', false, '765046869&show_for_all=0e9734d54b', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'Asmadeuss', true, '765046611&show_for_all=beb84bbdbb', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Asmadeuss', true, '765046308&show_for_all=21ab0fb3e0', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Asmadeuss', true, '765045931&show_for_all=2b841622e4', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 18, 'Asmadeuss', true, '762867336&show_for_all=f191c60c3b', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 18, 'Asmadeuss', true, '762866232&show_for_all=db57b65083', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 18, 'Asmadeuss', true, '762865547&show_for_all=9b969b9d3f', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 18, 'Asmadeuss', true, '762864315&show_for_all=e848d852ba', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 18, 'Asmadeuss', true, '762862653&show_for_all=9a11d2ceb8', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 18, 'Asmadeuss', true, '762861924&show_for_all=37ca3be07e', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 18, 'Asmadeuss', true, '762861415&show_for_all=35b7f75a2c', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 18, 'Asmadeuss', true, '762860641&show_for_all=76c5d6aa2a', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 18, 'Asmadeuss', true, '762859053&show_for_all=afd98fe79f', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 18, 'Asmadeuss', true, '762858222&show_for_all=1568b92880', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 18, 'Asmadeuss', true, '762857312&show_for_all=6e55e32ae2', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 18, 'Asmadeuss', false, '762854119&show_for_all=09fff54c32', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 18, 'Asmadeuss', true, '762852569&show_for_all=6622a4d731', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 18, 'Asmadeuss', true, '762851999&show_for_all=3280b7266d', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 18, 'Asmadeuss', true, '762851019&show_for_all=1c49bbb595', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 18, 'Asmadeuss', true, '762849534&show_for_all=265cb4ffd0', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 18, 'Asmadeuss', true, '762848825&show_for_all=0100a2896c', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 18, 'Asmadeuss', true, '762847797&show_for_all=3143748886', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 18, 'Asmadeuss', true, '762846380&show_for_all=aca254b1bd', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 18, 'Asmadeuss', true, '762601499&show_for_all=b3fc912a71', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 18, 'Asmadeuss', true, '762600287&show_for_all=cad0558841', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 18, 'Asmadeuss', true, '762599325&show_for_all=ce249d68ab', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 18, 'Asmadeuss', true, '762597729&show_for_all=9e06e47d91', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 18, 'Asmadeuss', true, '762596322&show_for_all=6351c56bf3', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 18, 'Asmadeuss', true, '762595155&show_for_all=2033abe80d', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 18, 'Asmadeuss', true, '762594380&show_for_all=f9ae076289', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 18, 'Asmadeuss', true, '762593327&show_for_all=b39d8e1fa8', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 18, 'Asmadeuss', true, '762592444&show_for_all=19956257b6', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 18, 'Asmadeuss', true, '762591250&show_for_all=e43a662923', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 18, 'Asmadeuss', true, '762590608&show_for_all=5af1ce41a1', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 18, 'Asmadeuss', true, '762589544&show_for_all=cee4011aa7', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 18, 'Asmadeuss', true, '762588496&show_for_all=7cc39e985a', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 18, 'Asmadeuss', true, '762587765&show_for_all=0eec2adcc4', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 18, 'Asmadeuss', true, '762586347&show_for_all=32b716e528', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 18, 'Asmadeuss', true, '762585728&show_for_all=024194a625', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 18, 'Asmadeuss', true, '762584900&show_for_all=9bce10b915', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 18, 'Asmadeuss', true, '762583602&show_for_all=75051b5fb5', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 18, 'Asmadeuss', true, '762576829&show_for_all=23d8ed3ced', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 18, 'Asmadeuss', true, '762574997&show_for_all=fb189b46ef', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 18, 'Asmadeuss', true, '762574042&show_for_all=448fb0c420', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 18, 'Asmadeuss', true, '762572840&show_for_all=afd8d86df9', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 18, 'Asmadeuss', true, '762571420&show_for_all=b55962c11f', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 18, 'Asmadeuss', true, '762570101&show_for_all=e4cbce3b49', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 18, 'Asmadeuss', true, '762569085&show_for_all=9b21167666', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 18, 'Asmadeuss', true, '762551101&show_for_all=93746face1', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 18, 'Asmadeuss', true, '762549760&show_for_all=7f55d9728a', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 18, 'Asmadeuss', true, '762548236&show_for_all=c23b684948', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 18, 'Asmadeuss', true, '762547503&show_for_all=ea3f15277d', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 18, 'Asmadeuss', true, '762528933&show_for_all=0b4f6be426', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 18, 'Asmadeuss', true, '762528037&show_for_all=8e94cf6786', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 18, 'Asmadeuss', true, '762527263&show_for_all=fbed22af13', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 18, 'Asmadeuss', true, '762506016&show_for_all=3f04324083', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 18, 'Asmadeuss', true, '762505389&show_for_all=ed78079d63', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 18, 'Asmadeuss', true, '762504732&show_for_all=6b2dd254db', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 18, 'Asmadeuss', true, '762503737&show_for_all=21d419dfd5', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'Asmadeuss', true, '762382653&show_for_all=0beb35ef5a', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 18, 'Asmadeuss', true, '762382135&show_for_all=656f0cc296', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', true, '762381594&show_for_all=1d8ef545cf', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 18, 'Asmadeuss', true, '762380945&show_for_all=90854552bd', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 18, 'Asmadeuss', true, '762380145&show_for_all=dbf6a5b5f1', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 18, 'Asmadeuss', true, '762379348&show_for_all=406b395f31', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 18, 'Asmadeuss', true, '762379060&show_for_all=25148c4f91', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 18, 'Asmadeuss', true, '762378425&show_for_all=f46af37bbf', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 18, 'Asmadeuss', true, '762377734&show_for_all=4c27438d3d', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 18, 'Asmadeuss', true, '762377219&show_for_all=eecad70103', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 18, 'Asmadeuss', true, '762376593&show_for_all=6bfda85863', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 18, 'Asmadeuss', true, '762375992&show_for_all=b2024f7a20', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 18, 'Asmadeuss', false, '762375341&show_for_all=30d8045e4c', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 18, 'Asmadeuss', true, '762374633&show_for_all=32de90f221', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 18, 'Asmadeuss', true, '762374170&show_for_all=476d254392', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 18, 'Asmadeuss', true, '762373633&show_for_all=77a30205d3', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 18, 'Asmadeuss', true, '762372875&show_for_all=707c5a0808', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 18, 'Asmadeuss', true, '762372232&show_for_all=56a2092455', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 18, 'Asmadeuss', true, '762371606&show_for_all=190c6f668f', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'Asmadeuss', true, '761469895&show_for_all=2ccef7b1d6', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 18, 'Asmadeuss', true, '761466550&show_for_all=51f55ac8fe', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'Asmadeuss', true, '761463816&show_for_all=ced0bcd1f0', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'Asmadeuss', true, '761460855&show_for_all=58dca5f534', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'Asmadeuss', true, '761458337&show_for_all=1e2655daac', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'Asmadeuss', true, '761456353&show_for_all=5be8338f62', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 18, 'Asmadeuss', true, '761452879&show_for_all=ae01731cf2', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 18, 'Asmadeuss', true, '761450078&show_for_all=a01f715e49', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'Asmadeuss', true, '761445701&show_for_all=747293c9c0', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'Asmadeuss', true, '761442716&show_for_all=1fc5480d5c', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'Asmadeuss', false, '761437757&show_for_all=b65eb8ce9a', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 18, 'Asmadeuss', true, '761435312&show_for_all=b1fe9b9050', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'Asmadeuss', true, '761431308&show_for_all=220443c46c', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'Asmadeuss', true, '761428927&show_for_all=9518030511', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'Asmadeuss', true, '761425972&show_for_all=313a8110f2', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'Asmadeuss', true, '761421135&show_for_all=9214f0b27f', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'Asmadeuss', true, '761416988&show_for_all=504f597603', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'Asmadeuss', true, '761414977&show_for_all=43a4c0478e', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'Asmadeuss', true, '761412942&show_for_all=4a8fe257f2', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', true, '760867256&show_for_all=b2bc3add7e', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760861938&show_for_all=898ec9b13b', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760847411&show_for_all=77ab819646', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760837063&show_for_all=b2ee22b266', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760830255&show_for_all=07097dba05', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760825129&show_for_all=3b44b4d1a0', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760816443&show_for_all=59b9665409', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 18, 'Asmadeuss', false, '760809776&show_for_all=ee6e0baa26', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 18, 'Asmadeuss', true, '760804006&show_for_all=4451ab77de', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 18, 'Asmadeuss', true, '760800056&show_for_all=4bd5a8bfc9', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 18, 'Asmadeuss', true, '760797163&show_for_all=f94d7739df', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 18, 'Asmadeuss', true, '760795505&show_for_all=e5a0a4586d', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 18, 'Asmadeuss', true, '760793434&show_for_all=eddd11cdb5', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 18, 'Asmadeuss', true, '760789856&show_for_all=cd07737ea2', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 18, 'Asmadeuss', true, '760787435&show_for_all=802b269ad6', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 18, 'Asmadeuss', true, '760784932&show_for_all=58674ad195', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 18, 'Asmadeuss', true, '760781982&show_for_all=b242196c45', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 18, 'Asmadeuss', true, '760779788&show_for_all=e941687222', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 18, 'Asmadeuss', true, '760778051&show_for_all=118babb7cf', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 18, 'Asmadeuss', true, '760774450&show_for_all=87efb2c55e', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 18, 'Asmadeuss', true, '760770907&show_for_all=4546616b66', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 18, 'Asmadeuss', true, '760767926&show_for_all=1e1e08bc90', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 18, 'Asmadeuss', true, '760765326&show_for_all=d89f241bb1', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'Asmadeuss', true, '759801995&show_for_all=ba64a887db', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'Asmadeuss', true, '759798441&show_for_all=e374997f1b', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'Asmadeuss', false, '759792923&show_for_all=d27abb2610', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'Asmadeuss', true, '759788986&show_for_all=e9b30ba1d3', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'Asmadeuss', true, '759785165&show_for_all=e793f54e56', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'Asmadeuss', true, '759781607&show_for_all=28dd3b0c7a', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'Asmadeuss', false, '759773907&show_for_all=5643dc229b', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'Asmadeuss', false, '759765231&show_for_all=4f1ae885c1', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'Asmadeuss', false, '759758343&show_for_all=aae121a259', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 18, 'Asmadeuss', true, '759756451&show_for_all=23275c62ef', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 18, 'Asmadeuss', true, '759752687&show_for_all=be7fab6fa3', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'Asmadeuss', true, '759722365&show_for_all=a9849121c8', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'Asmadeuss', true, '759718972&show_for_all=42eb9eede0', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 18, 'Asmadeuss', true, '759716564&show_for_all=ebd8928940', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'Asmadeuss', true, '759712070&show_for_all=fb3a5aee37', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'Asmadeuss', true, '759709234&show_for_all=cf2b3286a8', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'Asmadeuss', false, '759703136&show_for_all=ea2e0ad953', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'Asmadeuss', true, '759698977&show_for_all=81145f6793', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'Asmadeuss', false, '759329678&show_for_all=e5d9bdee51', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'Asmadeuss', true, '759327418&show_for_all=87df1a1159', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'Asmadeuss', true, '759325620&show_for_all=aec5e6ecfa', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'Asmadeuss', true, '759324366&show_for_all=d0394f0a56', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'Asmadeuss', true, '759322011&show_for_all=46a3425fef', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'sanek_92', true, '829323697&show_for_all=0d7e1b5e57', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'sanek_92', true, '829321829&show_for_all=ffc257d733', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'sanek_92', true, '829319839&show_for_all=1b8e086d54', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'sanek_92', true, '829317710&show_for_all=4b5ebb2d3e', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'sanek_92', false, '829313530&show_for_all=14e0920ced', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'sanek_92', true, '829311904&show_for_all=28a7987c9f', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'sanek_92', true, '829310195&show_for_all=1a87f4905d', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'sanek_92', true, '829308507&show_for_all=987b1a8a92', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'sanek_92', true, '829236363&show_for_all=eb1b528dfc', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 18, 'sanek_92', true, '829227942&show_for_all=bd6d737c1f', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 18, 'sanek_92', true, '829225076&show_for_all=f69663a116', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 18, 'sanek_92', true, '829222586&show_for_all=0555fb901d', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 18, 'sanek_92', true, '829220270&show_for_all=df75dfc60b', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 18, 'sanek_92', true, '829217637&show_for_all=10cb1e0bac', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 18, 'sanek_92', false, '829208793&show_for_all=b714fa7eb0', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 18, 'sanek_92', true, '829206795&show_for_all=b932e9d425', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 18, 'sanek_92', true, '829205871&show_for_all=cfa0f6a779', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 18, 'sanek_92', true, '829204335&show_for_all=217fe9b41e', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 18, 'sanek_92', true, '829200399&show_for_all=2c7944b5e8', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 18, 'sanek_92', true, '829197522&show_for_all=df8efda3c8', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 18, 'sanek_92', true, '829194470&show_for_all=bf559aa199', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 18, 'sanek_92', true, '828737410&show_for_all=29d6bd517b', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 18, 'sanek_92', false, '828730576&show_for_all=bcb51ff7ba', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 18, 'sanek_92', false, '828728019&show_for_all=9a88aeb739', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 18, 'sanek_92', true, '828724449&show_for_all=195e82a18a', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 18, 'sanek_92', true, '828720729&show_for_all=b94c6e3011', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 18, 'sanek_92', false, '828718843&show_for_all=dbb1db0c2c', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 18, 'sanek_92', false, '828711899&show_for_all=fbade61362', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 18, 'sanek_92', true, '828707127&show_for_all=0c407a0857', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 18, 'sanek_92', false, '828703471&show_for_all=46132fc355', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 18, 'sanek_92', false, '828699768&show_for_all=d120cac394', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 18, 'sanek_92', true, '828694348&show_for_all=636f241819', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 18, 'sanek_92', true, '828355747&show_for_all=fa9051b231', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 18, 'sanek_92', false, '828310004&show_for_all=0ffaff0090', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 18, 'sanek_92', false, '828306842&show_for_all=19b7c5e7fa', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 18, 'sanek_92', false, '828274651&show_for_all=2444169d3d', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 18, 'sanek_92', true, '828272616&show_for_all=b23e61deec', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 18, 'sanek_92', false, '828269735&show_for_all=3c534bcdb3', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'sanek_92', true, '814693762&show_for_all=3b3c23b700', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'sanek_92', true, '814690260&show_for_all=499bb57553', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'sanek_92', true, '814685909&show_for_all=c4b4c1e34d', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'sanek_92', true, '814682079&show_for_all=23a73f4ddc', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'sanek_92', false, '814678661&show_for_all=bd79d0f79e', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'sanek_92', true, '814674122&show_for_all=8d197e0f5d', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'sanek_92', true, '814670802&show_for_all=d3fc841cf2', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'sanek_92', true, '814668792&show_for_all=fb69075790', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'sanek_92', true, '814665305&show_for_all=a3d4d77a1e', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'sanek_92', true, '814660544&show_for_all=c10e6c6c5e', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'sanek_92', true, '814596725&show_for_all=2c68a72c18', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'sanek_92', false, '814594126&show_for_all=12e9fd66de', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'sanek_92', true, '814578770&show_for_all=dc0446b988', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'sanek_92', false, '814575526&show_for_all=017df2b846', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'sanek_92', true, '814567573&show_for_all=8d162424c6', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'sanek_92', false, '814560277&show_for_all=0565c91992', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'sanek_92', false, '814557609&show_for_all=387005bc6c', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'sanek_92', true, '814549020&show_for_all=e952795a27', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'sanek_92', true, '814543635&show_for_all=6022928b1a', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'sanek_92', false, '814540255&show_for_all=2aee2b0037', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'sanek_92', true, '814535881&show_for_all=4a8fae0580', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'sanek_92', false, '814532182&show_for_all=1580963a4d', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'sanek_92', true, '814528279&show_for_all=657ed75f76', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'sanek_92', true, '814526792&show_for_all=15634127f8', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'sanek_92', true, '814511750&show_for_all=b155324995', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'sanek_92', true, '814274178&show_for_all=ef188beb78', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'sanek_92', true, '814272982&show_for_all=300d55e829', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 18, 'sanek_92', true, '814271962&show_for_all=493eb545da', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'sanek_92', true, '814270658&show_for_all=776a881f5b', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'sanek_92', true, '814268541&show_for_all=3faec39652', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'sanek_92', false, '814265891&show_for_all=467aaa2011', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'sanek_92', true, '814259455&show_for_all=79f9f1904f', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'sanek_92', false, '814117023&show_for_all=0b816c2603', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'sanek_92', false, '814115194&show_for_all=4050ae3cb7', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'sanek_92', false, '814112797&show_for_all=3f65f04e83', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 18, 'sanek_92', true, '814111486&show_for_all=f898d2f3c6', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'sanek_92', true, '814110799&show_for_all=c0164c66b1', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'sanek_92', false, '814108438&show_for_all=2b6635aca0', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'sanek_92', false, '814106036&show_for_all=4702a95631', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'sanek_92', false, '814103168&show_for_all=295a3c0080', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 18, 'sanek_92', true, '814101548&show_for_all=e34663486d', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'sanek_92', true, '814099913&show_for_all=6e00ea20b0', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'sanek_92', true, '814098628&show_for_all=1a6097d139', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'sanek_92', true, '814096936&show_for_all=e7923c981f', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'sanek_92', false, '814093835&show_for_all=bb6dfdc9d6', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'sanek_92', true, '814092145&show_for_all=d231497dc6', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'sanek_92', true, '814090211&show_for_all=9c12bf2da1', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'sanek_92', false, '814087178&show_for_all=2de2bd2761', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'sanek_92', true, '814086389&show_for_all=f0e21069f6', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 18, 'sanek_92', true, '814085576&show_for_all=56a6029e8e', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'sanek_92', true, '814084637&show_for_all=879021f3f9', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'sanek_92', false, '814081602&show_for_all=6709d26bac', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'sanek_92', true, '814079560&show_for_all=2c56c52e01', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'sanek_92', false, '814076406&show_for_all=d513fc0320', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'sanek_92', false, '814072693&show_for_all=a991406af9', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'sanek_92', true, '804121845&show_for_all=f89354cb7f', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 18, 'sanek_92', true, '804121167&show_for_all=24f5319261', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'sanek_92', true, '804120694&show_for_all=39f56e5d82', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 18, 'sanek_92', true, '804120181&show_for_all=fea1552d1b', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'sanek_92', true, '804119445&show_for_all=041dc978dc', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'sanek_92', false, '804116801&show_for_all=e51d7bfe2f', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'sanek_92', true, '804115717&show_for_all=36b6a6da31', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'sanek_92', false, '804111598&show_for_all=53f607893b', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'sanek_92', true, '804110547&show_for_all=eb81aa8200', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'sanek_92', false, '804107905&show_for_all=84c371c91d', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'sanek_92', true, '804104260&show_for_all=c1aeb5d637', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'sanek_92', false, '804101308&show_for_all=f478f67a12', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 18, 'sanek_92', true, '804100908&show_for_all=60a0d05e34', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 18, 'sanek_92', true, '804051578&show_for_all=f04e1a72c5', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'sanek_92', true, '804050704&show_for_all=be08c78836', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'sanek_92', true, '804049738&show_for_all=689776ccc7', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'sanek_92', true, '804004902&show_for_all=1af986dfc4', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'sanek_92', false, '804001867&show_for_all=b66bf979ce', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'sanek_92', true, '803999990&show_for_all=1614c39b59', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'sanek_92', true, '803998269&show_for_all=8e54c50ea4', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'sanek_92', false, '803993425&show_for_all=6edcfa5995', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'sanek_92', true, '803992504&show_for_all=50294ad1e7', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'sanek_92', true, '803991992&show_for_all=3de60b5218', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'sanek_92', false, '801003313&show_for_all=b594dd0693', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'sanek_92', false, '801000494&show_for_all=efde54c7bb', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'sanek_92', true, '801000274&show_for_all=961a891e20', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'sanek_92', false, '800998638&show_for_all=deea3002cc', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'sanek_92', false, '800996742&show_for_all=9a6ca315d7', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'sanek_92', true, '800996215&show_for_all=75bd32b0d3', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'sanek_92', true, '783369359&show_for_all=4823ef7c32', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 18, 'sanek_92', true, '783368299&show_for_all=af618740ed', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 18, 'sanek_92', true, '783367380&show_for_all=ad68b27129', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 18, 'sanek_92', true, '783365892&show_for_all=80498e0a90', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 18, 'sanek_92', true, '783364812&show_for_all=9ed23b8b09', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 18, 'sanek_92', true, '783363571&show_for_all=13a7fdb51f', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 18, 'sanek_92', true, '783358837&show_for_all=4b9b1043dc', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 18, 'sanek_92', false, '783354938&show_for_all=03aee367d3', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 18, 'sanek_92', true, '783349266&show_for_all=239786d2e6', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 18, 'sanek_92', true, '783346030&show_for_all=54719f1b27', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 18, 'sanek_92', false, '783330965&show_for_all=afad81d878', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 18, 'sanek_92', true, '783327472&show_for_all=8088eae7f3', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 18, 'sanek_92', true, '783172427&show_for_all=28972d4891', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 18, 'sanek_92', true, '783032288&show_for_all=e0685bd1da', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 18, 'sanek_92', true, '783030636&show_for_all=de95225527', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 18, 'sanek_92', false, '783019285&show_for_all=d255936ba7', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 18, 'sanek_92', false, '783016191&show_for_all=9f44932997', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 18, 'sanek_92', true, '783014336&show_for_all=e9fb38f59a', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 18, 'sanek_92', true, '783012676&show_for_all=cf1603888c', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 18, 'sanek_92', false, '783009873&show_for_all=3ef3bce91e', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 18, 'sanek_92', true, '783008560&show_for_all=ceb44b82d0', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 18, 'sanek_92', true, '783007949&show_for_all=1fd95fa22d', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 18, 'sanek_92', true, '783006796&show_for_all=42b2b1be69', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'sanek_92', true, '779502193&show_for_all=302da851da', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 18, 'sanek_92', true, '779482841&show_for_all=72e59a2296', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 18, 'sanek_92', true, '779480046&show_for_all=995984302d', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 18, 'sanek_92', true, '779478726&show_for_all=6c374c2466', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 18, 'sanek_92', false, '779476515&show_for_all=b5e33e1bb2', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 18, 'sanek_92', true, '779474787&show_for_all=e75f994c94', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 18, 'sanek_92', true, '779448480&show_for_all=deee5a1c31', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 18, 'sanek_92', true, '779448055&show_for_all=6741a36d31', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 18, 'sanek_92', true, '779416344&show_for_all=795703f5c1', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 18, 'sanek_92', true, '779415078&show_for_all=ef566fc7e9', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 18, 'sanek_92', true, '779413995&show_for_all=c684ec328a', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 18, 'sanek_92', false, '779411859&show_for_all=038df7f5a2', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 18, 'sanek_92', false, '779409812&show_for_all=fd967af1e7', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 18, 'sanek_92', true, '779408919&show_for_all=0b81211095', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 18, 'sanek_92', false, '779406038&show_for_all=5c1ea109dd', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 18, 'sanek_92', true, '779377999&show_for_all=90492a1d56', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 18, 'sanek_92', true, '779377402&show_for_all=834e446490', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 18, 'sanek_92', false, '779375870&show_for_all=b61dd09d48', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 18, 'sanek_92', true, '779367448&show_for_all=76d0a83412', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 18, 'sanek_92', true, '779345660&show_for_all=dababe6094', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 18, 'sanek_92', true, '779344503&show_for_all=2e2e0b7c3a', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 18, 'sanek_92', true, '779343603&show_for_all=11c8f2f06d', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 18, 'sanek_92', false, '779340301&show_for_all=a443321a28', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 18, 'sanek_92', true, '779339259&show_for_all=16937b1f71', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 18, 'sanek_92', false, '779335785&show_for_all=12f5becad7', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'sanek_92', true, '773650233&show_for_all=186fb9155a', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'sanek_92', true, '773649150&show_for_all=2da6e7dd7a', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'sanek_92', false, '773615973&show_for_all=e3642532c6', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 18, 'sanek_92', true, '773615423&show_for_all=e1ada8d31a', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 18, 'sanek_92', true, '773613242&show_for_all=f76860b59f', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 18, 'sanek_92', true, '773612357&show_for_all=4d7b7ec28f', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 18, 'sanek_92', true, '773611035&show_for_all=5a4916681a', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 18, 'sanek_92', true, '773607037&show_for_all=bb68791986', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 18, 'sanek_92', true, '773606773&show_for_all=6a930e1d7a', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 18, 'sanek_92', true, '773605930&show_for_all=ad2569f221', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'sanek_92', true, '773604716&show_for_all=780d6e8c57', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'sanek_92', false, '773601447&show_for_all=2acc828c25', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'sanek_92', false, '773598717&show_for_all=2dc477e97b', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'sanek_92', true, '773596872&show_for_all=529d1a1ada', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 18, 'sanek_92', true, '773596005&show_for_all=79b62c047b', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 18, 'sanek_92', true, '773593906&show_for_all=a6e0dd58b1', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 18, 'sanek_92', false, '763893506&show_for_all=13fdb369f8', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 18, 'sanek_92', true, '763892804&show_for_all=8a3cd079de', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 18, 'sanek_92', true, '763889408&show_for_all=40d1a0802e', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 18, 'sanek_92', false, '763888690&show_for_all=4c2b0dfac5', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'sanek_92', true, '763885885&show_for_all=b22ae4071c', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'sanek_92', false, '763882629&show_for_all=a894ce4a58', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'sanek_92', false, '763878496&show_for_all=16ccc1c34d', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'sanek_92', true, '762863284&show_for_all=5004c86fc0', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 18, 'sanek_92', true, '762862329&show_for_all=563dfcdbec', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'sanek_92', true, '762861326&show_for_all=ab381acbec', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 18, 'sanek_92', true, '762860314&show_for_all=0bc664c74f', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 18, 'sanek_92', true, '762858033&show_for_all=b635892f7d', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 18, 'sanek_92', true, '762855597&show_for_all=aebd1a0edb', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 18, 'sanek_92', true, '762854136&show_for_all=ca131cb18f', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 18, 'sanek_92', true, '762853645&show_for_all=bd190bdbf8', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 18, 'sanek_92', true, '762851532&show_for_all=7561f374cf', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 18, 'sanek_92', true, '762849929&show_for_all=aa0c1ae2e8', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'sanek_92', true, '762848147&show_for_all=1bf6f871f9', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'sanek_92', true, '762844516&show_for_all=61537e289a', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 18, 'sanek_92', true, '762835655&show_for_all=cd6039ca6e', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 18, 'sanek_92', true, '762832626&show_for_all=df195e254d', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'sanek_92', true, '762831611&show_for_all=eb0395f6d5', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'sanek_92', true, '762354922&show_for_all=94e64cd9d1', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 18, 'sanek_92', true, '762351451&show_for_all=6d5ad56d64', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 18, 'sanek_92', true, '762349988&show_for_all=8b59023253', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 18, 'sanek_92', true, '762348343&show_for_all=ccf732dd2b', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 18, 'sanek_92', true, '762346741&show_for_all=610ca4e754', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 18, 'sanek_92', true, '762345920&show_for_all=f26cac03e6', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'sanek_92', true, '762344541&show_for_all=5288247a3f', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 18, 'sanek_92', true, '762343309&show_for_all=62a2e96234', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 18, 'sanek_92', true, '762342159&show_for_all=aec8309a98', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'sanek_92', true, '762328467&show_for_all=ccb88ad3f3', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'sanek_92', true, '762325169&show_for_all=0e9a0e58ab', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 18, 'sanek_92', true, '762315277&show_for_all=0ee5668006', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 18, 'sanek_92', true, '762310423&show_for_all=fbb5d2f71c', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 18, 'sanek_92', true, '762308308&show_for_all=d9b47a12aa', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'sanek_92', true, '762307997&show_for_all=f9ef7f442d', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'sanek_92', true, '762102256&show_for_all=214b9ff7d1', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 18, 'sanek_92', true, '762100244&show_for_all=db0ab3dad5', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'sanek_92', true, '762099005&show_for_all=879a4b6430', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 18, 'sanek_92', true, '762098527&show_for_all=7869b8a141', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'sanek_92', true, '762097655&show_for_all=3b23ac39ae', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'sanek_92', false, '762094408&show_for_all=e70a6bcf06', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'sanek_92', true, '762092718&show_for_all=7dad096321', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 18, 'sanek_92', true, '762085733&show_for_all=28ad8c2ad6', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 18, 'sanek_92', true, '762084495&show_for_all=c137bbaf69', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 18, 'sanek_92', true, '762082632&show_for_all=5ffee3162c', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 18, 'sanek_92', true, '762081594&show_for_all=94555fb9ef', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'sanek_92', true, '762080675&show_for_all=e99e06391a', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'sanek_92', true, '762079555&show_for_all=784e06d3ae', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'sanek_92', true, '762078679&show_for_all=b09772fa16', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'sanek_92', true, '762076495&show_for_all=6bd9eb0eff', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'sanek_92', false, '762071834&show_for_all=d3e639b2b1', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 18, 'sanek_92', true, '762069791&show_for_all=e18b3218bb', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'sanek_92', true, '762068342&show_for_all=91421d8183', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 18, 'sanek_92', true, '762067275&show_for_all=70b0ad8540', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'sanek_92', true, '762066247&show_for_all=1aa103f928', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'sanek_92', true, '762063967&show_for_all=3824fb659d', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 18, 'sanek_92', true, '762060814&show_for_all=85b7f6bd42', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 18, 'sanek_92', true, '762056494&show_for_all=e59839f63e', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 18, 'sanek_92', true, '762052648&show_for_all=250772a7a4', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 18, 'sanek_92', true, '762049692&show_for_all=6ed1db8c83', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'sanek_92', true, '762048557&show_for_all=bc2faed543', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'sanek_92', true, '762046652&show_for_all=cab06134df', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'sanek_92', true, '762045301&show_for_all=cb50840a6b', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Александеръ', true, '835726689&show_for_all=307d50f0eb', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'Александеръ', true, '835722825&show_for_all=11cb655544', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 18, 'Александеръ', true, '835721409&show_for_all=82267f9d2a', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 18, 'Александеръ', true, '835719817&show_for_all=f207863900', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 18, 'Александеръ', false, '835717893&show_for_all=38a0c2c258', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 18, 'Александеръ', true, '835716242&show_for_all=a09b57130a', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'Александеръ', true, '835714217&show_for_all=5aabf83db3', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 18, 'Александеръ', true, '835712479&show_for_all=78e92ba628', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 18, 'Александеръ', true, '835710753&show_for_all=ea1838164f', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 18, 'Александеръ', false, '835697650&show_for_all=84f0afaf53', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 18, 'Александеръ', true, '835696540&show_for_all=ddc8a1fbd3', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 18, 'Александеръ', false, '835692605&show_for_all=d3b3d86677', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 18, 'Александеръ', true, '835691027&show_for_all=c2891a6ed2', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 18, 'Александеръ', false, '835689166&show_for_all=541fa84189', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'Александеръ', true, '835687952&show_for_all=a5a5044186', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 18, 'Александеръ', true, '835684813&show_for_all=72a2b19857', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'Александеръ', true, '835682870&show_for_all=e62b3c9b6f', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'Александеръ', false, '835680186&show_for_all=f49f39129d', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 18, 'Александеръ', true, '835678067&show_for_all=1b205d50e5', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 18, 'Александеръ', false, '835674247&show_for_all=d3b72ecd28', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 18, 'Александеръ', true, '835672875&show_for_all=af86d8837e', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 18, 'Александеръ', true, '835671316&show_for_all=6ea398ff77', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 18, 'Александеръ', true, '835669764&show_for_all=153d9f6e68', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 18, 'Александеръ', false, '835666638&show_for_all=e78ae0b8f3', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 18, 'Александеръ', false, '835664997&show_for_all=2f94bc6bd0', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 18, 'Александеръ', true, '835663788&show_for_all=9b18f04d5e', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 18, 'Александеръ', true, '833288397&show_for_all=33f6b333af', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 18, 'Александеръ', true, '833286261&show_for_all=550a2d5f05', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 18, 'Александеръ', true, '833284378&show_for_all=4763a56592', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 18, 'Александеръ', true, '833281830&show_for_all=5fa5b3974c', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 18, 'Александеръ', false, '833279626&show_for_all=9e14bde052', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 18, 'Александеръ', true, '833277660&show_for_all=9e0fc5d9a1', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 18, 'Александеръ', true, '833274690&show_for_all=c0c2774d20', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 18, 'Александеръ', false, '833273185&show_for_all=2be17e25b5', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 18, 'Александеръ', true, '833271640&show_for_all=23d896a082', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 18, 'Александеръ', false, '833266772&show_for_all=e2f3ba895d', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 18, 'Александеръ', true, '833264680&show_for_all=e8f8be38a1', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 18, 'Александеръ', false, '833231404&show_for_all=140e71fe20', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 18, 'Александеръ', true, '833230643&show_for_all=86886be3f7', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 18, 'Александеръ', true, '833230011&show_for_all=d7b1137916', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 18, 'Александеръ', true, '833228718&show_for_all=78d665fa7d', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 18, 'Александеръ', true, '833226654&show_for_all=d988e99a84', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 18, 'Александеръ', true, '833225636&show_for_all=6350d65d43', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 18, 'Александеръ', true, '833223993&show_for_all=885432b2a0', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 18, 'Александеръ', true, '833221340&show_for_all=db9f071a43', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 18, 'Александеръ', true, '833219110&show_for_all=8c70e0c5fe', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 18, 'Александеръ', true, '833214089&show_for_all=beb5fc0b46', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 18, 'Александеръ', false, '833096934&show_for_all=b497cbb1b8', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 18, 'Александеръ', true, '833095633&show_for_all=889fd6578a', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'Александеръ', true, '833067972&show_for_all=cde9124900', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 18, 'Александеръ', true, '833065814&show_for_all=64c5bf2fa7', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 18, 'Александеръ', true, '833062066&show_for_all=d4690b5c43', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 18, 'Александеръ', false, '832963968&show_for_all=198d5693fa', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 18, 'Александеръ', false, '832961127&show_for_all=414588c897', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 18, 'Александеръ', true, '832958730&show_for_all=dbc18ec21e', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 18, 'Александеръ', true, '832956390&show_for_all=a4c041c0ad', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 18, 'Александеръ', true, '832955087&show_for_all=85abaa1be1', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 18, 'Александеръ', true, '832953027&show_for_all=c6944c76ce', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 18, 'Александеръ', true, '832842450&show_for_all=f5b1b1237d', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 18, 'Александеръ', true, '832841570&show_for_all=3109eb0ca9', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 18, 'Александеръ', true, '832840556&show_for_all=9db13027f0', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 18, 'Александеръ', false, '832838307&show_for_all=e142df0d90', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 18, 'Александеръ', true, '832837001&show_for_all=2313512412', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 18, 'Александеръ', true, '832835842&show_for_all=ad5bd9ac7c', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 18, 'Александеръ', true, '832834715&show_for_all=309734a397', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 18, 'Александеръ', true, '832833086&show_for_all=82295f6952', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 18, 'Александеръ', false, '832582207&show_for_all=084a98d5bc', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 18, 'Александеръ', false, '832581037&show_for_all=8ef4630c57', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 18, 'Александеръ', true, '832579734&show_for_all=a376a786a3', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 18, 'Александеръ', true, '832578702&show_for_all=c80df0a3a4', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 18, 'Александеръ', false, '832577307&show_for_all=4b0be90db2', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 18, 'Александеръ', true, '832576043&show_for_all=01b6122e45', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 18, 'Александеръ', false, '832574164&show_for_all=7250a194e9', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'Александеръ', true, '832525731&show_for_all=76a1e28f37', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'Александеръ', true, '832524059&show_for_all=6cc4dd5d8d', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Александеръ', true, '832452784&show_for_all=f04e674ace', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Александеръ', true, '832451768&show_for_all=43dedcca64', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 18, 'Александеръ', true, '832450276&show_for_all=cb03a1dce1', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 18, 'Александеръ', true, '832449369&show_for_all=ac4e1795db', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 18, 'Александеръ', true, '832447473&show_for_all=601e405423', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Александеръ', true, '832445670&show_for_all=af5895a7d8', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 18, 'Александеръ', true, '832443607&show_for_all=b27bbf197d', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 18, 'Александеръ', true, '832442089&show_for_all=c95585b139', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'Александеръ', true, '832440560&show_for_all=7fe8c53804', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Александеръ', true, '832439053&show_for_all=131da953cb', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 18, 'Александеръ', true, '832436207&show_for_all=10cf6cbd90', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 18, 'Александеръ', true, '832424724&show_for_all=9c1177547a', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 18, 'Александеръ', true, '832422643&show_for_all=7361fa2102', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 18, 'Александеръ', true, '832420124&show_for_all=d4e490a1b4', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 18, 'Александеръ', true, '832409803&show_for_all=e1b723a7f4', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 18, 'Александеръ', true, '832404928&show_for_all=8b8d4fa751', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 18, 'Александеръ', true, '832403655&show_for_all=405c35525e', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'Александеръ', true, '832401588&show_for_all=3c51adff92', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Александеръ', true, '831978457&show_for_all=c1fa8c78bc', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'Александеръ', true, '831973953&show_for_all=6ade11305b', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'Александеръ', true, '831943783&show_for_all=b0dd6a0f3a', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'Александеръ', false, '831917971&show_for_all=4854300e64', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'Александеръ', true, '831913712&show_for_all=e26b6ef821', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'Александеръ', true, '831872207&show_for_all=886831dacd', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Александеръ', true, '831871143&show_for_all=b1a18f331f', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Александеръ', false, '831866746&show_for_all=5f45752a88', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Александеръ', true, '831722670&show_for_all=42ab997c27', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Александеръ', false, '831722327&show_for_all=3cd37e1c7f', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Александеръ', false, '831720867&show_for_all=dd55a84e72', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'Александеръ', true, '831719674&show_for_all=41f2725e78', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'Александеръ', false, '831718629&show_for_all=39b6b32ffd', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'Александеръ', true, '831717271&show_for_all=98c2267041', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'Александеръ', true, '831713723&show_for_all=58e26cd7de', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'Александеръ', true, '831711639&show_for_all=b4ca5263f1', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'Александеръ', true, '831709746&show_for_all=5c35195171', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'Александеръ', true, '831707950&show_for_all=842a5b4eb3', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'Александеръ', false, '831697353&show_for_all=fe5bf7d891', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Александеръ', true, '831695318&show_for_all=2e6c974e52', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Александеръ', false, '831690923&show_for_all=229a72314f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Александеръ', true, '831686898&show_for_all=f4a2afc0e1', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Александеръ', false, '831564770&show_for_all=4cb4527c24', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Александеръ', false, '831564045&show_for_all=4f1cd7eb0b', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Александеръ', false, '831563316&show_for_all=87a7228fd0', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'Александеръ', true, '831562419&show_for_all=dce956ce93', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'Александеръ', false, '831561334&show_for_all=99ab142735', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'Александеръ', true, '831537482&show_for_all=9ad587794b', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'Александеръ', true, '831534649&show_for_all=10f26b6270', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'Александеръ', true, '822592240&show_for_all=3fd85355c5', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 18, 'Александеръ', true, '822591412&show_for_all=c2415ba9b9', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'Александеръ', true, '822590669&show_for_all=731c51862b', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 18, 'Александеръ', true, '822590047&show_for_all=ea4fe07f12', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 18, 'Александеръ', false, '822588239&show_for_all=54d22adcef', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 18, 'Александеръ', true, '822587257&show_for_all=068fdbe348', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'Александеръ', true, '822585989&show_for_all=b9d288e973', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 18, 'Александеръ', true, '822585410&show_for_all=1a0acc6c9c', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 18, 'Александеръ', true, '822584286&show_for_all=2c177f0376', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 18, 'Александеръ', true, '822581885&show_for_all=08c85c77f0', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'Александеръ', true, '822580787&show_for_all=5654cde550', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'Александеръ', true, '822578578&show_for_all=b541431254', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'Александеръ', false, '822576194&show_for_all=faadd93dbc', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 18, 'Александеръ', true, '822574110&show_for_all=edaf4cfa5a', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 18, 'Александеръ', true, '822571836&show_for_all=b1e1f0e9e5', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 18, 'Александеръ', true, '822537208&show_for_all=a6466f8f36', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'Александеръ', true, '822491861&show_for_all=8d54aa18a3', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'Александеръ', true, '822489463&show_for_all=d77b9d5b0b', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Александеръ', true, '822486643&show_for_all=16831da88e', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Александеръ', true, '822484889&show_for_all=3202c6a650', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Александеръ', false, '822470044&show_for_all=85b0582ae7', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Александеръ', false, '822423355&show_for_all=ef41d62fff', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 18, 'Александеръ', true, '822229664&show_for_all=16645755f1', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 18, 'Александеръ', true, '822226226&show_for_all=6a4baded83', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 18, 'Александеръ', false, '821942769&show_for_all=73b8fdcb8c', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 18, 'Александеръ', true, '821941192&show_for_all=e32a1b5ec2', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 18, 'Александеръ', true, '821940210&show_for_all=953a357df8', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 18, 'Александеръ', true, '821938541&show_for_all=9befb62e50', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 18, 'Александеръ', true, '821683578&show_for_all=0da63c41ed', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 18, 'Александеръ', true, '821682811&show_for_all=64d7f2167d', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 18, 'Александеръ', true, '821681754&show_for_all=bc4dd653ff', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Александеръ', true, '821680370&show_for_all=a7db5f5c34', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Александеръ', false, '821678365&show_for_all=542ebe6be6', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'Александеръ', true, '821676449&show_for_all=c6dc324011', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Александеръ', true, '821674717&show_for_all=d4e3452e63', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Александеръ', false, '821671186&show_for_all=73f2e50585', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'Александеръ', false, '820541535&show_for_all=2e4186797b', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'Александеръ', true, '820395203&show_for_all=de105cd8ac', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'Александеръ', true, '820394141&show_for_all=7aad4250e9', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 18, 'Александеръ', true, '820393002&show_for_all=088d4753e2', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 18, 'Александеръ', true, '820392186&show_for_all=8b55e13923', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 18, 'Александеръ', true, '820391488&show_for_all=0b4c043df3', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 18, 'Александеръ', true, '820390379&show_for_all=96cf6e93cf', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 18, 'Александеръ', true, '820389350&show_for_all=24e32528e1', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 18, 'Александеръ', true, '820388340&show_for_all=73ff20fcb9', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 18, 'Александеръ', true, '820387400&show_for_all=75812d009d', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 18, 'Александеръ', true, '820386126&show_for_all=a238e53d75', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 18, 'Александеръ', true, '820385002&show_for_all=d18b24fdef', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 18, 'Александеръ', true, '820382972&show_for_all=762fb10cf3', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 18, 'Александеръ', true, '820227951&show_for_all=8208278ad9', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 18, 'Александеръ', true, '820226356&show_for_all=701e8c42c7', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 18, 'Александеръ', true, '820225187&show_for_all=a5e7635372', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 18, 'Александеръ', true, '820224371&show_for_all=7aa8a847ba', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 18, 'Александеръ', true, '820222145&show_for_all=e64dc16119', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 18, 'Александеръ', true, '820220295&show_for_all=980535a261', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 18, 'Александеръ', true, '820219012&show_for_all=1a48b8edab', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Александеръ', true, '798491469&show_for_all=3e670e1207', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Александеръ', true, '798488882&show_for_all=670c85742c', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Александеръ', false, '798484101&show_for_all=b6729b0526', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'Александеръ', true, '798481099&show_for_all=8ecd9a0a86', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Александеръ', true, '798253020&show_for_all=71d1495af2', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Александеръ', false, '798249500&show_for_all=0f8b62e310', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'Александеръ', true, '798247924&show_for_all=893080b907', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'Александеръ', true, '798100235&show_for_all=bb672582a4', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'Александеръ', true, '798098896&show_for_all=43f9ee6cc8', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 18, 'Александеръ', false, '785927332&show_for_all=199235678c', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 18, 'Александеръ', true, '785926290&show_for_all=6ad392e633', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 18, 'Александеръ', true, '783431327&show_for_all=76a6ee2c71', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 18, 'Александеръ', true, '783430064&show_for_all=174298955c', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 18, 'Александеръ', false, '783255993&show_for_all=b53ad6a981', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 18, 'Александеръ', true, '783254867&show_for_all=3f99c35dc1', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'Александеръ', true, '763536056&show_for_all=66df8feded', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'Александеръ', true, '763535152&show_for_all=304966a662', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 17, 'Александеръ', true, '763534274&show_for_all=e02eb56b3e', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 17, 'Александеръ', true, '763531929&show_for_all=973bf99bec', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 17, 'Александеръ', true, '763530450&show_for_all=bd3e6e8138', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 17, 'Александеръ', true, '763528591&show_for_all=7f0fc38fe0', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'Александеръ', true, '763527692&show_for_all=fbeaa6f128', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 17, 'Александеръ', true, '763526820&show_for_all=bd85089348', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 17, 'Александеръ', true, '763525589&show_for_all=b2723e9259', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 17, 'Александеръ', true, '763523153&show_for_all=2c6aa60432', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'Александеръ', true, '763522198&show_for_all=6205ee792b', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'Александеръ', true, '763521120&show_for_all=6ddffcfccb', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 17, 'Александеръ', true, '763519927&show_for_all=fd9696bf9b', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 17, 'Александеръ', true, '763518445&show_for_all=bfbbb14930', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 17, 'Александеръ', true, '763517384&show_for_all=6d4e98b69e', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'Александеръ', true, '762239414&show_for_all=ccff88dadc', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 17, 'Александеръ', true, '762236607&show_for_all=a3212ee21d', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'Александеръ', true, '762235635&show_for_all=dd62e7c703', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 17, 'Александеръ', true, '762234134&show_for_all=1b9c8c9a14', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'Александеръ', true, '762232129&show_for_all=d07e6209f0', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 17, 'Александеръ', true, '762230880&show_for_all=53ed0e2b1d', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'Александеръ', true, '762228673&show_for_all=8a3c871c9f', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'Александеръ', true, '762226957&show_for_all=98b55b312a', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'Александеръ', true, '762225345&show_for_all=578bd9f870', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 17, 'Александеръ', true, '762223899&show_for_all=a5526ce444', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 17, 'Александеръ', true, '762222983&show_for_all=d19391b829', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'Александеръ', true, '762221656&show_for_all=9ed630fcaf', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 17, 'Александеръ', true, '762220324&show_for_all=fe91b58d10', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 17, 'Александеръ', false, '761630055&show_for_all=d7cc4d6fa9', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 17, 'Александеръ', true, '761629117&show_for_all=54dce4c5c5', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 17, 'Александеръ', true, '761627517&show_for_all=e6c05d7bc0', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'Александеръ', true, '761626270&show_for_all=ee196713b9', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 17, 'Александеръ', true, '760945328&show_for_all=fe6acc24f3', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 17, 'Александеръ', true, '760944285&show_for_all=a9f8095e0d', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 17, 'Александеръ', true, '760887882&show_for_all=d68fa3b857', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 17, 'Александеръ', true, '760884484&show_for_all=d2e1a494d5', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 17, 'Александеръ', true, '760880323&show_for_all=c7f254f347', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 17, 'Александеръ', true, '760875655&show_for_all=6deed41eb1', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 17, 'Александеръ', true, '760872483&show_for_all=db7dfc719f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 17, 'Александеръ', true, '760870636&show_for_all=67afb3a1fd', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'Александеръ', true, '760866987&show_for_all=2dafcd6b53', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 17, 'Александеръ', true, '760863285&show_for_all=313cefa1f4', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'Александеръ', true, '760860733&show_for_all=884e5907e4', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 17, 'Александеръ', true, '759342869&show_for_all=a9aab1bd7b', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 16, 'Газкул', true, '828539410&show_for_all=5476b5b5c3', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 16, 'Газкул', true, '828538886&show_for_all=fc8cd0c37e', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 16, 'Газкул', true, '828538333&show_for_all=3bc3478c7f', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 16, 'Газкул', true, '828537487&show_for_all=80b91d98d3', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 16, 'Газкул', true, '828537030&show_for_all=9cae67fc11', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 16, 'Газкул', true, '828536172&show_for_all=67403c1b93', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 16, 'Газкул', true, '828535749&show_for_all=51648e6dc7', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 16, 'Газкул', true, '828535151&show_for_all=2bdbeb226e', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 16, 'Газкул', true, '828534722&show_for_all=7c9e5d0260', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 16, 'Газкул', false, '828533900&show_for_all=dfaa8e0c25', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 16, 'Газкул', true, '828533154&show_for_all=02f8568c67', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 16, 'Газкул', true, '828531996&show_for_all=0eb1a4f63a', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 16, 'Газкул', true, '828531272&show_for_all=f64e60eb33', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 16, 'Газкул', true, '828529800&show_for_all=29e5510eef', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 16, 'Газкул', true, '828529140&show_for_all=e46c02a86b', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 16, 'Газкул', true, '828527742&show_for_all=7fa65e7d79', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 16, 'Газкул', false, '828525676&show_for_all=995e9d740b', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 16, 'Газкул', true, '828524225&show_for_all=8b4e397cf2', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 16, 'Газкул', true, '823499631&show_for_all=6673a42d5b', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 16, 'Газкул', true, '823499026&show_for_all=6ef49f2ee4', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 16, 'Газкул', false, '823498009&show_for_all=5ca49ee8a9', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 16, 'Газкул', false, '821316597&show_for_all=a181347ea2', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 16, 'Газкул', true, '821315265&show_for_all=1a4c5c1ebb', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 16, 'Газкул', true, '821314815&show_for_all=b969d1bf3b', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 16, 'Газкул', true, '821314560&show_for_all=262efdc4e9', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 16, 'Газкул', true, '821314238&show_for_all=dc49caa83e', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 16, 'Газкул', true, '821314005&show_for_all=747370920b', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 16, 'Газкул', false, '821313264&show_for_all=bd53200cc7', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 16, 'Газкул', true, '821312871&show_for_all=2b73808252', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 16, 'Газкул', true, '821312267&show_for_all=1aa5a4630b', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 16, 'Газкул', true, '821311978&show_for_all=6582637345', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 16, 'Газкул', true, '821311630&show_for_all=70b89c0655', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 16, 'Газкул', true, '821311073&show_for_all=cdc8c776f1', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 16, 'Газкул', true, '821310148&show_for_all=bc60de2a67', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 16, 'Газкул', true, '821309442&show_for_all=b6e2fb5f52', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 16, 'Газкул', true, '821308873&show_for_all=103cbd37e2', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 16, 'Газкул', true, '821308399&show_for_all=8abf575d9d', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 16, 'Газкул', true, '821307815&show_for_all=f75eab3bf1', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 16, 'Газкул', true, '821307410&show_for_all=5ccb67938f', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 16, 'Газкул', true, '821306988&show_for_all=da1c920a61', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 16, 'Газкул', true, '821306356&show_for_all=450fe333b9', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'Газкул', true, '795071163&show_for_all=fbe009c822', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'Газкул', false, '795068832&show_for_all=e1fcea4daa', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'Газкул', false, '795066764&show_for_all=c38de44d0c', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'Газкул', false, '795064845&show_for_all=893902a95c', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 16, 'Газкул', true, '795061447&show_for_all=74669cf8af', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 16, 'Газкул', true, '795057316&show_for_all=1c5642b928', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 16, 'Газкул', true, '795055261&show_for_all=d1e70b4b6e', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 16, 'Газкул', false, '795053190&show_for_all=eb4dd89d7d', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 16, 'Газкул', true, '795051420&show_for_all=cff1f6e203', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 16, 'Газкул', false, '795049471&show_for_all=420504d8c5', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 16, 'Газкул', true, '795047824&show_for_all=ecaa950b62', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 16, 'Газкул', true, '795045167&show_for_all=8f728c820d', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 16, 'Газкул', true, '795041989&show_for_all=c9e9e46ca7', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 16, 'Газкул', true, '795038121&show_for_all=8bc7bd072e', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 16, 'Газкул', true, '795035569&show_for_all=cab671b82a', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 16, 'Газкул', true, '795034080&show_for_all=655f63fc43', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 16, 'Газкул', true, '795032739&show_for_all=e1e5ccdcaa', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 16, 'Газкул', true, '795030939&show_for_all=20554dbcdf', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 16, 'Газкул', true, '795028938&show_for_all=d6cc90c709', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 16, 'Газкул', true, '795027812&show_for_all=96ab91af43', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 16, 'Газкул', true, '795025575&show_for_all=e34fb08a38', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 16, 'Газкул', true, '795023135&show_for_all=a53856e54b', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 16, 'Газкул', false, '794877271&show_for_all=46747b13a9', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 16, 'Газкул', true, '794487036&show_for_all=1d59d0a787', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 16, 'Газкул', true, '794484658&show_for_all=61bc926c6c', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 16, 'Газкул', true, '794483661&show_for_all=4c5c10714e', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 16, 'Газкул', false, '794481770&show_for_all=1eb5088f3f', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 16, 'Газкул', true, '794393312&show_for_all=bd9119a84a', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 16, 'Газкул', false, '794389889&show_for_all=ffddde62d5', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 16, 'Газкул', false, '794387764&show_for_all=f4a7ea7f07', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 16, 'Газкул', false, '794385758&show_for_all=035490ac27', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 16, 'Газкул', true, '794384070&show_for_all=e7ef9ff3be', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 16, 'Газкул', true, '794383094&show_for_all=0c6689b85b', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 16, 'Газкул', false, '794380872&show_for_all=1a543071bd', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 16, 'Газкул', false, '794378832&show_for_all=6f1912fc93', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 16, 'Газкул', false, '794377052&show_for_all=0037bec553', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 16, 'Газкул', false, '794375256&show_for_all=63f6f5db1a', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 16, 'Газкул', true, '794374481&show_for_all=ed81b0ec14', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 16, 'Газкул', true, '794372597&show_for_all=aebf26229e', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 16, 'Газкул', true, '794370953&show_for_all=9f32cfcfa4', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 16, 'Газкул', true, '794368849&show_for_all=387bbf75d5', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 16, 'Газкул', false, '794366624&show_for_all=56d0fb5e99', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 16, 'Газкул', true, '794364568&show_for_all=933fb6792c', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 16, 'Газкул', true, '794362809&show_for_all=67c5a3c3aa', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 16, 'Газкул', false, '794360711&show_for_all=80dd8640f3', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 16, 'Газкул', true, '794354924&show_for_all=4396275e28', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 16, 'Газкул', true, '794354040&show_for_all=4ad78845ba', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 16, 'Газкул', true, '794351338&show_for_all=e38976a021', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 16, 'Газкул', false, '794349525&show_for_all=413bf7c79f', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 16, 'Газкул', true, '794348562&show_for_all=87d5db6703', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 16, 'Газкул', true, '794347720&show_for_all=0b112db223', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 16, 'Газкул', false, '794345843&show_for_all=33458ee4bd', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 16, 'Газкул', true, '794344689&show_for_all=f97d0211de', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 15, 'Газкул', true, '786990592&show_for_all=d0ed6803a0', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 15, 'Газкул', true, '786988826&show_for_all=9008963e54', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 15, 'Газкул', false, '786956779&show_for_all=10f408b055', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 15, 'Газкул', true, '786955479&show_for_all=fe20214c26', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 15, 'Газкул', true, '786954580&show_for_all=f025cec276', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 15, 'Газкул', true, '786953088&show_for_all=cb88e0affb', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 15, 'Газкул', true, '786951658&show_for_all=123547c896', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 15, 'Газкул', true, '786950413&show_for_all=5769af3f4c', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 15, 'Газкул', true, '786949572&show_for_all=cf53efef96', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 15, 'Газкул', true, '786948485&show_for_all=aefa326be2', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 15, 'Газкул', true, '786947161&show_for_all=9048f4f51a', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 15, 'Газкул', true, '786946087&show_for_all=f0dbb10e7f', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 15, 'Газкул', true, '786428154&show_for_all=8d58512bcb', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 15, 'Газкул', true, '786428009&show_for_all=cb262718fc', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 15, 'Газкул', true, '786427763&show_for_all=b18b481526', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 15, 'Газкул', true, '786427391&show_for_all=1276137e73', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 15, 'Газкул', true, '786426822&show_for_all=2702415201', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 15, 'Газкул', true, '786426554&show_for_all=6b4c2da266', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 15, 'Газкул', false, '786425664&show_for_all=57dd58a885', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 15, 'Газкул', true, '786425498&show_for_all=1af1826364', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 15, 'Газкул', false, '786396101&show_for_all=fad45c21ae', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 15, 'Газкул', true, '786394722&show_for_all=cd281adde5', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 15, 'Газкул', true, '781698495&show_for_all=84446a7410', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 15, 'Газкул', true, '781697343&show_for_all=8d517f4c18', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 15, 'Газкул', false, '781694522&show_for_all=2844295505', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 15, 'Газкул', true, '781693884&show_for_all=f6aaa89f62', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 15, 'Газкул', false, '781691948&show_for_all=ec82a742d6', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 15, 'Газкул', true, '781683511&show_for_all=b2ea84faa1', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 15, 'Газкул', true, '781682401&show_for_all=b5112833cb', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 15, 'Газкул', true, '781681742&show_for_all=901295c949', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 15, 'Газкул', false, '781641550&show_for_all=0209389f43', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 15, 'Газкул', true, '781641234&show_for_all=7712637eae', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 15, 'Газкул', true, '781638997&show_for_all=ba733b36fe', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 15, 'Газкул', true, '781637854&show_for_all=13c5ac8da5', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 15, 'Газкул', false, '781629450&show_for_all=570c270ffa', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 15, 'Газкул', true, '781628810&show_for_all=db26410693', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 15, 'Газкул', true, '781628101&show_for_all=e86ad42482', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 15, 'Газкул', true, '781627505&show_for_all=158349c358', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 15, 'Газкул', true, '781620352&show_for_all=beaf480ce7', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 15, 'Газкул', true, '781618462&show_for_all=e3304a07cb', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 15, 'Газкул', true, '781576361&show_for_all=ee653726a9', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 15, 'Газкул', true, '781576019&show_for_all=a8a584855b', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 15, 'Газкул', true, '781406042&show_for_all=a31da53fa5', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 15, 'Газкул', true, '781405869&show_for_all=59616e3c03', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 15, 'Газкул', true, '781404975&show_for_all=02289d2b58', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 15, 'Газкул', true, '781404438&show_for_all=b0dc79a275', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 15, 'Газкул', true, '781404035&show_for_all=c335b30c0a', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 15, 'Газкул', true, '781403496&show_for_all=af1ff19a56', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 15, 'Газкул', true, '781402727&show_for_all=2d58a316db', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 15, 'Газкул', true, '781402316&show_for_all=39f10191d5', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 15, 'Газкул', true, '781402092&show_for_all=dbd126f303', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 15, 'Газкул', true, '781401610&show_for_all=fb31e40924', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 15, 'Газкул', true, '781400394&show_for_all=b2e8673641', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 15, 'Газкул', true, '781399721&show_for_all=5545954815', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 15, 'Газкул', true, '781399090&show_for_all=bd5c6af9b6', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 15, 'Газкул', true, '781398468&show_for_all=40b84b27b7', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 15, 'Газкул', true, '781397892&show_for_all=904ecb2a03', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 15, 'Газкул', true, '781397427&show_for_all=54061d5f3e', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 15, 'Газкул', true, '781396829&show_for_all=fda631170f', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 15, 'Газкул', true, '781396621&show_for_all=5b43f86ee3', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 15, 'Газкул', true, '781396362&show_for_all=ae5839fe10', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 15, 'Газкул', true, '781396184&show_for_all=42b86e80fe', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 15, 'Газкул', true, '781291900&show_for_all=51a2a0ac0f', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 15, 'Газкул', true, '781290569&show_for_all=9f01206114', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 15, 'Газкул', true, '781289572&show_for_all=c8e6b6d876', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 15, 'Газкул', true, '781288563&show_for_all=a380ccdf9a', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 15, 'Газкул', true, '781286671&show_for_all=099393b86c', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 15, 'Газкул', false, '781284136&show_for_all=85d183ab06', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 15, 'Газкул', false, '781280926&show_for_all=27e17b3a9e', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 15, 'Газкул', false, '781278461&show_for_all=25bdb1f21c', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 15, 'Газкул', true, '781277734&show_for_all=e34c639e5e', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 15, 'Газкул', true, '781276908&show_for_all=520c200bde', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 15, 'Газкул', true, '781275927&show_for_all=1a9477b0bd', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 15, 'Газкул', true, '781274389&show_for_all=5fd86d6b29', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 15, 'Газкул', true, '781243455&show_for_all=0a09b3d50f', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 15, 'Газкул', false, '781242974&show_for_all=14d6bda68e', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 15, 'Газкул', true, '781242780&show_for_all=e063e42efe', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 15, 'Газкул', true, '781242406&show_for_all=da1df27d16', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 15, 'Газкул', false, '781241452&show_for_all=f558730580', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 15, 'Газкул', true, '781241154&show_for_all=6d8873e2e9', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 15, 'Газкул', true, '781240857&show_for_all=e3082b1c31', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 15, 'Газкул', true, '781240350&show_for_all=39f9b90bda', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 15, 'Газкул', true, '781239882&show_for_all=365780ec1d', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 15, 'Газкул', true, '781239747&show_for_all=1b111643c2', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 15, 'Газкул', true, '781239540&show_for_all=70d50ac96a', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 17, 'IceZorro', true, '832842391&show_for_all=d3f67d2b72', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 17, 'IceZorro', true, '832841845&show_for_all=2da1a79a98', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'IceZorro', true, '832841600&show_for_all=0133308095', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 17, 'IceZorro', true, '832841002&show_for_all=22beb8b4c2', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 17, 'IceZorro', false, '832839838&show_for_all=7f4c006660', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 17, 'IceZorro', false, '832838170&show_for_all=acb933ab53', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 17, 'IceZorro', true, '832837433&show_for_all=28e01141af', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 17, 'IceZorro', true, '832837007&show_for_all=99f4dcc29d', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 17, 'IceZorro', true, '832836140&show_for_all=83fb26326f', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'IceZorro', true, '832835122&show_for_all=7afcb9a7d7', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'IceZorro', false, '832832227&show_for_all=94e6558f00', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'IceZorro', false, '832830370&show_for_all=81e8d743ef', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 17, 'IceZorro', true, '832829281&show_for_all=5c53e8df9f', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 17, 'IceZorro', true, '832828508&show_for_all=2480ab0ff9', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 17, 'IceZorro', true, '832797670&show_for_all=e550096815', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 17, 'IceZorro', false, '832793940&show_for_all=8e77052ce2', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 17, 'IceZorro', true, '832792612&show_for_all=f7cb3d8d36', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 17, 'IceZorro', true, '832788459&show_for_all=679257e8db', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 17, 'IceZorro', false, '832786702&show_for_all=06a518a73f', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 17, 'IceZorro', true, '832785984&show_for_all=4d493ba47f', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 17, 'IceZorro', true, '832785204&show_for_all=cd469ed6a0', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 17, 'IceZorro', false, '832765464&show_for_all=d4cc00197c', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 17, 'IceZorro', true, '832755510&show_for_all=2a2b18dddc', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 17, 'IceZorro', false, '832754042&show_for_all=7f8038f4e6', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 17, 'IceZorro', true, '832751514&show_for_all=321d89d3d8', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 17, 'IceZorro', true, '832750703&show_for_all=8850089d75', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'IceZorro', true, '832495197&show_for_all=3be2f9cff9', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'IceZorro', false, '832489563&show_for_all=89c95b3976', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 17, 'IceZorro', true, '832488555&show_for_all=cac7799ded', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 17, 'IceZorro', true, '832487833&show_for_all=1d69a44dab', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 17, 'IceZorro', false, '832486236&show_for_all=65bf633f6c', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 17, 'IceZorro', true, '832485490&show_for_all=cb3b710a63', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 17, 'IceZorro', true, '832483985&show_for_all=2d9afb73f5', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 17, 'IceZorro', false, '832480814&show_for_all=306dc55139', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 17, 'IceZorro', true, '832479208&show_for_all=bf5bdfdc90', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'IceZorro', true, '832478697&show_for_all=112dd09c5c', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'IceZorro', false, '832477135&show_for_all=06482c016a', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 17, 'IceZorro', true, '832474296&show_for_all=5ec118e503', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 17, 'IceZorro', false, '832444520&show_for_all=ad7315f5bf', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 17, 'IceZorro', false, '832443380&show_for_all=433ff94f3c', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 17, 'IceZorro', true, '832443069&show_for_all=6c346e3fdf', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 17, 'IceZorro', true, '832442460&show_for_all=8348986ee2', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 17, 'IceZorro', true, '832441187&show_for_all=bd6001be35', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 17, 'IceZorro', true, '832440936&show_for_all=2b9c83fd83', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'IceZorro', true, '832440383&show_for_all=5a8d72042e', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'IceZorro', false, '832439134&show_for_all=2ffbe03255', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'IceZorro', false, '832437878&show_for_all=401bb79d8f', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'IceZorro', false, '832436219&show_for_all=4bc06c40cc', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'IceZorro', false, '832434814&show_for_all=b39659a131', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 17, 'IceZorro', true, '832433601&show_for_all=9b505eacda', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 17, 'IceZorro', true, '832432680&show_for_all=1a5a81377c', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 17, 'IceZorro', false, '832429373&show_for_all=1113ef826d', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 17, 'IceZorro', false, '832427184&show_for_all=8df8e7518e', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 17, 'IceZorro', true, '832426451&show_for_all=c7da9a01e1', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 17, 'IceZorro', true, '832425911&show_for_all=49c3b05723', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'IceZorro', true, '832424948&show_for_all=8ce76ea2c5', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'IceZorro', false, '832422426&show_for_all=daf953925b', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 17, 'IceZorro', true, '820673496&show_for_all=85154c1012', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 17, 'IceZorro', true, '820671800&show_for_all=0e094a72ec', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'IceZorro', true, '820670361&show_for_all=c077111d7e', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'IceZorro', false, '820669107&show_for_all=a639ac20af', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'IceZorro', false, '820667248&show_for_all=3227fb269a', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'IceZorro', false, '820665026&show_for_all=f4f678c8a9', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'IceZorro', false, '820662647&show_for_all=11d75c23ad', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 17, 'IceZorro', true, '820661627&show_for_all=993222785a', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 17, 'IceZorro', true, '820660019&show_for_all=8a7f9d2f9d', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 17, 'IceZorro', true, '820658673&show_for_all=9f54e1a790', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 17, 'IceZorro', true, '820657965&show_for_all=cec339187a', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 17, 'IceZorro', true, '820657309&show_for_all=a96adc4f91', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 17, 'IceZorro', true, '820654790&show_for_all=3c3d15f325', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 17, 'IceZorro', false, '820646691&show_for_all=23184dfb38', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'IceZorro', true, '820620668&show_for_all=8ec25dc307', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 17, 'IceZorro', true, '820619146&show_for_all=f2f022a351', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 17, 'IceZorro', true, '820618707&show_for_all=043a2e6955', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 17, 'IceZorro', true, '820617849&show_for_all=afd72dff1e', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 17, 'IceZorro', false, '820615352&show_for_all=72c2f190ab', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 17, 'IceZorro', true, '820614661&show_for_all=78894e3ec4', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 17, 'IceZorro', true, '820613673&show_for_all=a03c941d95', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 17, 'IceZorro', true, '820612576&show_for_all=ac92312591', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 17, 'IceZorro', true, '820606389&show_for_all=54f28e9767', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 17, 'IceZorro', true, '820605047&show_for_all=ee8332de74', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 17, 'IceZorro', true, '820603667&show_for_all=1ec106c07d', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 17, 'IceZorro', true, '820602602&show_for_all=b37c358256', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 17, 'IceZorro', true, '820602069&show_for_all=832b634fcd', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 17, 'IceZorro', true, '820601096&show_for_all=5d906dbbb1', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 17, 'IceZorro', true, '820599630&show_for_all=beae4680e9', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 17, 'IceZorro', true, '820598573&show_for_all=b850807817', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 17, 'IceZorro', true, '820597988&show_for_all=d306348d2c', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 17, 'IceZorro', true, '820597444&show_for_all=9ec8786370', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 17, 'IceZorro', true, '820596705&show_for_all=ee812bfc55', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 17, 'IceZorro', false, '820594559&show_for_all=b9950838d2', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'IceZorro', true, '820530768&show_for_all=0d124d5e6e', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 17, 'IceZorro', true, '820529650&show_for_all=bfa209d629', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 17, 'IceZorro', true, '820522378&show_for_all=78e53a31a1', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'IceZorro', true, '820521103&show_for_all=37902d2005', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'IceZorro', false, '820519095&show_for_all=326b8956be', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'IceZorro', true, '820515951&show_for_all=b15ac54f40', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'IceZorro', false, '820513144&show_for_all=7ae53a5adb', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'IceZorro', true, '820511890&show_for_all=4645081316', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'IceZorro', false, '820508480&show_for_all=3c9f476a6c', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'IceZorro', false, '820506758&show_for_all=21b6268102', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'IceZorro', false, '820505043&show_for_all=ba9dcda14d', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 17, 'IceZorro', true, '820504413&show_for_all=582f790be7', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'IceZorro', true, '820503054&show_for_all=5968b7fcea', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 17, 'IceZorro', true, '820502182&show_for_all=34a94094f8', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 17, 'IceZorro', true, '820500939&show_for_all=68b2774d46', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 17, 'IceZorro', true, '820491248&show_for_all=45918eba8b', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'IceZorro', true, '820487023&show_for_all=5a928e701b', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'IceZorro', false, '820485029&show_for_all=16867acd87', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 17, 'IceZorro', true, '820484110&show_for_all=1116e293c8', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'IceZorro', true, '820481794&show_for_all=dc80c77d7a', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'IceZorro', false, '820479147&show_for_all=f131de1bde', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'IceZorro', false, '820477342&show_for_all=ec9722b539', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 17, 'IceZorro', true, '820476598&show_for_all=f8f05da093', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'IceZorro', true, '820475375&show_for_all=ba7809e060', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 17, 'IceZorro', true, '820473998&show_for_all=f9e427e451', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 17, 'IceZorro', true, '820472733&show_for_all=1d0e5a4ed0', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 17, 'IceZorro', true, '819352140&show_for_all=c857c0dda4', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 17, 'IceZorro', true, '819349761&show_for_all=74f591ed99', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 17, 'IceZorro', true, '819348752&show_for_all=7af6f27a96', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'IceZorro', true, '819346886&show_for_all=7c5dae8a97', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 17, 'IceZorro', true, '819340019&show_for_all=fea57c7549', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 17, 'IceZorro', false, '819193381&show_for_all=f854b70f21', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 17, 'IceZorro', false, '819189952&show_for_all=80f7e35776', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 17, 'IceZorro', true, '819188622&show_for_all=31d98a4d39', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 17, 'IceZorro', true, '819187639&show_for_all=0ccef5acc6', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 17, 'IceZorro', true, '819181524&show_for_all=56521b28fa', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 17, 'IceZorro', true, '819180358&show_for_all=556b111500', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 17, 'IceZorro', true, '819177265&show_for_all=8277c6c772', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'IceZorro', true, '819176220&show_for_all=82d0f78114', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 17, 'IceZorro', true, '819169973&show_for_all=34769a9e35', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 17, 'IceZorro', true, '819159802&show_for_all=7dd12dccd4', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 17, 'IceZorro', false, '819157620&show_for_all=f4f64d95b4', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 17, 'IceZorro', false, '819139579&show_for_all=bd09f81388', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'IceZorro', true, '819135965&show_for_all=1562991a53', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'IceZorro', false, '819132386&show_for_all=0c280e8fbb', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 17, 'IceZorro', true, '814586555&show_for_all=21a9fcfe7b', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 17, 'IceZorro', true, '814576010&show_for_all=16f5bd10aa', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 17, 'IceZorro', false, '814571218&show_for_all=6fcf08cee7', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'IceZorro', false, '814567590&show_for_all=ed5ebf5e41', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 17, 'IceZorro', true, '814565632&show_for_all=2698abcc4a', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'IceZorro', true, '814558262&show_for_all=ebce0c3bf4', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 17, 'IceZorro', true, '812111242&show_for_all=7a1172b5a5', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 17, 'IceZorro', false, '812069204&show_for_all=997abbcc37', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 17, 'IceZorro', true, '812067556&show_for_all=88b0b3f5dd', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'IceZorro', true, '812066336&show_for_all=5f963f2149', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'IceZorro', false, '812062833&show_for_all=97f6db592d', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'IceZorro', false, '812061280&show_for_all=6bb2aa4f78', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'IceZorro', false, '812059063&show_for_all=abf4e701b8', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'IceZorro', true, '812057785&show_for_all=451173a0e9', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'IceZorro', true, '812056228&show_for_all=b5b7027052', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'IceZorro', false, '812053495&show_for_all=b51358032e', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'IceZorro', false, '812039628&show_for_all=63100f7031', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'IceZorro', false, '812036697&show_for_all=5bfbf8b9de', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 17, 'IceZorro', true, '812036181&show_for_all=c3601c5922', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 17, 'IceZorro', true, '812035606&show_for_all=36a6c35458', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 17, 'IceZorro', true, '812034657&show_for_all=a28501c8e1', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'IceZorro', true, '812031812&show_for_all=a0f70859f0', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'IceZorro', false, '812027890&show_for_all=44734da328', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 17, 'IceZorro', true, '812022820&show_for_all=7f73c744c3', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 17, 'IceZorro', false, '812020862&show_for_all=4405c55d60', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 17, 'IceZorro', true, '812019158&show_for_all=987931454f', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 17, 'IceZorro', false, '812017382&show_for_all=6ae246da3c', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'IceZorro', true, '812015795&show_for_all=9d9add123c', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'IceZorro', false, '812013861&show_for_all=5974b09911', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'IceZorro', false, '812011980&show_for_all=8a17a3fb2c', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'IceZorro', false, '812009252&show_for_all=461c2db1e5', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'IceZorro', false, '811962363&show_for_all=08753d6e3d', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 17, 'IceZorro', true, '811961025&show_for_all=235c6077c3', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'IceZorro', true, '811959596&show_for_all=c700943190', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 17, 'IceZorro', true, '811958098&show_for_all=c1ee5300ae', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 17, 'IceZorro', false, '811957150&show_for_all=48c6cf76e3', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'IceZorro', true, '811955805&show_for_all=69863b9d9b', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'IceZorro', false, '811953053&show_for_all=3bf434e67e', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'IceZorro', false, '811950549&show_for_all=af004971a0', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'IceZorro', true, '811948452&show_for_all=6dc8119da8', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'IceZorro', false, '811945869&show_for_all=34c8a2fbe6', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'IceZorro', false, '811939706&show_for_all=e4b0b1b17d', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 17, 'IceZorro', true, '811938442&show_for_all=442da825f7', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'IceZorro', true, '804387012&show_for_all=d8a0b1b93d', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 17, 'IceZorro', true, '804386352&show_for_all=44d7dc2f8a', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'IceZorro', true, '804385345&show_for_all=f595c5c344', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'IceZorro', false, '804382407&show_for_all=58da1bf9dc', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'IceZorro', false, '804380740&show_for_all=aa3fc8e972', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'IceZorro', true, '804380127&show_for_all=d412487cad', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 17, 'IceZorro', true, '804260558&show_for_all=729efce341', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 17, 'IceZorro', true, '804259704&show_for_all=3d66eaf7c6', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 17, 'IceZorro', false, '795235925&show_for_all=26c4be3584', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 17, 'IceZorro', true, '795235636&show_for_all=af4c4c9250', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'IceZorro', true, '795235002&show_for_all=cdc0ea4e9b', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'IceZorro', false, '795232799&show_for_all=496e605774', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'IceZorro', false, '795228928&show_for_all=b27f1461cf', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 17, 'IceZorro', true, '795228211&show_for_all=101a4caf13', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 17, 'IceZorro', true, '795227639&show_for_all=bcb2f3afaf', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'IceZorro', true, '795226315&show_for_all=096960eb89', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 17, 'IceZorro', true, '795225287&show_for_all=877a244ed2', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 17, 'IceZorro', false, '795203631&show_for_all=e6b3792f53', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 17, 'IceZorro', true, '795198753&show_for_all=d1ed30f3b5', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'IceZorro', true, '795198189&show_for_all=185db81e09', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 17, 'IceZorro', true, '795197552&show_for_all=f6f0d09315', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'IceZorro', true, '795192511&show_for_all=5e336ca346', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 17, 'IceZorro', true, '795191932&show_for_all=abcc01fc91', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'IceZorro', true, '795191394&show_for_all=4a575c5255', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'IceZorro', false, '795189523&show_for_all=0c33b68c0f', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'IceZorro', false, '795186637&show_for_all=8d9bf2af0e', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'IceZorro', true, '795129106&show_for_all=056b635fa4', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 17, 'IceZorro', true, '795128104&show_for_all=c7788dc0b5', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 17, 'IceZorro', false, '795126044&show_for_all=ffdfb11bd5', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 17, 'IceZorro', true, '795125275&show_for_all=7431c47918', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 17, 'IceZorro', true, '795124430&show_for_all=c25e506db7', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 17, 'IceZorro', true, '795123154&show_for_all=20c65087c2', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 17, 'IceZorro', true, '795082042&show_for_all=ccf613936a', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 17, 'IceZorro', false, '795068952&show_for_all=8b884a1fbb', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 17, 'IceZorro', true, '795068638&show_for_all=0d9139dab1', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 17, 'IceZorro', true, '795067831&show_for_all=2c0ac671c0', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 17, 'IceZorro', false, '795065038&show_for_all=c37c4a69ca', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 17, 'IceZorro', true, '795063380&show_for_all=3e01089094', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 17, 'IceZorro', false, '795058004&show_for_all=22bf5dd110', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 17, 'IceZorro', true, '795057311&show_for_all=7696c9587f', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 17, 'IceZorro', true, '795056679&show_for_all=ff8486f38c', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 17, 'IceZorro', true, '795055805&show_for_all=c122a28f06', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 17, 'IceZorro', false, '794893749&show_for_all=c05f40b702', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'IceZorro', true, '794892949&show_for_all=84e77605c0', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'IceZorro', true, '794892126&show_for_all=c089bf3e92', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'IceZorro', false, '794747869&show_for_all=b5f2a7a29c', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 17, 'IceZorro', true, '794747410&show_for_all=c80715b92d', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 17, 'IceZorro', true, '794746873&show_for_all=865073e538', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 17, 'IceZorro', true, '794746310&show_for_all=b17c12944e', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 17, 'IceZorro', true, '794745840&show_for_all=fd27f9b7ee', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 17, 'IceZorro', false, '787093342&show_for_all=5c6df2acc8', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 17, 'IceZorro', false, '787081589&show_for_all=72094310ac', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'IceZorro', true, '787071112&show_for_all=97dd909958', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'IceZorro', false, '787058665&show_for_all=128ea652f9', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'IceZorro', false, '787052125&show_for_all=c4565fabe9', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'IceZorro', false, '787048768&show_for_all=2ff64f141c', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'IceZorro', false, '787045881&show_for_all=d75bafc282', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 17, 'IceZorro', true, '787045354&show_for_all=b8a5a51c29', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 17, 'IceZorro', false, '787042153&show_for_all=a5cc302bc8', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'IceZorro', true, '787041040&show_for_all=87898eb60c', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'IceZorro', false, '787027176&show_for_all=1dfc1e0f77', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'IceZorro', true, '787023902&show_for_all=0dbcacb62b', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'IceZorro', false, '786996200&show_for_all=91ef175dc2', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'IceZorro', true, '786995808&show_for_all=a175523348', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 17, 'IceZorro', true, '786995503&show_for_all=28e3d496dc', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 17, 'IceZorro', true, '786995049&show_for_all=2f06ed4ecd', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 17, 'IceZorro', true, '786978079&show_for_all=1377d4cc8d', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 17, 'IceZorro', false, '786963151&show_for_all=10e4afc447', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 17, 'IceZorro', false, '786959396&show_for_all=5c0c75a5a3', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 17, 'IceZorro', true, '786956008&show_for_all=f20a90cc00', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 16, 'IceZorro', true, '776356399&show_for_all=dfdbce6c65', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 16, 'IceZorro', true, '776355810&show_for_all=a19ce0f5db', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 16, 'IceZorro', true, '776355392&show_for_all=14d3f8779f', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 16, 'IceZorro', true, '776354967&show_for_all=99960967d1', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 16, 'IceZorro', true, '776354454&show_for_all=2cf1940d37', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 16, 'IceZorro', true, '776353839&show_for_all=ed2e24b85c', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 16, 'IceZorro', false, '776346075&show_for_all=97ef7663db', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 16, 'IceZorro', false, '776342310&show_for_all=9ba099c222', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 16, 'IceZorro', false, '776296791&show_for_all=a48496b398', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 16, 'IceZorro', true, '776296501&show_for_all=c1135f8409', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 16, 'IceZorro', true, '776296203&show_for_all=b467473236', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 16, 'IceZorro', true, '776295412&show_for_all=d3545d3cc7', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 16, 'IceZorro', false, '776292656&show_for_all=475de0124b', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 16, 'IceZorro', true, '776292000&show_for_all=2e9ff4a086', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 16, 'IceZorro', true, '776290585&show_for_all=911a9688ed', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 16, 'IceZorro', false, '776146769&show_for_all=a6ff045f23', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 16, 'IceZorro', false, '776141495&show_for_all=40e2a3cff6', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 16, 'IceZorro', true, '776140697&show_for_all=40593509e8', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 16, 'IceZorro', true, '776140244&show_for_all=835f815ef9', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 16, 'IceZorro', true, '776139506&show_for_all=d088f68936', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 16, 'IceZorro', true, '776138692&show_for_all=50d6f0a2ad', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 16, 'IceZorro', true, '776138263&show_for_all=cb90897d17', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 16, 'IceZorro', true, '776137786&show_for_all=2b8d6becce', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 16, 'IceZorro', true, '776137543&show_for_all=a01c6f1e3c', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 16, 'IceZorro', true, '775985385&show_for_all=bdb86d69ff', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 16, 'IceZorro', true, '775984726&show_for_all=7bec47d003', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 16, 'IceZorro', true, '775984217&show_for_all=e224a63135', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 16, 'IceZorro', true, '775983875&show_for_all=dbc795b6b2', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 16, 'IceZorro', false, '775979678&show_for_all=0586503191', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 16, 'IceZorro', true, '775978874&show_for_all=750fe287a5', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 16, 'IceZorro', true, '775978284&show_for_all=9f5c0dac01', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 16, 'IceZorro', false, '775974844&show_for_all=47b5335bc7', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 16, 'IceZorro', true, '775974600&show_for_all=e0660879a0', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 16, 'IceZorro', true, '775974039&show_for_all=19d5b31f24', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 16, 'IceZorro', true, '775954783&show_for_all=3b0a325d18', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 16, 'IceZorro', true, '775952531&show_for_all=f1de292a9a', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 16, 'IceZorro', false, '775950804&show_for_all=bc1b23f96f', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 16, 'IceZorro', false, '775947597&show_for_all=531c584a34', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 16, 'IceZorro', true, '775946842&show_for_all=c8bbdadd50', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 16, 'IceZorro', true, '775942650&show_for_all=e4dd901549', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 16, 'IceZorro', true, '775942281&show_for_all=b3bff5502b', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 16, 'IceZorro', true, '775941948&show_for_all=a5b23ed4e1', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 16, 'IceZorro', true, '775941523&show_for_all=223b284fd9', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 16, 'IceZorro', true, '775941134&show_for_all=69588191d2', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 16, 'IceZorro', false, '775939307&show_for_all=64cd2e50c9', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 16, 'IceZorro', false, '775935577&show_for_all=76f1677139', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 16, 'IceZorro', true, '775935283&show_for_all=52c7f336b2', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 16, 'IceZorro', true, '775932665&show_for_all=11062fc219', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 16, 'IceZorro', true, '775505557&show_for_all=4a77ab42d8', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 16, 'IceZorro', true, '775504990&show_for_all=49203c53de', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 16, 'IceZorro', false, '775502642&show_for_all=3e838c4311', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 16, 'IceZorro', true, '775502241&show_for_all=23a00883af', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 16, 'IceZorro', true, '775501691&show_for_all=630d78c746', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 16, 'IceZorro', true, '775501073&show_for_all=9c2d694705', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 16, 'IceZorro', true, '775493379&show_for_all=02c89e0b05', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 16, 'IceZorro', true, '775493075&show_for_all=b8365005de', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 16, 'IceZorro', true, '775492711&show_for_all=0d00396a9d', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 16, 'IceZorro', true, '775492138&show_for_all=86eda8d2d4', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 16, 'IceZorro', true, '775491767&show_for_all=29aa2fb0ee', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 16, 'IceZorro', true, '775489269&show_for_all=f094696773', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 16, 'IceZorro', true, '775489108&show_for_all=6f7a06e0ab', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 16, 'IceZorro', true, '775488810&show_for_all=90880bb3bb', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 16, 'IceZorro', false, '775486746&show_for_all=a5502cff8c', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 16, 'IceZorro', true, '775486094&show_for_all=006781b63a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 16, 'IceZorro', true, '775485436&show_for_all=9080e9b64a', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 16, 'IceZorro', true, '775484951&show_for_all=4992f39426', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 16, 'IceZorro', true, '775484619&show_for_all=476fcf3495', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 16, 'IceZorro', true, '775484305&show_for_all=7c6fa204df', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 16, 'IceZorro', true, '759921506&show_for_all=3556966a5a', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 16, 'IceZorro', true, '759912862&show_for_all=512956dd07', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 16, 'IceZorro', true, '759910534&show_for_all=78f5b01a5c', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 16, 'IceZorro', true, '759908272&show_for_all=b9b1041857', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 16, 'IceZorro', true, '759905518&show_for_all=81998f8b5f', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 16, 'IceZorro', true, '759900206&show_for_all=6a7722882c', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 16, 'IceZorro', true, '759899188&show_for_all=c6152cd2ba', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 16, 'IceZorro', true, '759896409&show_for_all=6f0a8554df', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'IceZorro', true, '759885882&show_for_all=1585f56770', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 16, 'IceZorro', true, '759875976&show_for_all=5b06427b32', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 16, 'IceZorro', true, '759874626&show_for_all=9790e29204', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 16, 'IceZorro', true, '759871606&show_for_all=92a712a26c', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 16, 'IceZorro', true, '759869845&show_for_all=39e8d023c9', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 16, 'IceZorro', true, '759867486&show_for_all=8579c0001c', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 16, 'IceZorro', true, '759862530&show_for_all=bf2a165db7', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 16, 'IceZorro', true, '759858692&show_for_all=fa90a1be0b', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 16, 'IceZorro', true, '759857656&show_for_all=b0cbcad7d5', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 16, 'IceZorro', true, '759856214&show_for_all=1336866e82', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 16, 'IceZorro', true, '759852186&show_for_all=f271d532a5', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 16, 'IceZorro', true, '759849127&show_for_all=3b14910bdd', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 16, 'IceZorro', true, '759843984&show_for_all=29957af630', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 16, 'IceZorro', true, '759841142&show_for_all=dbaa6e61df', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 16, 'IceZorro', true, '759838977&show_for_all=e37762f7e0', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 16, 'IceZorro', true, '759834601&show_for_all=a3597bfbdc', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 16, 'IceZorro', true, '759833634&show_for_all=0c545ab26e', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 16, 'IceZorro', true, '759831832&show_for_all=ea51b7d00d', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'IceZorro', true, '759824929&show_for_all=e62601250e', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'IceZorro', false, '759810955&show_for_all=a5b54de874', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'IceZorro', false, '759796534&show_for_all=0f199781ec', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'IceZorro', false, '759785598&show_for_all=37ae95ea7c', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 16, 'IceZorro', true, '759784528&show_for_all=f49de757e4', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 16, 'IceZorro', true, '759783378&show_for_all=9d0ad435b8', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 16, 'IceZorro', true, '759779919&show_for_all=c7b51e27bc', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 16, 'IceZorro', true, '759775786&show_for_all=1f01dd3186', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 16, 'IceZorro', true, '759772317&show_for_all=74ec3f60d3', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 16, 'IceZorro', true, '759768943&show_for_all=5d56be12d2', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 16, 'IceZorro', true, '759763842&show_for_all=514d2280e3', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 16, 'IceZorro', true, '759761995&show_for_all=ebaaa972f8', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 16, 'IceZorro', true, '759756742&show_for_all=0029d842f8', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 20, 'Starshina214', true, '837591439&show_for_all=ac91605359', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 20, 'Starshina214', false, '837590341&show_for_all=6a06d0301e', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 20, 'Starshina214', false, '837587436&show_for_all=c6a701f34b', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 20, 'Starshina214', true, '837584644&show_for_all=1474f7d0a0', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 20, 'Starshina214', false, '837581649&show_for_all=25d16f8f81', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 20, 'Starshina214', true, '837581017&show_for_all=cf9ebb9ec1', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 20, 'Starshina214', true, '837580183&show_for_all=a89fc04422', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 20, 'Starshina214', false, '837579463&show_for_all=b34c07959a', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 20, 'Starshina214', true, '837577984&show_for_all=48797499b4', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 20, 'Starshina214', true, '837575739&show_for_all=59ea6be179', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 20, 'Starshina214', false, '837573150&show_for_all=f9fe853f0e', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 20, 'Starshina214', true, '837572505&show_for_all=dbb3d133ec', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 20, 'Starshina214', true, '837570911&show_for_all=efaacec7b6', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 20, 'Starshina214', true, '837570153&show_for_all=cc93bc095e', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 20, 'Starshina214', true, '837567834&show_for_all=dbcf6f2030', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 20, 'Starshina214', true, '837565947&show_for_all=57b7aa150f', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 20, 'Starshina214', true, '837564497&show_for_all=87a2a7087d', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 20, 'Starshina214', false, '837562135&show_for_all=a9a73fe945', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 20, 'Starshina214', true, '837560363&show_for_all=c00b49f2fb', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 20, 'Starshina214', true, '837559031&show_for_all=7a9982605e', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 20, 'Starshina214', false, '837558683&show_for_all=a5284538bf', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 20, 'Starshina214', true, '837556324&show_for_all=de44951d1c', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 20, 'Starshina214', false, '837553784&show_for_all=72538ab28b', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 20, 'Starshina214', true, '837552748&show_for_all=591deea466', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 20, 'Starshina214', true, '837551005&show_for_all=de7972b347', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 20, 'Starshina214', true, '837549777&show_for_all=ad4bf8b341', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 20, 'Starshina214', false, '837548997&show_for_all=bc47aaa3d1', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 20, 'Starshina214', true, '836566924&show_for_all=6ea95a8c6d', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 20, 'Starshina214', true, '836566047&show_for_all=0139476ed4', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 20, 'Starshina214', false, '836565073&show_for_all=b73a523374', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 20, 'Starshina214', false, '836563553&show_for_all=1a89a85756', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 20, 'Starshina214', true, '836562999&show_for_all=028f42679b', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 20, 'Starshina214', true, '836562347&show_for_all=c7b51ca96a', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 20, 'Starshina214', false, '836561009&show_for_all=01cebb1cd7', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 20, 'Starshina214', true, '836560023&show_for_all=73a427ccbb', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 20, 'Starshina214', false, '836559487&show_for_all=d97016a4f0', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 20, 'Starshina214', true, '836558634&show_for_all=2943ca5fa7', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 20, 'Starshina214', true, '836558291&show_for_all=519fd4eb3e', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 20, 'Starshina214', true, '836557556&show_for_all=22d6dd32a0', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 20, 'Starshina214', false, '836557145&show_for_all=ed6b18726f', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 20, 'Starshina214', false, '836555721&show_for_all=5436522784', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 20, 'Starshina214', false, '836555221&show_for_all=4fcf2e164a', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 20, 'Starshina214', false, '836553767&show_for_all=e00fd830d8', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 20, 'Starshina214', true, '836552819&show_for_all=32248e5ad6', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 20, 'Starshina214', false, '836551236&show_for_all=ca68c9a27b', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 20, 'Starshina214', true, '836550665&show_for_all=7db19df39b', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 20, 'Starshina214', false, '836549076&show_for_all=e8f1391c89', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 20, 'Starshina214', true, '836548642&show_for_all=9f0bd9b577', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 20, 'Starshina214', false, '836547128&show_for_all=d65907d353', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 20, 'Starshina214', true, '836546602&show_for_all=796befb9bb', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 20, 'Starshina214', false, '836545049&show_for_all=564bef7ace', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 20, 'Starshina214', true, '836543160&show_for_all=656006617c', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 20, 'Starshina214', true, '836539967&show_for_all=eedd0d1851', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 20, 'Starshina214', true, '836535062&show_for_all=ca4e23c772', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 20, 'Starshina214', true, '836531068&show_for_all=9e99fb35ea', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 20, 'Starshina214', true, '836530671&show_for_all=f9b55c639f', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 20, 'Starshina214', true, '836530083&show_for_all=51b52742c6', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 20, 'Starshina214', false, '836508756&show_for_all=5d8ae0d121', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 20, 'Starshina214', false, '836508269&show_for_all=232742c201', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 20, 'Starshina214', false, '836506773&show_for_all=62d2b4120c', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 20, 'Starshina214', true, '831196987&show_for_all=d9d6ad3e68', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 20, 'Starshina214', true, '831195943&show_for_all=d56a6c8b36', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 20, 'Starshina214', true, '831194707&show_for_all=5ef2a1c4cd', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 20, 'Starshina214', false, '831190385&show_for_all=ea7039277d', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 20, 'Starshina214', false, '831188581&show_for_all=bd569276ab', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 20, 'Starshina214', true, '831187962&show_for_all=0620d42d93', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 20, 'Starshina214', true, '831187052&show_for_all=3e12491999', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 20, 'Starshina214', true, '831163218&show_for_all=fa400a831f', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 20, 'Starshina214', true, '831162881&show_for_all=c162866c28', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 20, 'Starshina214', true, '831161083&show_for_all=146200a023', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 20, 'Starshina214', true, '831159903&show_for_all=6e7899c112', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 20, 'Starshina214', true, '831159137&show_for_all=c6af708a22', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 20, 'Starshina214', false, '831158593&show_for_all=47389c500d', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 20, 'Starshina214', false, '831158078&show_for_all=9673c6f0c2', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 20, 'Starshina214', false, '831156312&show_for_all=d0792427b6', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 20, 'Starshina214', false, '831152159&show_for_all=d950086c8d', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 20, 'Starshina214', false, '831150465&show_for_all=349b228f9e', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 20, 'Starshina214', true, '831149894&show_for_all=a3edb3035f', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 20, 'Starshina214', false, '831148359&show_for_all=7bcbf24d32', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 20, 'Starshina214', true, '831147901&show_for_all=7d0f076573', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 20, 'Starshina214', true, '831146550&show_for_all=928928c8b5', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 20, 'Starshina214', false, '831144232&show_for_all=4340ec271f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 20, 'Starshina214', true, '831143790&show_for_all=9c580ba6de', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 20, 'Starshina214', true, '831143156&show_for_all=ce495b05da', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 20, 'Starshina214', true, '831142607&show_for_all=3c66fce1b2', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 20, 'Starshina214', true, '831142024&show_for_all=6c50d19ec4', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 20, 'Starshina214', true, '831141711&show_for_all=d1a4d624ef', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 20, 'Starshina214', true, '831093155&show_for_all=a8778fac98', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 20, 'Starshina214', false, '831092576&show_for_all=51da60c8e9', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 20, 'Starshina214', true, '831091733&show_for_all=1bba160ce3', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 20, 'Starshina214', true, '831090352&show_for_all=5f10cedc77', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 20, 'Starshina214', true, '831089577&show_for_all=cecb8fe22c', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 20, 'Starshina214', true, '831087603&show_for_all=409daef231', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 20, 'Starshina214', true, '831086474&show_for_all=99579f627b', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 20, 'Starshina214', true, '831085338&show_for_all=89bbd5f908', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 20, 'Starshina214', true, '831084504&show_for_all=d5b7078a6d', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 20, 'Starshina214', true, '831083735&show_for_all=6496c6c483', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 20, 'Starshina214', true, '831082302&show_for_all=ce7f8a8048', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 20, 'Starshina214', true, '831080691&show_for_all=d64cb9721e', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 20, 'Starshina214', true, '831079539&show_for_all=e89550f24e', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 20, 'Starshina214', true, '831078295&show_for_all=c004668063', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 20, 'Starshina214', false, '831076314&show_for_all=6a49d2c33c', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 20, 'Starshina214', true, '831075846&show_for_all=d0c1f8e6a1', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 20, 'Starshina214', true, '831074484&show_for_all=77a1bd391d', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 20, 'Starshina214', false, '831073632&show_for_all=588e05f1ce', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 20, 'Starshina214', false, '831073190&show_for_all=51cd13f564', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 20, 'Starshina214', true, '831053112&show_for_all=fe0ce82c1e', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 20, 'Starshina214', true, '831052402&show_for_all=60c0692f99', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 20, 'Starshina214', true, '831051550&show_for_all=67d42eff8e', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 20, 'Starshina214', true, '830426525&show_for_all=85664f6bba', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 20, 'Starshina214', false, '830424699&show_for_all=f71e3006b9', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 20, 'Starshina214', true, '830423471&show_for_all=b67ead13b6', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 20, 'Starshina214', true, '830422704&show_for_all=6a6b835fa7', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 20, 'Starshina214', false, '830421916&show_for_all=ae2b5e88a3', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 20, 'Starshina214', true, '830421020&show_for_all=9eb4ce71b0', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 20, 'Starshina214', true, '830420158&show_for_all=d70572f29c', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 20, 'Starshina214', true, '830419485&show_for_all=4a53485801', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 20, 'Starshina214', true, '830419135&show_for_all=c08ddc53a7', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 20, 'Starshina214', true, '830418138&show_for_all=628859c814', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 20, 'Starshina214', true, '830417424&show_for_all=0737c647c4', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 20, 'Starshina214', true, '830416795&show_for_all=df64f405e4', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 20, 'Starshina214', false, '830416373&show_for_all=8c2053b74d', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 20, 'Starshina214', false, '830415753&show_for_all=c11314885b', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 20, 'Starshina214', false, '830414876&show_for_all=4b46450b39', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 20, 'Starshina214', false, '830413064&show_for_all=d2164918e6', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 20, 'Starshina214', true, '830412329&show_for_all=e3d2605d51', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 20, 'Starshina214', true, '830411687&show_for_all=0d956515d0', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 20, 'Starshina214', false, '830409748&show_for_all=a85ce8c936', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 20, 'Starshina214', true, '830407052&show_for_all=767c9e5446', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 20, 'Starshina214', true, '830405689&show_for_all=7939492f20', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 20, 'Starshina214', true, '830376335&show_for_all=f7e3c3729a', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 20, 'Starshina214', false, '830375406&show_for_all=94a5da2172', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 20, 'Starshina214', false, '830371890&show_for_all=fbfbe5be75', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 20, 'Starshina214', true, '830371089&show_for_all=38107060e3', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 20, 'Starshina214', true, '830370506&show_for_all=1e33794361', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 20, 'Starshina214', true, '830369725&show_for_all=857dae04c7', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 20, 'Starshina214', true, '830352126&show_for_all=10513bfaeb', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 20, 'Starshina214', true, '830350481&show_for_all=fd4b8f6cf1', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 20, 'Starshina214', true, '830349682&show_for_all=cac3bb3a59', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 20, 'Starshina214', true, '830349096&show_for_all=81ec1fefb2', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 20, 'Starshina214', true, '830347804&show_for_all=126ab5efb5', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 20, 'Starshina214', true, '830346452&show_for_all=5be62175ce', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 20, 'Starshina214', true, '830346004&show_for_all=73ee0cb7d6', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 20, 'Starshina214', true, '830345358&show_for_all=ba8cdfd6ce', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 20, 'Starshina214', true, '830344646&show_for_all=96110e106c', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 20, 'Starshina214', true, '830344030&show_for_all=bb955f0dac', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 20, 'Starshina214', true, '830343028&show_for_all=48020c1f83', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 20, 'Starshina214', false, '830289710&show_for_all=49e8b0b835', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 20, 'Starshina214', true, '830289017&show_for_all=1f15791064', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 20, 'Starshina214', true, '830288370&show_for_all=b5e5413276', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 20, 'Starshina214', true, '830287364&show_for_all=f657750960', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 20, 'Starshina214', true, '830286404&show_for_all=f79204df47', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 20, 'Starshina214', true, '830285814&show_for_all=038f72b4b2', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 20, 'Starshina214', true, '830285068&show_for_all=5abaccdead', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 20, 'Starshina214', true, '830284672&show_for_all=6cd8e00c31', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 20, 'Starshina214', true, '828714583&show_for_all=9a57988f61', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 20, 'Starshina214', true, '828620632&show_for_all=c1b3024814', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 20, 'Starshina214', true, '828495372&show_for_all=fbddd2f2f6', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 20, 'Starshina214', true, '828493658&show_for_all=cf0b0050c5', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 20, 'Starshina214', true, '828492695&show_for_all=c43e698e92', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 20, 'Starshina214', false, '828491548&show_for_all=8d8c850e7a', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 20, 'Starshina214', true, '828489802&show_for_all=b60769259b', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 20, 'Starshina214', true, '828488368&show_for_all=6fdd9c43dc', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 20, 'Starshina214', true, '828487168&show_for_all=bef528d73a', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 20, 'Starshina214', false, '828484800&show_for_all=f02253f014', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 20, 'Starshina214', false, '828481102&show_for_all=e7bf7b1f4d', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 20, 'Starshina214', false, '828477346&show_for_all=08c043ce1e', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 20, 'Starshina214', true, '828476160&show_for_all=a8233a17d6', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 20, 'Starshina214', false, '828473293&show_for_all=1c51854b8a', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 20, 'Starshina214', true, '828471582&show_for_all=6a7342ecf8', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 20, 'Starshina214', true, '828470453&show_for_all=d9869ced56', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 20, 'Starshina214', false, '828468273&show_for_all=cbd71c712b', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 20, 'Starshina214', true, '828463095&show_for_all=d8174e7c27', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 20, 'Starshina214', true, '828460815&show_for_all=33d5f02eba', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 20, 'Starshina214', false, '828457347&show_for_all=da2bdbc5ec', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 20, 'Starshina214', true, '823752232&show_for_all=aa298c2f1a', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 20, 'Starshina214', true, '823751327&show_for_all=cd02794ac1', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 20, 'Starshina214', true, '823750774&show_for_all=4a60faaef8', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 20, 'Starshina214', true, '823748778&show_for_all=48d057711f', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 20, 'Starshina214', true, '823747436&show_for_all=8ea836308c', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 20, 'Starshina214', false, '823745088&show_for_all=21a1bd4eb8', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 20, 'Starshina214', true, '823743769&show_for_all=d3dca253a3', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 20, 'Starshina214', false, '823741389&show_for_all=cc529f71f8', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 20, 'Starshina214', true, '823740093&show_for_all=ab88bde50e', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 20, 'Starshina214', false, '823738637&show_for_all=87c98945eb', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 20, 'Starshina214', true, '823647770&show_for_all=529ff058a2', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 20, 'Starshina214', true, '823647461&show_for_all=7a5a74647e', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 20, 'Starshina214', false, '823647363&show_for_all=de57df6d37', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 20, 'Starshina214', true, '823647183&show_for_all=bdc7b70108', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 20, 'Starshina214', true, '823646789&show_for_all=d8a3ca0883', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 20, 'Starshina214', true, '823646303&show_for_all=89eb459ed3', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 20, 'Starshina214', false, '823645919&show_for_all=87b4829695', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 20, 'Starshina214', false, '823645595&show_for_all=e1ba26303d', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 20, 'Starshina214', true, '823645187&show_for_all=dc87d05278', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 20, 'Starshina214', true, '823645074&show_for_all=41e208f328', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 20, 'Starshina214', true, '823644866&show_for_all=505007de74', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 20, 'Starshina214', true, '823644670&show_for_all=48522616dc', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 20, 'Starshina214', true, '823644270&show_for_all=613775ba67', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 20, 'Starshina214', true, '823644004&show_for_all=d170839068', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 20, 'Starshina214', true, '823642044&show_for_all=3eb1686ec9', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 20, 'Starshina214', true, '823641619&show_for_all=8e12f398d6', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 20, 'Starshina214', true, '823641295&show_for_all=ab91dda868', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 20, 'Starshina214', true, '823631497&show_for_all=fc1a858237', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 20, 'Starshina214', true, '823630811&show_for_all=2ea3ce8ffa', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 20, 'Starshina214', true, '823630265&show_for_all=ceae15792a', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 20, 'Starshina214', true, '823629640&show_for_all=30e3d2bb72', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 20, 'Starshina214', false, '823628003&show_for_all=94f9d5feda', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 20, 'Starshina214', true, '823541953&show_for_all=3ab0a7d5f9', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 20, 'Starshina214', true, '823539922&show_for_all=1e988a0384', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 20, 'Starshina214', true, '823535278&show_for_all=22ca813b17', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 20, 'Starshina214', true, '823534527&show_for_all=27f144e148', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 20, 'Starshina214', true, '823532823&show_for_all=567a847af0', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 20, 'Starshina214', true, '823531831&show_for_all=2977a95498', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 20, 'Starshina214', true, '823531429&show_for_all=96981ac03b', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 20, 'Starshina214', true, '823530212&show_for_all=723d100359', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 20, 'Starshina214', true, '823529216&show_for_all=bdc34be17e', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 20, 'Starshina214', true, '823528019&show_for_all=75f15cd630', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 20, 'Starshina214', true, '823526829&show_for_all=d8ae03b900', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 20, 'Starshina214', false, '823525472&show_for_all=5eb9433ae4', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 20, 'Starshina214', false, '823523421&show_for_all=c3bc6de8fd', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 20, 'Starshina214', true, '823522233&show_for_all=9a196afd19', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 20, 'Starshina214', true, '823521380&show_for_all=272ac924db', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 20, 'Starshina214', true, '823520904&show_for_all=da9b5bad2f', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 20, 'Starshina214', false, '823520635&show_for_all=6145d07ecb', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 20, 'Starshina214', false, '823519303&show_for_all=d03abde71c', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 20, 'Starshina214', true, '823517625&show_for_all=4b851d5d20', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Starshina214', true, '823516651&show_for_all=edec370748', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Starshina214', false, '823515680&show_for_all=7fbf8ae1eb', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 20, 'Starshina214', true, '823515107&show_for_all=26867c1fc8', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 20, 'Starshina214', true, '823514613&show_for_all=ae7c292612', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 20, 'Starshina214', false, '811731566&show_for_all=1edd714dd2', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 20, 'Starshina214', false, '811729069&show_for_all=ff01b86ccf', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 20, 'Starshina214', false, '811726621&show_for_all=6418a09c37', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 20, 'Starshina214', true, '811725627&show_for_all=e7acc54fb2', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 20, 'Starshina214', true, '810259422&show_for_all=5c90fd5c71', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 20, 'Starshina214', false, '810257385&show_for_all=8ddf10ebdc', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 20, 'Starshina214', false, '810255335&show_for_all=37e8bc5116', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 20, 'Starshina214', false, '810254403&show_for_all=25a4ae77cc', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 20, 'Starshina214', false, '810252458&show_for_all=e8bb4dfa5c', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 20, 'Starshina214', true, '810250897&show_for_all=36d6382edf', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 20, 'Starshina214', true, '810249405&show_for_all=3df93459df', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 20, 'Starshina214', false, '810247234&show_for_all=52333013ed', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 20, 'Starshina214', true, '810246603&show_for_all=b8728d2877', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 20, 'Starshina214', true, '810245773&show_for_all=e425840d62', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 20, 'Starshina214', true, '810245240&show_for_all=e0c62449e3', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 20, 'Starshina214', true, '810244892&show_for_all=e33d425178', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 20, 'Starshina214', true, '810244269&show_for_all=05f47e09fd', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 20, 'Starshina214', true, '810243366&show_for_all=05d28c2ebe', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 20, 'Starshina214', true, '810242780&show_for_all=b5ce8ef79c', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 20, 'Starshina214', true, '810241674&show_for_all=ff88ebed7c', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 20, 'Starshina214', true, '810241144&show_for_all=28aaee0d55', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 20, 'Starshina214', true, '810239574&show_for_all=d29dad603d', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 20, 'Starshina214', true, '810238836&show_for_all=32c6a2a216', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 20, 'Starshina214', false, '810237000&show_for_all=f570831fa0', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 20, 'Starshina214', true, '810236198&show_for_all=ae543baa4a', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 20, 'Starshina214', true, '810235452&show_for_all=71530bbf3f', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 20, 'Starshina214', true, '810234589&show_for_all=3a1a6e33fd', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 20, 'Starshina214', true, '810233834&show_for_all=682e9e6cd1', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 20, 'Starshina214', true, '810214423&show_for_all=99ad0c0404', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 20, 'Starshina214', true, '810213293&show_for_all=4e6758e5d2', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 20, 'Starshina214', false, '810212395&show_for_all=d9b5044d27', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 20, 'Starshina214', true, '810211680&show_for_all=0e16aef066', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 20, 'Starshina214', true, '810211107&show_for_all=61e096b015', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 20, 'Starshina214', true, '810210072&show_for_all=aef05456d8', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 20, 'Starshina214', true, '810209479&show_for_all=e93573137f', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 20, 'Starshina214', true, '810209232&show_for_all=008842f5b1', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 20, 'Starshina214', true, '810208729&show_for_all=5a71d20bea', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 20, 'Starshina214', true, '810207946&show_for_all=d5bdc735fd', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 20, 'Starshina214', false, '810165948&show_for_all=443d5e37f6', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 20, 'Starshina214', true, '810165485&show_for_all=1823844944', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 20, 'Starshina214', true, '810165091&show_for_all=4d53281274', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 20, 'Starshina214', true, '810164611&show_for_all=710db33e87', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 20, 'Starshina214', true, '810163770&show_for_all=2922098972', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 20, 'Starshina214', true, '810163171&show_for_all=f61665ee36', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 20, 'Starshina214', false, '810162774&show_for_all=e2a4b10050', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 20, 'Starshina214', true, '810162211&show_for_all=fa97c29c16', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 20, 'Starshina214', true, '810161690&show_for_all=889de2eac8', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 20, 'Starshina214', false, '809309285&show_for_all=aba6d6fc9d', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Starshina214', false, '809004614&show_for_all=9ff2a9a4c9', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Starshina214', false, '809003861&show_for_all=74dd3aef6c', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 19, 'Starshina214', true, '809003439&show_for_all=6e20d9b31a', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 19, 'Starshina214', true, '809002853&show_for_all=7e11af680b', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 19, 'Starshina214', false, '808071756&show_for_all=153a5dc2ad', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 19, 'Starshina214', false, '808071343&show_for_all=818f77e180', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Starshina214', true, '808022604&show_for_all=aadd49d8c4', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Starshina214', true, '808020852&show_for_all=f7262a9265', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Starshina214', false, '808019379&show_for_all=94cc18843d', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Starshina214', false, '807954967&show_for_all=d0dd17ed7f', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Starshina214', false, '807953851&show_for_all=922790c2d5', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Starshina214', true, '807953344&show_for_all=f10b9354a5', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 19, 'Starshina214', true, '807952571&show_for_all=8f8f3ae441', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 19, 'Starshina214', true, '807951661&show_for_all=a8c10ced56', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 19, 'Starshina214', false, '807946965&show_for_all=0c22b5341f', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 19, 'Starshina214', true, '807946601&show_for_all=76e4e8cfa2', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 19, 'Starshina214', true, '807944641&show_for_all=6bdd8b4b27', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 19, 'Starshina214', true, '807944089&show_for_all=a8f1e773f5', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 19, 'Starshina214', false, '807943608&show_for_all=a48296ceea', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 19, 'Starshina214', true, '807943123&show_for_all=d627768577', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Starshina214', true, '807942652&show_for_all=2a0f955c26', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 19, 'Starshina214', true, '807942153&show_for_all=e6ffeba4a3', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 19, 'Starshina214', true, '807941579&show_for_all=aad449e995', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 19, 'Starshina214', false, '807940245&show_for_all=f749e4c167', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Starshina214', true, '807939451&show_for_all=c714341649', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Starshina214', false, '807938787&show_for_all=10c1b2ca9c', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 19, 'Starshina214', true, '807938486&show_for_all=0e69ebfdd3', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 19, 'Starshina214', false, '807889076&show_for_all=e691d56f2c', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 19, 'Starshina214', true, '807888156&show_for_all=51ce6864b7', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 19, 'Starshina214', true, '807887702&show_for_all=d3f2c4b280', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 19, 'Starshina214', true, '807887267&show_for_all=8dabb639fb', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 19, 'Starshina214', true, '807886747&show_for_all=59924766e3', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Starshina214', true, '802025403&show_for_all=4be4ce9b42', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 19, 'Starshina214', true, '802024740&show_for_all=d6c54b4246', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 19, 'Starshina214', true, '802024203&show_for_all=b02b13cd25', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 19, 'Starshina214', true, '802023806&show_for_all=bae2b45e8e', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 19, 'Starshina214', true, '802023046&show_for_all=78cdb0664a', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 19, 'Starshina214', true, '802022670&show_for_all=d0223a7d80', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Starshina214', true, '802022342&show_for_all=8410366f9d', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 19, 'Starshina214', true, '802021844&show_for_all=2d2c87218d', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 19, 'Starshina214', true, '802021325&show_for_all=91deb07ff2', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 19, 'Starshina214', true, '802020857&show_for_all=5d62d4d483', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 19, 'Starshina214', false, '802020447&show_for_all=9d52727024', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 19, 'Starshina214', true, '802019981&show_for_all=8b4bd4dbec', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 19, 'Starshina214', true, '802019542&show_for_all=35adf2bab2', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 19, 'Starshina214', true, '802018600&show_for_all=e8032a2b45', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 19, 'Starshina214', true, '802017919&show_for_all=83392cc2c6', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 19, 'Starshina214', true, '802017090&show_for_all=524855f65d', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 19, 'Starshina214', true, '802016776&show_for_all=368843bd09', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 19, 'Starshina214', true, '802016520&show_for_all=41a4b327fe', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 19, 'Starshina214', true, '802015938&show_for_all=08e0655a27', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Starshina214', true, '801352957&show_for_all=95f6a8ac3e', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 19, 'Starshina214', true, '801352253&show_for_all=0a74e992bd', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 19, 'Starshina214', true, '801351912&show_for_all=5acf20b705', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 19, 'Starshina214', true, '801351252&show_for_all=90df6cad61', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 19, 'Starshina214', false, '801349845&show_for_all=5262845492', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 19, 'Starshina214', true, '801348917&show_for_all=c74dbac314', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 19, 'Starshina214', true, '801348547&show_for_all=f3a3378a77', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 19, 'Starshina214', true, '801348282&show_for_all=dd05eaae41', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 19, 'Starshina214', false, '801347127&show_for_all=931f4bffd4', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 19, 'Starshina214', true, '801346764&show_for_all=122f8db30d', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 19, 'Starshina214', true, '801346292&show_for_all=cd6e102882', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 19, 'Starshina214', true, '801345841&show_for_all=e2e4ae7981', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 19, 'Starshina214', true, '801345457&show_for_all=f9249c0404', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 19, 'Starshina214', true, '801345023&show_for_all=ae140a3fe4', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 19, 'Starshina214', true, '801292673&show_for_all=939b2f706c', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 19, 'Starshina214', true, '801292151&show_for_all=0096309319', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Starshina214', true, '801289008&show_for_all=0a54bed975', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Starshina214', false, '801287161&show_for_all=ed2213ba39', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 19, 'Starshina214', true, '801286884&show_for_all=e294c9e3df', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 19, 'Starshina214', true, '801286584&show_for_all=32e9ebdb77', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 19, 'Starshina214', true, '801286333&show_for_all=2bf874eec2', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'Starshina214', true, '782461251&show_for_all=4f17e2cded', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'Starshina214', false, '782459579&show_for_all=a099a776ec', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 19, 'Starshina214', true, '782459011&show_for_all=8355418442', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 19, 'Starshina214', true, '782458341&show_for_all=3b6fc385f4', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 19, 'Starshina214', true, '782457886&show_for_all=96bb4ba179', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 19, 'Starshina214', true, '782456707&show_for_all=14bf9ed745', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 19, 'Starshina214', true, '782455994&show_for_all=88f00ab9b0', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 19, 'Starshina214', true, '782455494&show_for_all=78f3212df6', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 19, 'Starshina214', true, '782454407&show_for_all=7958c92097', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 19, 'Starshina214', true, '782454042&show_for_all=5d3ffc7873', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 19, 'Starshina214', true, '782453637&show_for_all=174f3ea1f0', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 19, 'Starshina214', true, '782451358&show_for_all=799405a5b4', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 19, 'Starshina214', true, '782450826&show_for_all=a91a3e3657', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 19, 'Starshina214', true, '782449451&show_for_all=67218bb564', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 19, 'Starshina214', true, '782448929&show_for_all=9b2ac38275', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 19, 'Starshina214', true, '782445637&show_for_all=19bdc54632', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 19, 'Starshina214', true, '782445147&show_for_all=79cbd870c2', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 19, 'Starshina214', true, '782444411&show_for_all=82b7fa0e22', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 19, 'Starshina214', true, '782443966&show_for_all=47d122786c', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Starshina214', true, '777685433&show_for_all=8654e64e0e', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Starshina214', true, '777684364&show_for_all=e279cfaa84', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Starshina214', false, '777681748&show_for_all=cbca18c42b', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'Starshina214', true, '777680702&show_for_all=7a05d9ddfc', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 19, 'Starshina214', true, '777679957&show_for_all=f7cfc05507', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Starshina214', true, '777673833&show_for_all=c24c91d8f0', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'Starshina214', true, '777673392&show_for_all=1a74e55730', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'Starshina214', true, '777672967&show_for_all=445e3fa76f', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'Starshina214', true, '777672161&show_for_all=a23ef7d4c4', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Starshina214', true, '777670411&show_for_all=cc794b32c4', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Starshina214', false, '777662755&show_for_all=fedc735fa7', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 19, 'Starshina214', true, '777661742&show_for_all=e130cd1e88', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'Starshina214', true, '777660808&show_for_all=20c6ef1db8', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'Starshina214', true, '777660107&show_for_all=63014c8f23', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 19, 'Starshina214', true, '777659328&show_for_all=de47c47afc', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'Starshina214', true, '777658530&show_for_all=5e8ef68701', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 19, 'Starshina214', true, '777657231&show_for_all=6a0b31a5c9', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 19, 'Starshina214', true, '777656322&show_for_all=0c8756dd91', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Starshina214', true, '777655462&show_for_all=3ae0077768', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 19, 'Starshina214', true, '777654526&show_for_all=25ba324653', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Starshina214', true, '777607452&show_for_all=6fe00cfd7d', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 19, 'Starshina214', true, '777605879&show_for_all=79fc7a5aeb', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 19, 'Starshina214', true, '777605409&show_for_all=5d53c9f8b9', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 19, 'Starshina214', true, '777604340&show_for_all=45eb495897', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 19, 'Starshina214', true, '777603210&show_for_all=51b8f58ad7', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 19, 'Starshina214', false, '777599974&show_for_all=e5e2f9fad0', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 19, 'Starshina214', true, '777599435&show_for_all=44fe37971f', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 19, 'Starshina214', true, '777599093&show_for_all=dafbaf97b7', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 19, 'Starshina214', false, '777598515&show_for_all=e0432e2b63', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 19, 'Starshina214', true, '777597920&show_for_all=ca84bf4eb2', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 19, 'Starshina214', true, '777596837&show_for_all=983f2a70d2', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 19, 'Starshina214', true, '777596527&show_for_all=81dced66bf', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 19, 'Starshina214', true, '777595946&show_for_all=077a872828', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Starshina214', true, '777595117&show_for_all=125058fc45', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Starshina214', false, '777594644&show_for_all=4d7ed1f0a7', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Starshina214', false, '777594240&show_for_all=1648a1e8b4', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Starshina214', false, '777593486&show_for_all=aab9f4f1aa', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Starshina214', true, '777592841&show_for_all=ab2367644d', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Starshina214', false, '777592322&show_for_all=4a5e508643', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Starshina214', false, '777591270&show_for_all=531cb64316', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Starshina214', false, '777589431&show_for_all=d262ba9e3e', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Starshina214', false, '777587845&show_for_all=5fbbf7180f', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 19, 'Starshina214', true, '777587362&show_for_all=1c4fd38760', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Starshina214', true, '777586624&show_for_all=cffa0623b0', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 19, 'Starshina214', true, '777536244&show_for_all=dc3cfaedd3', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 19, 'Starshina214', true, '777535531&show_for_all=83468f868a', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 19, 'Starshina214', true, '777534767&show_for_all=5d506527ac', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 19, 'Starshina214', true, '777534278&show_for_all=5b8e96db06', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 19, 'Starshina214', true, '777533206&show_for_all=a36de58cec', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 19, 'Starshina214', true, '777532405&show_for_all=06bc71ae2f', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 19, 'Starshina214', false, '777531826&show_for_all=e4c110eecd', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 19, 'Starshina214', true, '777531326&show_for_all=a41242504c', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 19, 'Starshina214', true, '777530870&show_for_all=475dc85a11', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 19, 'Starshina214', true, '777530176&show_for_all=02af4dce74', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 19, 'Starshina214', true, '777529437&show_for_all=bea061f1c4', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 19, 'Starshina214', true, '777527223&show_for_all=2fcab3153b', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 19, 'Starshina214', false, '777524419&show_for_all=a04f56bb86', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 19, 'Starshina214', true, '777523548&show_for_all=2beea62a4a', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 19, 'Starshina214', true, '777522871&show_for_all=42492d8730', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 19, 'Starshina214', true, '777521844&show_for_all=4332fc2480', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 19, 'Starshina214', true, '777520560&show_for_all=a835de2812', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 19, 'Starshina214', true, '777519984&show_for_all=e77e00097a', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Starshina214', true, '777519275&show_for_all=5e756b77b5', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Starshina214', true, '777492089&show_for_all=b0a110acce', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Starshina214', true, '777491170&show_for_all=fa9b30101b', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Starshina214', true, '777489825&show_for_all=2f790ff67d', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Starshina214', true, '777489130&show_for_all=e0b91a133b', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Starshina214', true, '777488467&show_for_all=10e0c83635', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Starshina214', true, '777488201&show_for_all=bbaa970a63', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Starshina214', true, '777487820&show_for_all=d1ae9fe417', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Starshina214', true, '777486769&show_for_all=8af3caa48d', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Starshina214', true, '777485916&show_for_all=4fe98cab2f', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Starshina214', true, '777485438&show_for_all=1eff1dfa65', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Starshina214', true, '777485024&show_for_all=8907034d11', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Starshina214', true, '777484434&show_for_all=2fdc401a9e', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Starshina214', true, '777483494&show_for_all=fdec8981ea', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Starshina214', false, '777481377&show_for_all=b276a0e911', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Starshina214', false, '777479223&show_for_all=0b0f23af2b', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Starshina214', true, '777478269&show_for_all=68ed370752', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Starshina214', true, '777477687&show_for_all=2880794fdb', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Starshina214', true, '777477160&show_for_all=dfad9ecc46', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Starshina214', true, '777476763&show_for_all=19d400a8ba', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Starshina214', false, '777242184&show_for_all=931adf312b', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', true, '777170353&show_for_all=dcc7f47075', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', false, '777168796&show_for_all=66cd2a5764', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', false, '777167532&show_for_all=5caa5762c3', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', false, '777166844&show_for_all=772b5476a3', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Starshina214', true, '777160219&show_for_all=d8880e64de', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Starshina214', true, '777159631&show_for_all=0dde77eb12', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Starshina214', false, '777157778&show_for_all=c80bca819f', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Starshina214', true, '777157352&show_for_all=afab8ad85d', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Starshina214', true, '777156669&show_for_all=9f34612d58', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Starshina214', true, '777156113&show_for_all=ab0bdcf892', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Starshina214', true, '777155884&show_for_all=1883e0b2f0', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Starshina214', true, '777155560&show_for_all=5aecbd2764', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Starshina214', true, '777154203&show_for_all=8c5e4d5eef', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Starshina214', true, '777152259&show_for_all=1a98f867ed', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Starshina214', false, '777151853&show_for_all=560e88afaf', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Starshina214', false, '777151619&show_for_all=ce7928111a', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Starshina214', true, '777151329&show_for_all=e7dbd2d260', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Starshina214', true, '777150789&show_for_all=9da8069477', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Starshina214', true, '777150290&show_for_all=b26a9b99d7', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Starshina214', true, '777149324&show_for_all=8962a2518c', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Starshina214', false, '777148406&show_for_all=70730e79ea', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Starshina214', true, '777147574&show_for_all=e03a6b7ee9', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Starshina214', true, '777147011&show_for_all=4239e7237d', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Starshina214', true, '777146284&show_for_all=d2433ae2c0', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Starshina214', true, '777145659&show_for_all=389ae15252', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', true, '777101737&show_for_all=7701167d3b', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', false, '777101293&show_for_all=ac7c78d9c9', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Starshina214', true, '777100048&show_for_all=56a91b4417', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Starshina214', true, '777099428&show_for_all=dfe8a72c69', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Starshina214', true, '777099072&show_for_all=f0cdb146fe', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Starshina214', true, '777098405&show_for_all=b3b4f9f525', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Starshina214', true, '777098133&show_for_all=46289cc105', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Starshina214', true, '777097921&show_for_all=b3dda7fbba', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Starshina214', true, '777097461&show_for_all=95cab0866f', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Starshina214', true, '777096596&show_for_all=9b3d532971', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Starshina214', true, '777095877&show_for_all=a25004adfe', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Starshina214', true, '777095252&show_for_all=1d469fc389', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Starshina214', true, '777094709&show_for_all=10aa94e603', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Starshina214', true, '777094257&show_for_all=b6d714262e', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Starshina214', true, '777093630&show_for_all=20d0cac8e3', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Starshina214', true, '777092833&show_for_all=e33fe1402b', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Starshina214', false, '777092382&show_for_all=cfad250872', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Starshina214', true, '777091481&show_for_all=1b77f12c79', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Starshina214', true, '777091035&show_for_all=f6c9ea9d24', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Starshina214', false, '777090353&show_for_all=12489c8a72', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Starshina214', true, '777089787&show_for_all=b157b3d061', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Starshina214', true, '777046956&show_for_all=bb2d639746', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 19, 'Starshina214', true, '777045810&show_for_all=a7fb27b13a', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 19, 'Starshina214', true, '777045250&show_for_all=5ef15c59a0', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 19, 'Starshina214', true, '777044721&show_for_all=cb2a9d0946', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Starshina214', true, '777043880&show_for_all=f18e44efdc', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 19, 'Starshina214', true, '777043434&show_for_all=fecf519bc7', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 19, 'Starshina214', true, '777043167&show_for_all=2745a463be', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 19, 'Starshina214', true, '777042288&show_for_all=5a771eb9f9', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 19, 'Starshina214', true, '777040917&show_for_all=02f3ff6a2b', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 19, 'Starshina214', true, '777040074&show_for_all=8f6b45902a', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Starshina214', true, '777039420&show_for_all=61283204a8', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 19, 'Starshina214', true, '777038380&show_for_all=4182304384', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 19, 'Starshina214', true, '777036566&show_for_all=6ccdfe071b', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 19, 'Starshina214', true, '777035707&show_for_all=359816688a', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Starshina214', true, '777034362&show_for_all=18d3d24ddc', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Starshina214', false, '777025859&show_for_all=0cb9921533', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Starshina214', true, '777025065&show_for_all=565cf34f22', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 19, 'Starshina214', true, '777024020&show_for_all=05f3311bd5', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 19, 'Starshina214', true, '777023046&show_for_all=f2d3df6814', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Starshina214', true, '777019156&show_for_all=3ea0ca62d3', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 19, 'Starshina214', true, '777018009&show_for_all=b4d4e836b9', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Starshina214', true, '777017212&show_for_all=68554ac9f6', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 19, 'Starshina214', true, '777016408&show_for_all=c1166e1652', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 19, 'Starshina214', true, '777015734&show_for_all=badbaa41dd', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 19, 'Starshina214', true, '777015154&show_for_all=45b6e31c88', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 19, 'Starshina214', true, '777014850&show_for_all=da97a69a13', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 19, 'Starshina214', false, '777014457&show_for_all=64945e8af8', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Starshina214', true, '777013786&show_for_all=3822a10e98', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Starshina214', true, '777012550&show_for_all=bb5bed3ec0', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Starshina214', true, '777010919&show_for_all=c85ae64df2', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Starshina214', true, '777010178&show_for_all=b0d8602508', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Starshina214', true, '777009273&show_for_all=a0555416c2', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Starshina214', false, '777008619&show_for_all=3abbf13cef', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 19, 'Starshina214', true, '777007872&show_for_all=a6f6508393', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Starshina214', true, '777007089&show_for_all=63a0a08057', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Starshina214', false, '777006649&show_for_all=4d3c352943', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Starshina214', true, '777005925&show_for_all=98aae1367b', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 19, 'Starshina214', true, '777005303&show_for_all=c3d07cdaae', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Starshina214', true, '777004745&show_for_all=a3541b0ac9', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Starshina214', true, '777003944&show_for_all=ab24e7ec8a', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Starshina214', false, '776792858&show_for_all=7f476e2a1d', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 19, 'Starshina214', true, '776792417&show_for_all=cbfcea53b8', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Starshina214', true, '776757907&show_for_all=37601bae77', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Starshina214', true, '776757237&show_for_all=4fbbebde88', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Starshina214', true, '776756907&show_for_all=f73804a1e9', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Starshina214', false, '776756541&show_for_all=25b1d5767b', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Starshina214', false, '776756186&show_for_all=08afbf8d9b', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Starshina214', false, '776755914&show_for_all=b9cb4fb766', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 19, 'Starshina214', true, '776755598&show_for_all=021d723056', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 19, 'Starshina214', true, '776755032&show_for_all=c06e8d04a4', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 19, 'Starshina214', true, '776754703&show_for_all=ce1e1fe362', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 19, 'Starshina214', true, '776754322&show_for_all=acba754ef1', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 19, 'Starshina214', true, '776753753&show_for_all=ccebc578b6', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Starshina214', true, '776752852&show_for_all=126474a410', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Starshina214', false, '776752154&show_for_all=fadaea894b', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Starshina214', false, '776751110&show_for_all=7c8fbf4bcf', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 19, 'Starshina214', true, '776750416&show_for_all=8f5a9a3b54', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 19, 'Starshina214', true, '776749835&show_for_all=c3b7aa0205', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Starshina214', true, '776749242&show_for_all=981c7880ce', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Starshina214', false, '776718551&show_for_all=ed5467808e', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Starshina214', false, '776718037&show_for_all=07242ad48a', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 19, 'Starshina214', true, '776717408&show_for_all=55d0f65b5c', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 19, 'Starshina214', true, '776715187&show_for_all=93bb3c116b', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 19, 'Starshina214', false, '776652200&show_for_all=f2f8fc730f', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 19, 'Starshina214', true, '776651335&show_for_all=530bde38bc', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 19, 'Starshina214', true, '776650677&show_for_all=dc68ae3f22', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 19, 'Starshina214', true, '776650106&show_for_all=2c1b6f7df3', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 19, 'Starshina214', true, '776649752&show_for_all=1dfb91b8e1', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Starshina214', true, '776513449&show_for_all=9e43321d47', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Starshina214', true, '776512633&show_for_all=fbd19def5c', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Starshina214', false, '776511918&show_for_all=caf2ffdfdc', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 19, 'Starshina214', true, '776511142&show_for_all=c810e9e896', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Starshina214', true, '776510269&show_for_all=9a3cddc0f1', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'Starshina214', true, '776509224&show_for_all=834c9c6fe4', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'Starshina214', false, '776508267&show_for_all=0555262949', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 19, 'Starshina214', true, '776507856&show_for_all=52d256db0b', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 19, 'Starshina214', true, '776507561&show_for_all=08821ddef0', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 19, 'Starshina214', true, '776507207&show_for_all=a531ce187e', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 19, 'Starshina214', true, '776506415&show_for_all=fe83e39f93', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 19, 'Starshina214', true, '776505852&show_for_all=3cc3f33712', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 19, 'Starshina214', true, '776505457&show_for_all=505769b6f0', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 19, 'Starshina214', true, '776504542&show_for_all=e5c01cea03', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 19, 'Starshina214', true, '776503909&show_for_all=7242c5aa05', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Starshina214', true, '776503148&show_for_all=7f3b2ebd75', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'Starshina214', true, '776502294&show_for_all=300bac9b35', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 19, 'Starshina214', true, '776501754&show_for_all=4039d5989b', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 19, 'Starshina214', true, '776501092&show_for_all=d232441363', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 19, 'Starshina214', true, '776500858&show_for_all=cdb7696916', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Starshina214', true, '776434764&show_for_all=3436c8bc65', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Starshina214', true, '776434021&show_for_all=a15287569f', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 19, 'Starshina214', true, '776433149&show_for_all=f4875fd7c3', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Starshina214', true, '776432362&show_for_all=6df8aa431b', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'Starshina214', true, '776431382&show_for_all=f054fadd5b', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 19, 'Starshina214', true, '776430995&show_for_all=c2f9c5d3dc', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 19, 'Starshina214', true, '776430566&show_for_all=4c9f02b4f2', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 19, 'Starshina214', true, '776430003&show_for_all=3e6b411db6', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 19, 'Starshina214', true, '776428527&show_for_all=2b4505d38e', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 19, 'Starshina214', true, '776427811&show_for_all=fcf30e1bc9', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 19, 'Starshina214', true, '776427231&show_for_all=5c4f62dbed', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 19, 'Starshina214', true, '776426430&show_for_all=cd0e733da5', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 19, 'Starshina214', true, '776425658&show_for_all=1031127ae9', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Starshina214', true, '776424801&show_for_all=87e9bab21e', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'Starshina214', true, '776417464&show_for_all=86274c4f45', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 19, 'Starshina214', true, '776417090&show_for_all=0e087793f4', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 19, 'Starshina214', true, '776416367&show_for_all=59e50e3028', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 19, 'Starshina214', true, '776415925&show_for_all=b0f79cccbd', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Starshina214', true, '776138515&show_for_all=c3657679a7', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Starshina214', false, '776137805&show_for_all=babe7d15df', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 19, 'Starshina214', true, '776136969&show_for_all=928d7f50bf', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 19, 'Starshina214', true, '776135139&show_for_all=e19f48c7a2', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 19, 'Starshina214', true, '776134133&show_for_all=deb7572ee3', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 19, 'Starshina214', true, '776133510&show_for_all=2885cdc05c', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 19, 'Starshina214', true, '776133286&show_for_all=bbc4ad2336', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 19, 'Starshina214', true, '776132761&show_for_all=d63b683e2b', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 19, 'Starshina214', true, '776131619&show_for_all=b8ae51a846', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 19, 'Starshina214', false, '776130668&show_for_all=ab9d830f76', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 19, 'Starshina214', false, '776129071&show_for_all=65396e17db', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 19, 'Starshina214', true, '776128373&show_for_all=c6b6d605d0', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 19, 'Starshina214', true, '776127600&show_for_all=cb1e5c8a45', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 19, 'Starshina214', true, '776126942&show_for_all=b23e2d76b9', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 19, 'Starshina214', false, '776126239&show_for_all=78d884d4c9', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 19, 'Starshina214', true, '776125534&show_for_all=ce57839502', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 19, 'Starshina214', true, '776124953&show_for_all=601e32455d', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 19, 'Starshina214', true, '776124493&show_for_all=4c609e8fd5', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 19, 'Starshina214', true, '776124117&show_for_all=eb499e986e', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 19, 'Starshina214', true, '776123826&show_for_all=51fff07d80', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 19, 'Starshina214', true, '776123379&show_for_all=afef8367e4', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Starshina214', true, '776087127&show_for_all=8710107f7c', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Starshina214', false, '776086500&show_for_all=8a34f2609f', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Starshina214', false, '776077609&show_for_all=8219caeaac', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 19, 'Starshina214', true, '776076887&show_for_all=babbf4dc37', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 19, 'Starshina214', true, '776076445&show_for_all=b75861c104', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 19, 'Starshina214', true, '776076149&show_for_all=07c87cc20b', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 19, 'Starshina214', true, '776075457&show_for_all=481f52512d', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 19, 'Starshina214', true, '776073816&show_for_all=0ea3489797', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 19, 'Starshina214', false, '776073300&show_for_all=810baf1304', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 19, 'Starshina214', true, '776073013&show_for_all=6ee209d7a2', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 19, 'Starshina214', true, '776072535&show_for_all=77df198be9', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 19, 'Starshina214', true, '776071587&show_for_all=fabdb57294', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 19, 'Starshina214', true, '776069589&show_for_all=4948f59c69', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 19, 'Starshina214', true, '776068991&show_for_all=40a7aaf49b', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 19, 'Starshina214', true, '776068304&show_for_all=f9a3ba55bf', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 19, 'Starshina214', true, '776067755&show_for_all=ea27670b36', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 19, 'Starshina214', true, '776067260&show_for_all=7a573a1183', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 19, 'Starshina214', true, '776066563&show_for_all=cd1618079e', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 19, 'Starshina214', true, '776066262&show_for_all=f459f05842', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 19, 'Starshina214', true, '776065971&show_for_all=34bb6133fd', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 19, 'Starshina214', true, '776065724&show_for_all=7ef29d2aaa', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Starshina214', true, '775903735&show_for_all=9e2d45d99a', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Starshina214', true, '775902914&show_for_all=55b53cdcf9', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Starshina214', true, '775900933&show_for_all=4a6927d092', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Starshina214', true, '775900050&show_for_all=b9ca76ee7f', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Starshina214', true, '775899373&show_for_all=e6db313160', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Starshina214', true, '775898852&show_for_all=e7004b50f5', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Starshina214', false, '775898440&show_for_all=e3537ad9e7', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Starshina214', true, '775897677&show_for_all=96b0fd7aff', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Starshina214', true, '775896710&show_for_all=5ed13add7f', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Starshina214', false, '775895757&show_for_all=1ecd4a0c8b', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Starshina214', false, '775834799&show_for_all=a2a88481b6', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Starshina214', false, '775833926&show_for_all=bf49a8e0fa', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Starshina214', false, '775832870&show_for_all=766494fda6', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Starshina214', true, '775832181&show_for_all=20a6de2cec', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Starshina214', true, '775831505&show_for_all=d16fb7f576', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Starshina214', true, '775830835&show_for_all=a55d47c20a', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Starshina214', true, '775830149&show_for_all=d792d8119a', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Starshina214', false, '775829466&show_for_all=182a40c147', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Starshina214', true, '775829018&show_for_all=0c9e706667', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Starshina214', true, '775828340&show_for_all=60e8fc3aaf', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Starshina214', true, '775827965&show_for_all=ada7e815e3', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Starshina214', true, '775827573&show_for_all=59c0475cf0', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Starshina214', true, '775827098&show_for_all=269039e5c3', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Starshina214', true, '775825004&show_for_all=403ae6e20d', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Starshina214', true, '775824084&show_for_all=20335402e7', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 19, 'Starshina214', true, '775823491&show_for_all=42532b90df', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Starshina214', true, '775822934&show_for_all=4638ac4728', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Starshina214', true, '775822362&show_for_all=b8af82c3b9', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Starshina214', true, '775821692&show_for_all=5b3e5d88ed', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Starshina214', true, '775821440&show_for_all=7abd9ec931', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Starshina214', true, '775820979&show_for_all=9f43fca3f8', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Starshina214', true, '775820161&show_for_all=dc4d091ef5', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Starshina214', true, '775819484&show_for_all=e0a111e1b4', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Starshina214', true, '775818816&show_for_all=c670b191ae', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Starshina214', true, '775818422&show_for_all=252b9c2be2', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Starshina214', true, '775818106&show_for_all=8acf40423d', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Starshina214', true, '775817788&show_for_all=7a79f95f56', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Starshina214', true, '775817278&show_for_all=37998f4cd6', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Starshina214', true, '775816839&show_for_all=a7b90a60d4', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Starshina214', true, '775816370&show_for_all=0e8a6f3271', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Starshina214', true, '775815961&show_for_all=18ab8c6d31', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 19, 'Starshina214', true, '775772563&show_for_all=d2c1ba8013', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Starshina214', true, '775747378&show_for_all=fa8f302069', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 19, 'Starshina214', true, '775746452&show_for_all=22c5508e1c', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 19, 'Starshina214', true, '775745678&show_for_all=2c0dee8ffd', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 19, 'Starshina214', false, '775744803&show_for_all=3ab56140bb', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 19, 'Starshina214', true, '775743913&show_for_all=4c4551c6a3', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 19, 'Starshina214', false, '775742116&show_for_all=6814d95cab', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 19, 'Starshina214', true, '775741580&show_for_all=5e208dc8ab', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 19, 'Starshina214', true, '775741119&show_for_all=37e91f669d', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 19, 'Starshina214', true, '775740796&show_for_all=f6cafac07a', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Starshina214', true, '775740279&show_for_all=1f7d95e5b0', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Starshina214', true, '775739181&show_for_all=0139d7a737', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Starshina214', true, '775738091&show_for_all=4bfd040438', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Starshina214', true, '775737390&show_for_all=73d3295337', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Starshina214', false, '775736086&show_for_all=0056139462', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Starshina214', true, '775735412&show_for_all=4caf74367e', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 19, 'Starshina214', true, '775734721&show_for_all=bb1e9f98fc', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 19, 'Starshina214', false, '775733402&show_for_all=c6139c1f54', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Starshina214', true, '775733058&show_for_all=4c2fe595b6', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Starshina214', true, '775732433&show_for_all=02995a3066', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 19, 'Starshina214', true, '775732099&show_for_all=36b9e4d5ce', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Starshina214', true, '775731747&show_for_all=0d2f823c01', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Starshina214', true, '775731361&show_for_all=925c9e39d1', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Starshina214', true, '774893149&show_for_all=cef2e91d09', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'Starshina214', true, '774892566&show_for_all=449973c88d', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Starshina214', true, '774892072&show_for_all=a406634a4d', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Starshina214', true, '774891415&show_for_all=a2d3238ba3', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Starshina214', true, '774890841&show_for_all=54d5411454', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Starshina214', false, '774890264&show_for_all=2cc10ad46c', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Starshina214', true, '774889783&show_for_all=0a0883ad48', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Starshina214', false, '774889469&show_for_all=8b39484e7f', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Starshina214', false, '774889040&show_for_all=76ed50403f', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Starshina214', true, '774888836&show_for_all=0365b40e4f', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Starshina214', true, '774888333&show_for_all=a792d0d4b5', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Starshina214', true, '774887781&show_for_all=2586e6c87f', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Starshina214', true, '774887114&show_for_all=1628c52beb', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Starshina214', true, '774886717&show_for_all=18c1b509e6', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Starshina214', true, '774885989&show_for_all=fd8f24f7b7', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Starshina214', false, '774885373&show_for_all=1ff3afc25e', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Starshina214', true, '774884990&show_for_all=b84457cb89', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Starshina214', false, '774884306&show_for_all=3283fa8d96', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Starshina214', true, '774883783&show_for_all=10335339ce', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Starshina214', false, '774883356&show_for_all=0c85a3317d', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Starshina214', false, '774882924&show_for_all=dc82307862', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Starshina214', false, '774882475&show_for_all=e09b4604d7', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Starshina214', false, '774881465&show_for_all=4200170681', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Starshina214', true, '774880908&show_for_all=c696a153a6', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Starshina214', true, '774880540&show_for_all=490816c9eb', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Starshina214', true, '774880143&show_for_all=f303a3b3df', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Starshina214', true, '774879704&show_for_all=6dfbc6e56b', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Starshina214', true, '772864712&show_for_all=aca20f693a', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Starshina214', true, '772864243&show_for_all=ed6ff16e54', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Starshina214', true, '772863506&show_for_all=c27bcbee76', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Starshina214', true, '772863227&show_for_all=6ccf669c95', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Starshina214', true, '772862984&show_for_all=d4a6814d03', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Starshina214', true, '772862476&show_for_all=65d8545395', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Starshina214', true, '772862019&show_for_all=f13c260efa', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Starshina214', true, '772861531&show_for_all=c4f30fe6d6', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Starshina214', false, '772861080&show_for_all=87e3f90125', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Starshina214', true, '772860642&show_for_all=39c0b55b22', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Starshina214', true, '772860268&show_for_all=abfec6fbbc', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Starshina214', true, '772859984&show_for_all=f08befdb31', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Starshina214', true, '772859615&show_for_all=7327dc7ca6', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Starshina214', true, '772858867&show_for_all=5b9e7f14e1', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Starshina214', false, '772858351&show_for_all=373333476b', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Starshina214', false, '772857832&show_for_all=7e4a4c37e6', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Starshina214', true, '772857031&show_for_all=9f37f89e00', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Starshina214', true, '772856621&show_for_all=333c9c48d6', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Starshina214', true, '772856256&show_for_all=14ab324d11', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Starshina214', true, '772523504&show_for_all=cfcd953e87', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Starshina214', false, '772523109&show_for_all=0dd2076b91', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Starshina214', true, '772522479&show_for_all=802af563b5', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Starshina214', true, '772522084&show_for_all=df75dd8414', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Starshina214', true, '772521625&show_for_all=abe8836876', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Starshina214', true, '772521205&show_for_all=25cc4a793c', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Starshina214', true, '772520657&show_for_all=0b87cfb979', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Starshina214', true, '772520369&show_for_all=c585198513', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Starshina214', true, '772520002&show_for_all=b5aabc1e2f', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Starshina214', true, '772519772&show_for_all=2dd6ec318b', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Starshina214', true, '772519343&show_for_all=1b1ce3467e', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Starshina214', true, '772518389&show_for_all=0bf71b57cc', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Starshina214', true, '772516213&show_for_all=4270b68b5b', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Starshina214', true, '772515599&show_for_all=a026c87f75', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Starshina214', true, '772515090&show_for_all=a157804ee4', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Starshina214', true, '772509027&show_for_all=e991a4e8cb', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Starshina214', true, '772371525&show_for_all=3e2fda099a', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Starshina214', true, '772371172&show_for_all=7b797a64f0', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Starshina214', false, '759536222&show_for_all=38b044910c', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Starshina214', true, '759534367&show_for_all=7c01ac534d', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Starshina214', true, '759533280&show_for_all=73b7bfb483', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 19, 'Starshina214', true, '759532191&show_for_all=eed5ab0895', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 19, 'Dimakkk', true, '836179589&show_for_all=6a47144bb2', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 19, 'Dimakkk', true, '836177692&show_for_all=96bf36163d', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 19, 'Dimakkk', true, '836176597&show_for_all=1c198551ee', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Dimakkk', true, '832858044&show_for_all=7e24744dd9', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Dimakkk', true, '832856880&show_for_all=057dc7af20', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Dimakkk', true, '832855662&show_for_all=220a549708', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Dimakkk', true, '832855120&show_for_all=f775566ec2', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Dimakkk', true, '832854417&show_for_all=49b8458b4e', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Dimakkk', true, '832854270&show_for_all=486db94643', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Dimakkk', true, '832853900&show_for_all=d1b4e77256', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Dimakkk', true, '832853592&show_for_all=8aa314ed6e', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Dimakkk', true, '832853305&show_for_all=09420d3dcf', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Dimakkk', true, '832853030&show_for_all=2cedf34b03', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Dimakkk', true, '832852656&show_for_all=003cfe1383', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Dimakkk', true, '832644956&show_for_all=04ae7af2fc', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Dimakkk', true, '832642399&show_for_all=39c4226abd', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Dimakkk', true, '832640933&show_for_all=bf808a5d6a', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Dimakkk', true, '832640500&show_for_all=09b0b7a97d', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Dimakkk', true, '832639617&show_for_all=61611e3506', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Dimakkk', false, '832638202&show_for_all=24ae94592f', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Dimakkk', false, '832636051&show_for_all=006232d2d1', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Dimakkk', false, '832634247&show_for_all=c13efaf61b', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Dimakkk', true, '832632811&show_for_all=e0ed5e7593', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Dimakkk', false, '832631348&show_for_all=a041f6dcfb', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Dimakkk', true, '831314823&show_for_all=d938c91dfe', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'Dimakkk', true, '831311618&show_for_all=abc9d15764', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Dimakkk', true, '831309972&show_for_all=ded7bd4155', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'Dimakkk', true, '831308355&show_for_all=35a23ececa', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 19, 'Dimakkk', true, '831306828&show_for_all=ae6485d24e', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Dimakkk', true, '831305215&show_for_all=cdb906c226', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 19, 'Dimakkk', true, '831303517&show_for_all=9e54ca2f92', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Dimakkk', true, '831301991&show_for_all=2f3bc8ae59', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Dimakkk', true, '831300792&show_for_all=760ad5ccaf', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Dimakkk', false, '831298973&show_for_all=1a32274c95', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 19, 'Dimakkk', true, '831297538&show_for_all=9b968ffe6c', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 19, 'Dimakkk', true, '831293747&show_for_all=69f23f2493', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Dimakkk', true, '831292731&show_for_all=5187cb2403', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'Dimakkk', true, '831291224&show_for_all=3f3ca0f70b', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'Dimakkk', false, '831289299&show_for_all=eaeb4890f0', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'Dimakkk', true, '831287521&show_for_all=414c7dfbb9', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 19, 'Dimakkk', true, '831274893&show_for_all=40480d19b6', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Dimakkk', true, '831273939&show_for_all=2a851a1383', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Dimakkk', true, '831273225&show_for_all=7e2a38b9bb', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 19, 'Dimakkk', true, '831272027&show_for_all=82c9b840fd', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Dimakkk', true, '830496714&show_for_all=27d8f6fe33', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'Dimakkk', true, '830496187&show_for_all=192e047688', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Dimakkk', true, '830495884&show_for_all=e7b2a171b5', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Dimakkk', true, '830495593&show_for_all=4cd6ad399c', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Dimakkk', true, '830495285&show_for_all=830e37c305', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Dimakkk', true, '830494705&show_for_all=900ac120f4', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Dimakkk', true, '830494401&show_for_all=507ac4a085', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Dimakkk', false, '830433054&show_for_all=16cca7ba81', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Dimakkk', true, '830431349&show_for_all=44caa61b0e', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Dimakkk', true, '830418476&show_for_all=e1ac30530c', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Dimakkk', true, '830416765&show_for_all=2428341579', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Dimakkk', true, '830409472&show_for_all=0654d88971', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Dimakkk', true, '830408584&show_for_all=3b46be2c75', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Dimakkk', true, '830407366&show_for_all=7e177b9c5e', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Dimakkk', true, '830403318&show_for_all=9a31138770', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Dimakkk', true, '830399409&show_for_all=12f3edd3db', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Dimakkk', true, '830397920&show_for_all=dc476ca3fc', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Dimakkk', true, '830396973&show_for_all=3b55075318', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Dimakkk', true, '830395298&show_for_all=d6846a4034', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Dimakkk', true, '830388097&show_for_all=2eedd557cd', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'Dimakkk', true, '830382705&show_for_all=34414fc3f7', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Dimakkk', true, '830381691&show_for_all=c6e53ff429', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Dimakkk', true, '830380352&show_for_all=c3e6ba4b03', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Dimakkk', true, '830378871&show_for_all=38760fd49e', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Dimakkk', true, '830375652&show_for_all=f3d2d85da6', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Dimakkk', true, '830366707&show_for_all=d0b131c15a', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Dimakkk', true, '830364102&show_for_all=26c13b6fa4', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Dimakkk', true, '830362528&show_for_all=d098bd71db', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Dimakkk', true, '830361178&show_for_all=47d453235f', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Dimakkk', false, '830359037&show_for_all=418fad7895', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Dimakkk', true, '830352360&show_for_all=675fbc1c6d', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Dimakkk', true, '830349840&show_for_all=0c8a242a64', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Dimakkk', true, '830349076&show_for_all=ccd927f4bc', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Dimakkk', true, '830346315&show_for_all=2a48b1af73', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Dimakkk', true, '830344016&show_for_all=30b1cc0886', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Dimakkk', true, '830341363&show_for_all=3d1fd705ee', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Dimakkk', true, '830340560&show_for_all=6ed6d26aed', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Dimakkk', true, '830339675&show_for_all=9a1d241065', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Dimakkk', true, '829548788&show_for_all=7af6bea579', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Dimakkk', false, '829544813&show_for_all=746dfb17a2', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 19, 'Dimakkk', true, '829543345&show_for_all=2e4103ceec', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 19, 'Dimakkk', true, '829542175&show_for_all=61f897df26', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 19, 'Dimakkk', true, '829540868&show_for_all=1093d66ca9', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 19, 'Dimakkk', true, '829540045&show_for_all=3d1d98f0fd', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 19, 'Dimakkk', true, '829539096&show_for_all=2af2d63ad8', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 19, 'Dimakkk', true, '829538378&show_for_all=d072eb8e7b', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 19, 'Dimakkk', true, '829537777&show_for_all=3d1f6d84e2', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 19, 'Dimakkk', true, '829536296&show_for_all=d7c7d27401', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 19, 'Dimakkk', true, '829533823&show_for_all=bcc9899e4f', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 19, 'Dimakkk', true, '829533460&show_for_all=66deae8ca4', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Dimakkk', true, '829533092&show_for_all=189c6e7818', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 19, 'Dimakkk', true, '829448777&show_for_all=3e2e3b66ed', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Dimakkk', true, '829444645&show_for_all=bdb10887b9', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Dimakkk', true, '829442104&show_for_all=94396eddde', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 19, 'Dimakkk', true, '829440654&show_for_all=42696e0de0', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Dimakkk', true, '829438739&show_for_all=4f7029d5bd', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Dimakkk', true, '829437237&show_for_all=2e1bece178', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Dimakkk', true, '829398058&show_for_all=0301f0f1f8', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 19, 'Dimakkk', true, '829395773&show_for_all=9627d756ad', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'Dimakkk', true, '829393268&show_for_all=74f9dd101d', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Dimakkk', true, '829388208&show_for_all=19ea6f5cd4', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'Dimakkk', true, '829385102&show_for_all=647d30d25b', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 19, 'Dimakkk', true, '829380597&show_for_all=4e82688513', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Dimakkk', true, '829376187&show_for_all=5a6f8be2af', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'Dimakkk', true, '829374328&show_for_all=5e3d6b9930', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'Dimakkk', true, '829373063&show_for_all=c6608c3ef1', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'Dimakkk', true, '829370466&show_for_all=a5e396f14e', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'Dimakkk', true, '829369059&show_for_all=fa17106c6a', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 19, 'Dimakkk', true, '829368096&show_for_all=da46df2987', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Dimakkk', true, '829364933&show_for_all=703b82341a', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'Dimakkk', true, '829363893&show_for_all=ac6f428eab', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 19, 'Dimakkk', true, '829362258&show_for_all=064f00fd95', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 19, 'Dimakkk', true, '829360864&show_for_all=0934822ef8', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Dimakkk', true, '829360435&show_for_all=9366f2adb5', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 19, 'Dimakkk', true, '829360036&show_for_all=4e44f1fc5b', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Dimakkk', true, '823881964&show_for_all=0fb87fcde6', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Dimakkk', true, '823877614&show_for_all=4e698b8e96', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Dimakkk', true, '823874475&show_for_all=6e52662988', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Dimakkk', true, '823870328&show_for_all=746e18f5e3', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 19, 'Dimakkk', true, '823836133&show_for_all=658a0c7b78', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Dimakkk', true, '823833139&show_for_all=673d1efc83', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 19, 'Dimakkk', true, '823830744&show_for_all=362309d068', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 19, 'Dimakkk', true, '823827863&show_for_all=693daa9f55', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 19, 'Dimakkk', true, '823826281&show_for_all=b0c619dc96', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 19, 'Dimakkk', true, '823825693&show_for_all=0619e546a7', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Dimakkk', true, '823823872&show_for_all=16659e8e41', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Dimakkk', false, '823821903&show_for_all=512a4c8863', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Dimakkk', true, '823819515&show_for_all=5d4811aaa8', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Dimakkk', false, '823812794&show_for_all=c2ad0bb529', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 19, 'Dimakkk', true, '823812076&show_for_all=81e02622ca', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Dimakkk', true, '823811451&show_for_all=8d98c99143', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Dimakkk', true, '823810514&show_for_all=476e5fccd0', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Dimakkk', true, '823756704&show_for_all=c414bfd641', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Dimakkk', true, '823755354&show_for_all=02f8324d8e', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 19, 'Dimakkk', true, '823753380&show_for_all=746ec3c1a0', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Dimakkk', true, '823738988&show_for_all=bc0d46bd71', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 19, 'Dimakkk', true, '823735922&show_for_all=f33522391a', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 19, 'Dimakkk', true, '823733681&show_for_all=303a4cc513', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Dimakkk', true, '823730271&show_for_all=6e417fabfa', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 19, 'Dimakkk', true, '823728232&show_for_all=cd73ba6653', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 19, 'Dimakkk', true, '823725728&show_for_all=c84fa8b68c', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 19, 'Dimakkk', true, '823724411&show_for_all=0541aad866', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 19, 'Dimakkk', true, '823721997&show_for_all=e2419b271c', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 19, 'Dimakkk', true, '823718111&show_for_all=833f1230e9', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Dimakkk', true, '823714899&show_for_all=6572b0bf5a', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Dimakkk', false, '823710688&show_for_all=0aae8faab0', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 19, 'Dimakkk', true, '823708362&show_for_all=4e71281cf1', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 19, 'Dimakkk', true, '823705115&show_for_all=d827656c62', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 19, 'Dimakkk', true, '823702843&show_for_all=2886f959bb', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 19, 'Dimakkk', true, '823699120&show_for_all=678e4b9928', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Dimakkk', true, '823693916&show_for_all=757d44fd04', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Dimakkk', true, '823691087&show_for_all=eee5ff2c0f', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Dimakkk', false, '823686258&show_for_all=08c6df0ed1', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 19, 'Dimakkk', true, '823684069&show_for_all=fecbee250f', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 19, 'Dimakkk', true, '823677630&show_for_all=1abae81a24', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Dimakkk', true, '823617373&show_for_all=a2be2b467e', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Dimakkk', true, '823612123&show_for_all=5424c5ca47', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Dimakkk', true, '823611090&show_for_all=20a308571b', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Dimakkk', true, '823605287&show_for_all=5800914f35', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Dimakkk', true, '823603430&show_for_all=6a32355a74', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Dimakkk', true, '823602169&show_for_all=f316a78c19', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Dimakkk', true, '823599411&show_for_all=2f9d16854d', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Dimakkk', true, '823597728&show_for_all=d17d2ce949', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Dimakkk', true, '823596651&show_for_all=baaba62e02', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Dimakkk', true, '823595234&show_for_all=0969a81b98', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Dimakkk', true, '823590682&show_for_all=4d58c71188', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Dimakkk', true, '823583049&show_for_all=2ad5d5daf7', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Dimakkk', true, '823581677&show_for_all=fb74ea23d5', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Dimakkk', true, '823579557&show_for_all=b535d229df', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Dimakkk', true, '823578365&show_for_all=91d6b0d8e9', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Dimakkk', true, '823576979&show_for_all=e383d74a07', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Dimakkk', true, '823576320&show_for_all=88f0c8b493', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Dimakkk', false, '823574635&show_for_all=e0a087d842', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Dimakkk', true, '823570900&show_for_all=86534db09a', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Dimakkk', true, '821096054&show_for_all=e72cdc20a2', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Dimakkk', true, '821094820&show_for_all=701766a3d1', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Dimakkk', true, '821093619&show_for_all=66a7667000', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Dimakkk', true, '821092277&show_for_all=a9dc0eca70', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Dimakkk', true, '821090118&show_for_all=e3492ba2dc', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Dimakkk', true, '821089039&show_for_all=2bd91a715a', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Dimakkk', true, '821088052&show_for_all=9027d04549', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Dimakkk', true, '821086740&show_for_all=9d26a38a2e', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Dimakkk', true, '821084851&show_for_all=d9daf1b848', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Dimakkk', true, '821081819&show_for_all=2a3148e59b', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Dimakkk', true, '821077472&show_for_all=35c4f6ab9b', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Dimakkk', true, '821072648&show_for_all=df52b29ca2', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Dimakkk', true, '821070231&show_for_all=5d79116413', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Dimakkk', true, '821066818&show_for_all=9fe62278b1', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Dimakkk', true, '821059671&show_for_all=8bcc60a490', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Dimakkk', true, '821058316&show_for_all=f8b175b069', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Dimakkk', true, '821057605&show_for_all=bf1ae6552c', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Dimakkk', true, '821056152&show_for_all=24d2617b1b', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'панацея', true, '822952809&show_for_all=ebe00a51e9', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 17, 'панацея', true, '819504397&show_for_all=f9eda44361', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 17, 'панацея', false, '819501531&show_for_all=8fae326b11', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 17, 'панацея', true, '819500041&show_for_all=4b4f44c317', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 17, 'панацея', true, '819493562&show_for_all=3910bc2701', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 17, 'панацея', true, '819492175&show_for_all=5b2d67c9f1', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 17, 'панацея', true, '819490836&show_for_all=783fe29926', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 17, 'панацея', false, '819486473&show_for_all=88d1c9482b', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 17, 'панацея', true, '819484972&show_for_all=060bb5fe2b', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 17, 'панацея', false, '819475987&show_for_all=9046b96a44', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 17, 'панацея', true, '819475352&show_for_all=bb39249d6a', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 17, 'панацея', true, '819473840&show_for_all=ba01cc89d2', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 17, 'панацея', true, '819469753&show_for_all=c6c4a79ad0', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 17, 'панацея', true, '819467679&show_for_all=d1f7c9f61d', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 17, 'панацея', true, '819466558&show_for_all=2070d10029', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 17, 'панацея', true, '819464014&show_for_all=ce570c095a', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 17, 'панацея', false, '819461394&show_for_all=ec0cee3eae', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 17, 'панацея', false, '819451051&show_for_all=4ac06dbe3e', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 17, 'панацея', true, '819449937&show_for_all=ffe2870d59', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 17, 'панацея', true, '819449181&show_for_all=08e4832ed5', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 17, 'панацея', true, '819446929&show_for_all=b290564e19', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 17, 'панацея', true, '819445696&show_for_all=9f15a7770b', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 17, 'панацея', false, '819442978&show_for_all=d33ec0b2f3', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'панацея', true, '819441620&show_for_all=15dec98ed0', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'панацея', false, '819439517&show_for_all=35ce65e2ed', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'панацея', false, '819436474&show_for_all=ac5ef0073d', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 17, 'панацея', true, '819435311&show_for_all=36afedb0f2', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'панацея', true, '819430898&show_for_all=4bb5b5fce2', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 17, 'панацея', true, '819425879&show_for_all=4d69b19244', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 17, 'панацея', true, '819423640&show_for_all=e704bb0fbd', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 17, 'панацея', true, '788680154&show_for_all=86c7644794', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 17, 'панацея', false, '788658898&show_for_all=c331bd08cb', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'панацея', true, '788656839&show_for_all=69cfa2e416', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'панацея', false, '788593716&show_for_all=da22fd6f1f', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 17, 'панацея', true, '788590974&show_for_all=131740b70a', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 17, 'панацея', true, '788590287&show_for_all=bdfbf246be', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 17, 'панацея', true, '788589082&show_for_all=b4346de200', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'панацея', true, '788587618&show_for_all=a9c30b52ae', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'панацея', false, '788585967&show_for_all=48603033ee', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'панацея', false, '788584240&show_for_all=967af0965b', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'панацея', false, '788582674&show_for_all=5e20c53eb3', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 17, 'панацея', true, '788581731&show_for_all=e678940ae7', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'панацея', true, '787793071&show_for_all=3117097b1a', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 17, 'панацея', true, '787790998&show_for_all=e1f1846111', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 17, 'панацея', false, '787788171&show_for_all=3023ace737', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 17, 'панацея', true, '787786631&show_for_all=926e85b3bc', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 17, 'панацея', true, '787767953&show_for_all=31c5198a75', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 17, 'панацея', true, '787766157&show_for_all=f37c5aaba3', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 17, 'панацея', true, '787764393&show_for_all=c894bc5c97', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 17, 'панацея', true, '787763721&show_for_all=3d7ca93b82', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 17, 'панацея', true, '787759845&show_for_all=03e2985750', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 17, 'панацея', true, '787758863&show_for_all=22af468025', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 17, 'панацея', true, '785577077&show_for_all=a551c02e22', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 17, 'панацея', true, '785576334&show_for_all=b610a8ff61', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 17, 'панацея', true, '785574048&show_for_all=5716c4ed2f', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 17, 'панацея', true, '785573355&show_for_all=68d9f34703', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 17, 'панацея', true, '785559590&show_for_all=2fae708fe4', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 17, 'панацея', true, '785558567&show_for_all=eaa12fcea9', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 17, 'панацея', true, '785557608&show_for_all=3125cc5151', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 17, 'панацея', false, '785555755&show_for_all=c70815849f', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 17, 'панацея', true, '785554963&show_for_all=c67b742dc6', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 17, 'панацея', true, '785554247&show_for_all=740aaf410f', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 17, 'панацея', false, '782610549&show_for_all=0ed13f84d0', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'панацея', true, '782609167&show_for_all=0c949787e8', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'панацея', false, '782606696&show_for_all=f98e8856a7', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'панацея', true, '782605780&show_for_all=2c683662a1', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'панацея', false, '782604087&show_for_all=cb9525f155', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'панацея', false, '782590679&show_for_all=27a0379117', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 17, 'панацея', true, '782590045&show_for_all=0f1a91f449', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 17, 'панацея', true, '782575508&show_for_all=5ca878fc6d', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 17, 'панацея', true, '782574831&show_for_all=e0ef75a18d', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 17, 'панацея', true, '782573964&show_for_all=5214b4a8c5', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 17, 'панацея', false, '782571110&show_for_all=b1f878933d', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 17, 'панацея', true, '782566382&show_for_all=787c146734', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 17, 'панацея', false, '782564845&show_for_all=5bf552d5c6', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'панацея', true, '782262056&show_for_all=4c1a74fc2e', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 17, 'панацея', true, '782260170&show_for_all=76346da438', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 17, 'панацея', true, '782258211&show_for_all=a637f36a3c', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 17, 'панацея', false, '782251225&show_for_all=a9b9fa1c64', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 17, 'панацея', false, '782246024&show_for_all=f724e340be', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 17, 'панацея', false, '782244297&show_for_all=5e1fac2b34', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 17, 'панацея', true, '782242350&show_for_all=716e12e4d1', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 17, 'панацея', true, '782150497&show_for_all=95ddc51abf', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 17, 'панацея', true, '782149159&show_for_all=02c0f63adb', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 17, 'панацея', true, '782146607&show_for_all=ec370552b9', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 17, 'панацея', true, '782145027&show_for_all=814b5bc465', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 17, 'панацея', false, '782143171&show_for_all=b7e06ea4c7', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 17, 'панацея', true, '782142201&show_for_all=6855014995', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'панацея', true, '782130222&show_for_all=af1810b094', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'панацея', false, '782126061&show_for_all=1c5023dfea', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 17, 'панацея', true, '782123773&show_for_all=208b90f3cf', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 17, 'панацея', true, '782122543&show_for_all=3df9259770', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 17, 'панацея', true, '782120958&show_for_all=df0296ee2f', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 17, 'панацея', false, '782117812&show_for_all=553cebf82a', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 17, 'панацея', false, '782086532&show_for_all=7c5edbb5d1', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'панацея', true, '782081492&show_for_all=8b9713384f', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'панацея', false, '782079546&show_for_all=1db89b6eef', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'панацея', false, '782078032&show_for_all=f30d4364d7', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'панацея', false, '781962726&show_for_all=d18eff3487', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 17, 'панацея', true, '781961540&show_for_all=cfc1bd018e', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 17, 'панацея', true, '781960293&show_for_all=19d9ecc1ad', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 17, 'панацея', true, '781958581&show_for_all=60931ca28f', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 17, 'панацея', true, '781932593&show_for_all=691500be9b', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 17, 'панацея', false, '781930569&show_for_all=cd31b85687', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 17, 'панацея', true, '781929188&show_for_all=75c1bb52ac', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 17, 'панацея', false, '781926435&show_for_all=efac26ccb5', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 17, 'панацея', true, '781925350&show_for_all=5449f60eb1', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 17, 'панацея', true, '781924664&show_for_all=d7f3ba1c63', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 17, 'панацея', true, '781923734&show_for_all=283949acb6', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 17, 'панацея', true, '781922816&show_for_all=ea1c284632', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 17, 'панацея', true, '781922305&show_for_all=7956091627', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 17, 'панацея', true, '781921311&show_for_all=0135b2eb03', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 17, 'панацея', false, '781489401&show_for_all=71c594627b', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 17, 'панацея', true, '781487924&show_for_all=c1148bdd7e', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 17, 'панацея', true, '781486521&show_for_all=ab31545d42', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 17, 'панацея', true, '781485541&show_for_all=d0d14321c3', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 17, 'панацея', true, '781484317&show_for_all=265832e823', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 17, 'панацея', true, '781437674&show_for_all=6559cf045f', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 17, 'панацея', true, '781436481&show_for_all=0218014563', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 17, 'панацея', false, '781435031&show_for_all=4fb4bee7f3', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 17, 'панацея', false, '781433595&show_for_all=e6b4f4ce43', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 17, 'панацея', true, '781432886&show_for_all=630e1b381b', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 17, 'панацея', false, '781431419&show_for_all=e01a7c1060', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 17, 'панацея', true, '781362649&show_for_all=904b9e7a3c', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 17, 'панацея', true, '781362196&show_for_all=0ab193b34d', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 17, 'панацея', true, '781361174&show_for_all=3da632ee83', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 17, 'панацея', false, '781343482&show_for_all=dd2302ab1b', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 17, 'панацея', true, '781341585&show_for_all=9239e5b724', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 17, 'панацея', true, '781339659&show_for_all=28e62a9fc6', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 17, 'панацея', true, '781338423&show_for_all=88bd0752ca', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 17, 'панацея', true, '781335939&show_for_all=f858846f09', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 17, 'панацея', true, '781334372&show_for_all=54a08b719c', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 17, 'панацея', true, '781333219&show_for_all=e315af84d6', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 17, 'панацея', false, '781330577&show_for_all=03a8bed991', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 17, 'панацея', false, '781326832&show_for_all=1e2fe5c860', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 17, 'панацея', true, '781323159&show_for_all=613e16bc18', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 17, 'панацея', true, '781322275&show_for_all=2d6a20a211', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 17, 'панацея', true, '781303191&show_for_all=cd123d4eea', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 17, 'панацея', true, '781301187&show_for_all=ad0390e025', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 17, 'панацея', false, '781299583&show_for_all=db8fe227b1', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 17, 'панацея', true, '781298719&show_for_all=440a50c637', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 17, 'панацея', false, '781297088&show_for_all=e4f08d70ab', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 17, 'панацея', true, '781293503&show_for_all=ad781da399', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 17, 'панацея', false, '781291444&show_for_all=2e0f393e1f', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 17, 'панацея', false, '781287340&show_for_all=9164d0dd7a', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 17, 'панацея', true, '781285837&show_for_all=2ceb5c5855', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 17, 'панацея', false, '781269727&show_for_all=a16b4f6d71', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 17, 'панацея', false, '781267233&show_for_all=952a6d7f5b', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 17, 'панацея', false, '781265269&show_for_all=1c0c17ea66', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 17, 'панацея', true, '781264556&show_for_all=8ebc6962c1', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 17, 'панацея', true, '781192790&show_for_all=0182c76c34', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 17, 'панацея', true, '781191204&show_for_all=50e37ac869', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 17, 'панацея', false, '781186826&show_for_all=6cbda6be63', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 17, 'панацея', true, '781179991&show_for_all=3ba940fae8', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 17, 'панацея', false, '781177853&show_for_all=3b5a976c0f', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 17, 'панацея', true, '781176568&show_for_all=968ceb6f97', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 17, 'панацея', false, '781173663&show_for_all=bd2f655b77', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 17, 'панацея', true, '781158855&show_for_all=45c80b61c6', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 17, 'панацея', true, '781156946&show_for_all=2b704b094d', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'панацея', true, '781155416&show_for_all=da3365e500', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'панацея', false, '781153860&show_for_all=d25fc3c315', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 17, 'панацея', true, '781152205&show_for_all=9944e13a85', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 17, 'панацея', true, '781135865&show_for_all=826bc8f527', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 17, 'панацея', true, '781132918&show_for_all=b701a3c18e', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 17, 'панацея', false, '781129788&show_for_all=f3ba64cf5f', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 17, 'панацея', true, '781125652&show_for_all=ad7f9e50c1', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 17, 'панацея', true, '781123996&show_for_all=280ea2db10', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 17, 'панацея', false, '781122180&show_for_all=2ddd749a42', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 17, 'панацея', true, '781120386&show_for_all=d60e75952a', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'панацея', true, '781115770&show_for_all=a21f2edf46', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 17, 'панацея', true, '781114099&show_for_all=0169648be0', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 17, 'панацея', true, '781109923&show_for_all=e8e536489a', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 17, 'панацея', false, '781108966&show_for_all=3331403c13', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 17, 'панацея', false, '781107575&show_for_all=3a6f2e82da', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'панацея', true, '781106442&show_for_all=08f18039ed', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'панацея', false, '781104312&show_for_all=c6f6d639b9', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'панацея', false, '781033136&show_for_all=b30a39cb2a', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'панацея', false, '781031417&show_for_all=da33a80764', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'панацея', true, '781015388&show_for_all=a87ecc3444', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'панацея', false, '781014382&show_for_all=addd76966d', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'панацея', false, '781005831&show_for_all=d3fcce3a2e', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'панацея', false, '781004353&show_for_all=ec95f756d6', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'панацея', true, '781003529&show_for_all=68d582371f', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'панацея', false, '781002676&show_for_all=a0b271795c', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'панацея', false, '781001754&show_for_all=47da8f75f7', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 17, 'панацея', true, '780968504&show_for_all=0a1a9763d8', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 17, 'панацея', true, '780967547&show_for_all=3c9125d7c5', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 17, 'панацея', true, '780964903&show_for_all=03ee4a975f', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 17, 'панацея', false, '780963851&show_for_all=a05c9ec9ab', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 17, 'панацея', false, '780962021&show_for_all=e8e4328624', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'панацея', true, '780959096&show_for_all=276c70fb2f', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'панацея', false, '780956531&show_for_all=0b6bef518a', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 17, 'панацея', true, '780953911&show_for_all=23226a5d20', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 17, 'панацея', true, '780950587&show_for_all=461c094e26', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 17, 'панацея', true, '780945386&show_for_all=c140c67460', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 17, 'панацея', true, '780940078&show_for_all=4272704ea4', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 17, 'панацея', true, '780938728&show_for_all=de2791e81f', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 17, 'панацея', false, '779818501&show_for_all=dcdc2c4f79', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 17, 'панацея', true, '779816793&show_for_all=d3e7ba7b6f', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'панацея', true, '779815820&show_for_all=6bcd57b689', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 17, 'панацея', true, '779813603&show_for_all=be28b3895f', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 17, 'панацея', false, '779812112&show_for_all=505939ab9e', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 17, 'панацея', false, '779808580&show_for_all=6ad53dad57', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 17, 'панацея', false, '779795342&show_for_all=cf0e25380f', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 17, 'панацея', true, '779793803&show_for_all=ce95eb3100', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 17, 'панацея', true, '779792688&show_for_all=ce030d87a2', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 17, 'панацея', false, '779790280&show_for_all=41ea777ad7', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 17, 'панацея', true, '779776051&show_for_all=edfedb9f7a', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 17, 'панацея', true, '779775128&show_for_all=e81b764337', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 17, 'панацея', false, '779772349&show_for_all=cca0834a6c', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'панацея', true, '779771193&show_for_all=d112fcdb30', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'панацея', false, '779769738&show_for_all=db720f218d', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'панацея', false, '779651685&show_for_all=69d2b55088', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 17, 'панацея', true, '779651138&show_for_all=c90f7edacb', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 17, 'панацея', true, '779650488&show_for_all=7e6ef4bfb4', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'панацея', true, '779649497&show_for_all=cc4824d7e3', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'панацея', false, '779647444&show_for_all=ff3d143143', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'панацея', false, '779644510&show_for_all=aa2cee289f', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'панацея', false, '779641836&show_for_all=1bd1d77c2f', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 17, 'панацея', true, '779641089&show_for_all=b2b208cee5', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 17, 'панацея', true, '779597544&show_for_all=bf918da404', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 17, 'панацея', true, '779596154&show_for_all=510f73c2d9', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 17, 'панацея', true, '779594596&show_for_all=d8992131e6', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 17, 'панацея', true, '779593656&show_for_all=a01b34cd8c', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 17, 'панацея', true, '779589274&show_for_all=0a40364a8f', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 17, 'панацея', false, '779483908&show_for_all=a4fd4d776c', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 17, 'панацея', false, '779478959&show_for_all=99a369d4f6', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'панацея', true, '779476409&show_for_all=a0713412c0', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'панацея', false, '779470581&show_for_all=ab17a78a71', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'панацея', false, '779464284&show_for_all=ef395e3479', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 17, 'панацея', true, '779462810&show_for_all=c991210b89', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'панацея', true, '779461757&show_for_all=85038465bd', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'панацея', false, '779441362&show_for_all=f1b4477229', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'панацея', false, '779439286&show_for_all=ee356c4691', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'панацея', false, '779436161&show_for_all=8180de95cb', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'панацея', false, '779433744&show_for_all=816c13b77a', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 17, 'панацея', true, '779431653&show_for_all=418c466707', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 17, 'панацея', true, '779427679&show_for_all=c72cdc8ed3', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 17, 'панацея', true, '779425221&show_for_all=859be326d1', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 17, 'панацея', true, '779422262&show_for_all=9f0b292ec4', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 17, 'панацея', true, '779421177&show_for_all=0875055042', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 17, 'панацея', true, '779420512&show_for_all=3839be6040', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 17, 'панацея', true, '779419274&show_for_all=85b793b97c', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 17, 'панацея', true, '779411809&show_for_all=ded59cb314', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 17, 'панацея', true, '779410133&show_for_all=2775f9c38a', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 17, 'панацея', true, '779408998&show_for_all=cc0593cd6f', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 17, 'панацея', true, '777939931&show_for_all=05d6080363', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 17, 'панацея', false, '777939396&show_for_all=8250eb4e09', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 17, 'панацея', true, '777938052&show_for_all=e776e53314', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 17, 'панацея', false, '777936983&show_for_all=0e1d17953d', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', true, '777936276&show_for_all=31c02fbdda', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777869586&show_for_all=cde3d6d2ef', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777868708&show_for_all=66c99de2e0', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777868455&show_for_all=94d252187a', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777867690&show_for_all=12b86f87bc', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777867274&show_for_all=2e207bb32e', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777866833&show_for_all=fadb0257d0', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777864714&show_for_all=fc4b85127b', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 17, 'панацея', true, '777862877&show_for_all=e99a0aa392', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 17, 'панацея', true, '777862183&show_for_all=5c8f08f14b', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 17, 'панацея', true, '777855302&show_for_all=d14283145d', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'панацея', true, '777854055&show_for_all=664c371e82', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'панацея', false, '777851819&show_for_all=62caa1f7c7', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'панацея', false, '777839603&show_for_all=a29e01a876', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'панацея', false, '777806733&show_for_all=6822445eb1', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'панацея', false, '777804452&show_for_all=aa81a7ff4e', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'панацея', false, '777802166&show_for_all=4dc4454f68', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 17, 'панацея', true, '777801426&show_for_all=291ede9c30', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'панацея', false, '777797066&show_for_all=450153864c', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 17, 'панацея', true, '777794806&show_for_all=3c6eafd35c', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 17, 'панацея', true, '777793445&show_for_all=75477b6fae', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 17, 'панацея', true, '777788885&show_for_all=c1b47a1ea6', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 17, 'панацея', true, '777787503&show_for_all=b805b009d1', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 17, 'панацея', false, '777785509&show_for_all=1b4859b0a1', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 17, 'панацея', true, '777783979&show_for_all=755abea969', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 17, 'панацея', true, '777781883&show_for_all=948ced7be1', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 17, 'панацея', true, '777775280&show_for_all=f9c19bc660', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'панацея', true, '777766717&show_for_all=7d1f43ca96', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'панацея', false, '777690128&show_for_all=3bdcf080e6', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'панацея', false, '777688633&show_for_all=d177944ace', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 17, 'панацея', true, '777669872&show_for_all=12639c1ce9', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'панацея', true, '777667335&show_for_all=3cb0fae358', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'панацея', false, '777666468&show_for_all=e8b9894fc5', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'панацея', false, '777663815&show_for_all=6366077355', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'панацея', false, '777625728&show_for_all=3d2ea1bd0b', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 17, 'панацея', true, '777619853&show_for_all=38027fbb91', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 17, 'панацея', true, '777609274&show_for_all=5ec2a653e1', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'панацея', true, '777599193&show_for_all=c50f877d6a', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'панацея', true, '777594166&show_for_all=55620654eb', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'панацея', false, '777590248&show_for_all=9f36c7e5d1', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'панацея', false, '777588063&show_for_all=50472fb8b4', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'панацея', false, '777586416&show_for_all=44eae0c0a0', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'панацея', false, '777584552&show_for_all=27bea3eddf', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'панацея', false, '777578074&show_for_all=09e0218b5c', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'панацея', true, '777496160&show_for_all=fff1fb062e', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'панацея', false, '777494517&show_for_all=fe681523a1', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'панацея', false, '777491897&show_for_all=8245eb59fe', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'панацея', false, '777490223&show_for_all=a4d3f25e86', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'панацея', false, '777487339&show_for_all=a59c84b27e', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 17, 'панацея', true, '777479802&show_for_all=099db55b19', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 17, 'панацея', true, '777478608&show_for_all=35230a0410', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 17, 'панацея', true, '777477119&show_for_all=91276fabb2', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'панацея', true, '777472763&show_for_all=aa70bca7c7', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'панацея', false, '777451794&show_for_all=6031f7e11f', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'панацея', false, '777449841&show_for_all=4bcf4cebbd', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'панацея', false, '777425433&show_for_all=10207493ca', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 17, 'панацея', true, '777422652&show_for_all=32832da905', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 17, 'панацея', true, '777409996&show_for_all=2f4595ac76', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 17, 'панацея', false, '777408426&show_for_all=f5c2149f57', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 17, 'панацея', false, '777407148&show_for_all=13e5fe0525', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'панацея', true, '777405294&show_for_all=b5f5a626cf', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'панацея', false, '777403436&show_for_all=95872ac04f', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'панацея', false, '777401646&show_for_all=30a3620e09', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'панацея', false, '777392849&show_for_all=725622266a', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 17, 'панацея', true, '777388985&show_for_all=e575f7a6b4', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 17, 'панацея', false, '777379339&show_for_all=e4b924aeb6', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 17, 'панацея', false, '777378314&show_for_all=5f5fc8353b', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'панацея', true, '777320257&show_for_all=d8e2240ef2', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'панацея', false, '777319747&show_for_all=5eee4afe98', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'панацея', false, '777318887&show_for_all=060122da68', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'панацея', false, '777315904&show_for_all=b26a6878a5', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'панацея', false, '777314208&show_for_all=a2dd69b81c', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 17, 'панацея', true, '777312687&show_for_all=aacf8ccb7c', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 17, 'панацея', false, '777311761&show_for_all=2f6d3fee35', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 17, 'панацея', true, '777311212&show_for_all=42b13e9b03', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'панацея', true, '777308701&show_for_all=7f480559e5', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'панацея', false, '777286243&show_for_all=e642c7367c', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'панацея', true, '777285329&show_for_all=8d9c55490b', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'панацея', false, '777281970&show_for_all=557dd3ffbd', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'панацея', false, '777272863&show_for_all=1b7f00fcc4', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'панацея', false, '777263124&show_for_all=c1a7b4ecfa', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 17, 'панацея', true, '776647773&show_for_all=e3b497a6d5', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 17, 'панацея', false, '776646896&show_for_all=c7071872f6', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 17, 'панацея', true, '776645477&show_for_all=25199f6381', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 17, 'панацея', false, '776644244&show_for_all=feabaaf1b0', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 17, 'панацея', false, '776642304&show_for_all=b78a4f45c4', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 17, 'панацея', false, '776518287&show_for_all=79028e3c33', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 17, 'панацея', true, '776517219&show_for_all=c6f529e712', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 17, 'панацея', false, '776515368&show_for_all=d7d4fef623', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 17, 'панацея', true, '776514568&show_for_all=79163234ed', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 17, 'панацея', true, '776513391&show_for_all=f0214511b4', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 17, 'панацея', true, '776512535&show_for_all=bcd1b9be2e', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 17, 'панацея', true, '776511907&show_for_all=f03c27d9fc', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 17, 'панацея', true, '776511201&show_for_all=fb4f6921ee', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 17, 'панацея', true, '776500955&show_for_all=2478cbdb9e', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 17, 'панацея', false, '776260616&show_for_all=e235728c58', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 17, 'панацея', false, '776258618&show_for_all=cdaa620101', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 17, 'панацея', false, '776257558&show_for_all=268abf1282', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 17, 'панацея', false, '776254004&show_for_all=a0111e3d0a', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 17, 'панацея', true, '776252300&show_for_all=315c348ab2', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 17, 'панацея', true, '776251184&show_for_all=79cd5cc310', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 17, 'панацея', true, '776249979&show_for_all=295dbcfdd6', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 17, 'панацея', false, '776248739&show_for_all=09655b0fb1', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 17, 'панацея', true, '776248068&show_for_all=fa5a555596', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 17, 'панацея', true, '776246897&show_for_all=05da5b8b98', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 17, 'панацея', false, '776245449&show_for_all=84de341021', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 17, 'панацея', false, '776243600&show_for_all=862826ce09', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 17, 'панацея', false, '776236867&show_for_all=f202dff124', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 17, 'панацея', false, '776214578&show_for_all=62f2adf8b1', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 17, 'панацея', true, '776209021&show_for_all=c52b1c5560', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 17, 'панацея', true, '776206602&show_for_all=68aab4554d', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 17, 'панацея', true, '776205630&show_for_all=a1acac363a', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 17, 'панацея', true, '776203669&show_for_all=0014b18d84', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'панацея', true, '776199863&show_for_all=b9e9b29147', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'панацея', false, '776186169&show_for_all=48c4ee56c8', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'панацея', true, '776184947&show_for_all=b69e2a5a99', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'панацея', false, '776126157&show_for_all=2bbdcca5ce', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'панацея', true, '776125150&show_for_all=46326874e9', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 17, 'панацея', true, '776124520&show_for_all=4291c3deb5', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 17, 'панацея', true, '776123136&show_for_all=88f70c92e6', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 17, 'панацея', true, '776122191&show_for_all=7c6bba69dd', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 17, 'панацея', true, '776121683&show_for_all=00858dace6', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 17, 'панацея', true, '776121093&show_for_all=911d7ead6e', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'панацея', true, '776118966&show_for_all=10924b0635', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'панацея', true, '776117751&show_for_all=365cf849b8', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'панацея', false, '776115248&show_for_all=cb4ec6bbca', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 17, 'панацея', true, '776113475&show_for_all=efb1a4017a', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 17, 'панацея', true, '776112165&show_for_all=e0283d2f85', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 17, 'панацея', false, '776104867&show_for_all=f75d1be733', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 17, 'панацея', true, '776104188&show_for_all=cb3de20dcc', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 17, 'панацея', true, '776102617&show_for_all=b04ba252b3', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 17, 'панацея', false, '776100344&show_for_all=025529554e', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'панацея', true, '776099742&show_for_all=437f78d0be', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'панацея', false, '776098171&show_for_all=3986e1fe91', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'панацея', false, '776096132&show_for_all=d75fff5c30', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'панацея', false, '776090375&show_for_all=be2872e607', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'панацея', false, '776088297&show_for_all=4c16f6c512', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'панацея', true, '776086633&show_for_all=324f7cbd22', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'панацея', false, '776082152&show_for_all=899194d964', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 17, 'панацея', true, '776080963&show_for_all=3f3b2bc243', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'панацея', true, '776080151&show_for_all=dd9e0733e9', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'панацея', false, '776049542&show_for_all=f4d6b40dbb', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'панацея', false, '776047748&show_for_all=fc1eb9d983', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'панацея', false, '776046088&show_for_all=061aa47615', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'панацея', true, '775779199&show_for_all=148a0c06af', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 17, 'панацея', true, '775778207&show_for_all=caea12fabd', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 17, 'панацея', true, '775777326&show_for_all=41786fe48b', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 17, 'панацея', true, '775776642&show_for_all=f811d8e6a4', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 17, 'панацея', true, '775775941&show_for_all=b30f33453b', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 17, 'панацея', true, '775774798&show_for_all=aa790b94f8', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 17, 'панацея', true, '775774001&show_for_all=881cb75e6b', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 17, 'панацея', true, '775773392&show_for_all=b131f00233', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 17, 'панацея', true, '775771817&show_for_all=fcb26f27f0', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 17, 'панацея', true, '775770844&show_for_all=46fb26c602', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 17, 'панацея', true, '775770236&show_for_all=8d3bb68fce', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 17, 'панацея', true, '775768933&show_for_all=c60effe921', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'панацея', true, '775768078&show_for_all=223cd48df6', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'панацея', false, '775765598&show_for_all=181c162dc8', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'панацея', false, '775763817&show_for_all=ba6c9cbe42', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'панацея', false, '775759284&show_for_all=8663a561bb', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'панацея', false, '775757142&show_for_all=88766a8a45', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 17, 'панацея', true, '775756356&show_for_all=9385f8aa27', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'панацея', true, '775754336&show_for_all=d2c2b5ae6f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'панацея', false, '775752533&show_for_all=fda1dc01e2', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'панацея', false, '775749866&show_for_all=9c821d717a', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 17, 'панацея', true, '775749081&show_for_all=c034b69a1f', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 17, 'панацея', true, '775748552&show_for_all=874f573380', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 17, 'панацея', true, '775747601&show_for_all=c6300f4133', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'панацея', true, '775741442&show_for_all=4255dc090e', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 17, 'панацея', true, '775740126&show_for_all=6cacf78226', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 17, 'панацея', true, '775738753&show_for_all=72c8460e12', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 17, 'панацея', false, '775735921&show_for_all=ef803ea492', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 17, 'панацея', false, '775734498&show_for_all=9fb66b6ddb', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'панацея', true, '775733730&show_for_all=df2f217a05', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'панацея', false, '775732401&show_for_all=8a8abd4617', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'панацея', false, '775730914&show_for_all=0d5af416c5', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'панацея', false, '775729691&show_for_all=6b756fc236', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'панацея', false, '775728475&show_for_all=832a28b63d', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'панацея', false, '775664449&show_for_all=41dc928f32', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 17, 'панацея', true, '775663472&show_for_all=26fcb64abf', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 17, 'панацея', true, '775662793&show_for_all=327de490e0', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 17, 'панацея', true, '775661959&show_for_all=e1c8ce8c23', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 17, 'панацея', true, '775661343&show_for_all=1fbc7e2a30', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 17, 'панацея', true, '775660426&show_for_all=e2b1fad2b9', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 17, 'панацея', true, '775659936&show_for_all=23199e74ae', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 17, 'панацея', false, '775657812&show_for_all=fdb048689c', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 17, 'панацея', false, '775656179&show_for_all=95cf0f33d9', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 17, 'панацея', false, '775654744&show_for_all=4cc3ee0ef9', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 17, 'панацея', true, '775653122&show_for_all=25426df4b3', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 17, 'панацея', false, '775651663&show_for_all=47e114dcd6', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 17, 'панацея', true, '775650676&show_for_all=2654a6b326', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'панацея', true, '775649667&show_for_all=281a5a3255', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'панацея', false, '775642051&show_for_all=0721b62b4d', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'панацея', false, '775634631&show_for_all=808e9410de', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'панацея', false, '775630838&show_for_all=c129c0ad27', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'панацея', false, '775628461&show_for_all=6c3272f0a6', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'панацея', false, '775609443&show_for_all=30a981a27f', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 17, 'панацея', true, '775608803&show_for_all=68a2e277a5', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 17, 'панацея', false, '775606031&show_for_all=ea724d8da6', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 17, 'панацея', true, '775590612&show_for_all=816a1c7566', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 17, 'панацея', false, '775588540&show_for_all=4b2742f6fa', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 17, 'панацея', false, '775587137&show_for_all=6adff3f1f0', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'панацея', true, '775586469&show_for_all=242327d3fa', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'панацея', false, '775584449&show_for_all=a63a9724e8', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'панацея', false, '775582224&show_for_all=b2a0de5399', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'панацея', false, '775493894&show_for_all=172c1d4a44', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'панацея', false, '775487958&show_for_all=107415f932', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 17, 'панацея', true, '775487415&show_for_all=b3ec7e9102', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 17, 'панацея', true, '775486180&show_for_all=931020f2ea', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'панацея', true, '775483674&show_for_all=405e36f5c0', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'панацея', false, '775481906&show_for_all=987fbd0d07', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 17, 'панацея', true, '775481177&show_for_all=8b71fa4665', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 17, 'панацея', true, '775480306&show_for_all=609a857db2', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 17, 'панацея', true, '775478950&show_for_all=490aedd94c', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 17, 'панацея', false, '775477136&show_for_all=c1886b3d84', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 17, 'панацея', true, '775475539&show_for_all=9cd7e8666e', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 17, 'панацея', true, '775474170&show_for_all=6dd14fbc60', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 17, 'панацея', false, '775450783&show_for_all=b09cadb8ed', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 17, 'панацея', true, '775450311&show_for_all=f479fd2dc8', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 17, 'панацея', true, '775448322&show_for_all=8828f3c5db', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 17, 'панацея', true, '775446870&show_for_all=65a9498008', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 17, 'панацея', true, '775445185&show_for_all=4ffcdbbe13', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 17, 'панацея', true, '775443752&show_for_all=a5a887894f', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 17, 'панацея', false, '775438855&show_for_all=77d57f6e9d', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 17, 'панацея', false, '775436874&show_for_all=3d96f72dcb', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 17, 'панацея', false, '775435101&show_for_all=b31722b639', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 17, 'панацея', true, '775430206&show_for_all=30801006bb', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 17, 'панацея', true, '775428267&show_for_all=7f84e4bfae', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 17, 'панацея', true, '775427440&show_for_all=24ebc971cb', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 17, 'панацея', true, '775426958&show_for_all=3c6bbde81d', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 17, 'панацея', false, '775425718&show_for_all=236ce9dd48', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 17, 'панацея', true, '775424767&show_for_all=d19b4846ff', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 17, 'панацея', true, '775424283&show_for_all=f454cd4877', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 17, 'панацея', true, '775422552&show_for_all=fec646900d', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 17, 'панацея', false, '775345937&show_for_all=e79ac43702', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', true, '761057020&show_for_all=4c334a3c69', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', false, '761050172&show_for_all=b82c3981f1', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', false, '760722115&show_for_all=dc264e6db7', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', false, '760715319&show_for_all=7bf53f6b8c', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 17, 'панацея', true, '760708321&show_for_all=b02d8a54a2', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'панацея', true, '760694804&show_for_all=f5bafa6051', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 17, 'панацея', true, '760688844&show_for_all=3302ebcb1d', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'панацея', true, '760677298&show_for_all=e6c214299f', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'панацея', false, '760664650&show_for_all=95cf23415e', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'панацея', true, '760657615&show_for_all=7c33f2c96d', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'панацея', false, '760649790&show_for_all=ef959906e4', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 17, 'панацея', true, '760562367&show_for_all=b747adb8ab', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 17, 'панацея', true, '760556688&show_for_all=d969d488d0', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 17, 'панацея', true, '760483430&show_for_all=2c26617e72', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'панацея', true, '760475664&show_for_all=1f739ddac8', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 17, 'панацея', true, '760468525&show_for_all=2f527d9af0', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'панацея', true, '760462529&show_for_all=2da0053027', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'панацея', false, '760455135&show_for_all=665f181657', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 17, 'панацея', true, '760448577&show_for_all=f9f74dfed9', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 17, 'панацея', false, '760443279&show_for_all=0bbb386b0c', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'панацея', true, '760438263&show_for_all=fa3bbf642a', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 17, 'панацея', true, '760432919&show_for_all=7f501de471', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 17, 'панацея', true, '760422471&show_for_all=115c655ce6', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 17, 'панацея', true, '760415720&show_for_all=5d3f969fc7', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'панацея', true, '760396130&show_for_all=f910f8772f', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', true, '759875980&show_for_all=33e98743a9', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 17, 'панацея', true, '759862408&show_for_all=40cc7c6dd0', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'панацея', true, '759855403&show_for_all=d42e9347c0', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'панацея', false, '759846066&show_for_all=bf64bd650c', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 17, 'панацея', true, '759778468&show_for_all=12cfe72258', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'панацея', true, '759766640&show_for_all=715ff12ea8', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'панацея', true, '759729882&show_for_all=22ad8ee8f1', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 17, 'панацея', true, '759665941&show_for_all=92c47d4fb5', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 17, 'панацея', true, '759661780&show_for_all=c30f4721e3', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 17, 'панацея', true, '759641955&show_for_all=c38bbcc6f9', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'панацея', true, '759636306&show_for_all=02b12ce1f7', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 17, 'панацея', true, '759630716&show_for_all=2b97c8c8f8', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'панацея', true, '759626792&show_for_all=a616a56e39', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 17, 'панацея', true, '759623607&show_for_all=3215d0ec30', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 17, 'панацея', true, '759616793&show_for_all=7666b10b1a', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'панацея', true, '759611423&show_for_all=aa87d600ca', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 17, 'панацея', true, '759602409&show_for_all=2f3f302bc3', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'панацея', true, '759598281&show_for_all=4d62252299', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 17, 'панацея', true, '759584794&show_for_all=2a6d0f01ae', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Конунг1987', true, '838314863&show_for_all=086fbf1657', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Конунг1987', true, '838314275&show_for_all=be8482bf36', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Конунг1987', false, '838313318&show_for_all=bead0bffb5', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Конунг1987', false, '838312088&show_for_all=828e030fce', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 19, 'Конунг1987', true, '838311787&show_for_all=ee88f0e375', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Конунг1987', true, '838311324&show_for_all=b9ed663a7e', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Конунг1987', false, '838310142&show_for_all=8b58d42332', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'Конунг1987', true, '838309447&show_for_all=b63bc10e89', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 19, 'Конунг1987', true, '838308876&show_for_all=50b0acdd36', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 19, 'Конунг1987', true, '838308511&show_for_all=63e2dae3cd', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 19, 'Конунг1987', true, '838257564&show_for_all=8475747565', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 19, 'Конунг1987', true, '838255535&show_for_all=703c9e5e1a', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 19, 'Конунг1987', true, '838229977&show_for_all=8a701c5e3e', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 19, 'Конунг1987', true, '838224594&show_for_all=01b6211cdd', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 19, 'Конунг1987', true, '838221773&show_for_all=a99efcdb51', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 19, 'Конунг1987', true, '838219004&show_for_all=1d3c3e3aa2', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Конунг1987', true, '838217301&show_for_all=5223759c90', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Конунг1987', false, '838214834&show_for_all=d0cd426be8', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Конунг1987', false, '838201669&show_for_all=3d055b2d82', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Конунг1987', false, '838191830&show_for_all=89b98d8227', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'Конунг1987', true, '838191140&show_for_all=606db1da2d', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'Конунг1987', false, '838179704&show_for_all=0084e8c54d', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 19, 'Конунг1987', true, '838167250&show_for_all=07d895a7af', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 19, 'Конунг1987', true, '838165786&show_for_all=ab0d8f01ba', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 19, 'Конунг1987', false, '838159769&show_for_all=26d3e8dfaf', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 19, 'Конунг1987', true, '838157036&show_for_all=ffbec021a3', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Конунг1987', true, '814930119&show_for_all=3519d28129', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Конунг1987', true, '814926757&show_for_all=eac5aae8e7', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Конунг1987', true, '814924242&show_for_all=20e0ae4ceb', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Конунг1987', true, '814921851&show_for_all=4f56a25d3b', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Конунг1987', true, '814916601&show_for_all=43f3d90420', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Конунг1987', true, '814912577&show_for_all=54e2820c7c', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Конунг1987', true, '814909746&show_for_all=c6d3b5887b', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Конунг1987', true, '814908667&show_for_all=5e41611d6f', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Конунг1987', true, '814900356&show_for_all=7cfdca7eae', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Конунг1987', false, '814894874&show_for_all=774d07722c', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Конунг1987', false, '814890752&show_for_all=e88bafd1d8', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Конунг1987', true, '814884427&show_for_all=5478b40e7d', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Конунг1987', false, '814880549&show_for_all=80576641ab', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Конунг1987', true, '814879000&show_for_all=10bd541fa2', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Конунг1987', true, '814877390&show_for_all=e711d3e460', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Конунг1987', true, '814875512&show_for_all=6a2a15e766', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Конунг1987', true, '814873536&show_for_all=163d1c829c', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Конунг1987', false, '814868547&show_for_all=fe109f9b6f', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Конунг1987', true, '814862594&show_for_all=4dd97789c9', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Конунг1987', true, '814860691&show_for_all=be4a9b85e2', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Конунг1987', true, '814859234&show_for_all=92301db5a9', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Конунг1987', true, '814857970&show_for_all=0859565aba', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Конунг1987', true, '814357850&show_for_all=8ae33c3514', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Конунг1987', true, '814357203&show_for_all=6192736660', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Конунг1987', false, '814356604&show_for_all=af17f5e214', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Конунг1987', false, '814355980&show_for_all=77bcc83476', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Конунг1987', false, '814355492&show_for_all=145a6278a2', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Конунг1987', true, '814354949&show_for_all=45c44c839b', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Конунг1987', false, '814354367&show_for_all=2bab7e3a3d', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Конунг1987', true, '814353874&show_for_all=1ddd4c9ff1', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Конунг1987', false, '814353280&show_for_all=4878383d85', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Конунг1987', false, '814352938&show_for_all=7894c09a01', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Конунг1987', true, '814352119&show_for_all=b59dbef857', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Конунг1987', true, '814351738&show_for_all=15f6dd4860', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Конунг1987', false, '814351393&show_for_all=28caf1dfb1', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Конунг1987', false, '814350111&show_for_all=6fc33829ff', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Конунг1987', true, '814349838&show_for_all=db1343bf66', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Конунг1987', true, '814349362&show_for_all=6de9594453', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Конунг1987', true, '814348172&show_for_all=ef60a86744', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Конунг1987', false, '814346034&show_for_all=2738a6705c', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Конунг1987', false, '814344382&show_for_all=1875290b59', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Конунг1987', false, '814342093&show_for_all=3acb297434', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Конунг1987', false, '814338129&show_for_all=35d85cc9d9', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Конунг1987', true, '814335327&show_for_all=dff2f7d5cc', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Конунг1987', false, '814333781&show_for_all=1ad71bac61', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Конунг1987', true, '814332807&show_for_all=66f0eab3fc', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Конунг1987', true, '814330435&show_for_all=cac320d24b', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Конунг1987', false, '814328261&show_for_all=68b8a1c8a2', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Конунг1987', true, '814325974&show_for_all=958721836e', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Конунг1987', false, '814291379&show_for_all=cd05b46e18', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Конунг1987', true, '814290240&show_for_all=f2612c5a4b', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Конунг1987', false, '814289618&show_for_all=2410269a2e', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Конунг1987', false, '814288006&show_for_all=3b3f27e9ba', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Конунг1987', true, '814287295&show_for_all=6ae001f87c', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Конунг1987', true, '814286550&show_for_all=6627a11f3d', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Конунг1987', false, '814284510&show_for_all=4efde807b8', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Конунг1987', true, '814283946&show_for_all=35427ea0e2', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Конунг1987', true, '814283304&show_for_all=bab4b7a66a', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Конунг1987', false, '814281031&show_for_all=fa03d5bc91', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Конунг1987', true, '811708615&show_for_all=c1e215cbfd', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Конунг1987', false, '811705571&show_for_all=f6af79610e', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 19, 'Конунг1987', true, '811703132&show_for_all=3ae013f947', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 19, 'Конунг1987', true, '811701519&show_for_all=df8f7c03b6', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 19, 'Конунг1987', true, '811700048&show_for_all=12e7c73057', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 19, 'Конунг1987', true, '811697523&show_for_all=a5564dd81e', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 19, 'Конунг1987', true, '811696391&show_for_all=0c15825b6d', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 19, 'Конунг1987', false, '811689268&show_for_all=161c6be687', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 19, 'Конунг1987', true, '811687793&show_for_all=2fe6b171c3', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 19, 'Конунг1987', true, '811685822&show_for_all=70ade59f94', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 19, 'Конунг1987', true, '811683541&show_for_all=2bfc45156d', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 19, 'Конунг1987', false, '811679778&show_for_all=f4f07307e8', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 19, 'Конунг1987', true, '811677706&show_for_all=5fa0168c41', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 19, 'Конунг1987', true, '811676275&show_for_all=1856ef685f', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Конунг1987', true, '811673387&show_for_all=756af45770', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Конунг1987', false, '811660961&show_for_all=33e025e831', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 19, 'Конунг1987', true, '811660175&show_for_all=1568cf1dbb', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', true, '811652760&show_for_all=88bbf8a37c', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', false, '811651338&show_for_all=2918108000', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', false, '811650625&show_for_all=fde3ca9689', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', false, '811649959&show_for_all=901e96d15a', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', false, '811648820&show_for_all=8e03b98c9d', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', false, '811645935&show_for_all=915b0c5d9f', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Конунг1987', false, '811643337&show_for_all=a9bc4f2428', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Конунг1987', true, '811640807&show_for_all=0e5f870994', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Конунг1987', false, '811637367&show_for_all=f78278009a', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 19, 'Конунг1987', true, '811628970&show_for_all=3723142527', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 19, 'Конунг1987', false, '811625766&show_for_all=e1f6d6db35', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Конунг1987', true, '811624384&show_for_all=51e8322b79', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Конунг1987', true, '811623449&show_for_all=aaf568e3aa', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Конунг1987', true, '799040794&show_for_all=179f4f2e58', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Конунг1987', true, '799038019&show_for_all=53ae52e33c', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'Конунг1987', true, '799036058&show_for_all=38ef0b0833', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 19, 'Конунг1987', true, '799034788&show_for_all=1032843206', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Конунг1987', true, '799032101&show_for_all=639d7bc23e', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'Конунг1987', true, '799031289&show_for_all=edd083551a', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'Конунг1987', false, '799028368&show_for_all=4358451eca', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'Конунг1987', true, '799027565&show_for_all=058ab982e1', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'Конунг1987', false, '799022916&show_for_all=2610d4932b', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'Конунг1987', true, '799020840&show_for_all=c890002bb1', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Конунг1987', true, '799018064&show_for_all=664aad171c', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 19, 'Конунг1987', true, '799015370&show_for_all=628c75b70d', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'Конунг1987', true, '799014361&show_for_all=d516333eb2', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'Конунг1987', true, '799012680&show_for_all=198bcb963c', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 19, 'Конунг1987', true, '799011150&show_for_all=2bed7c9e71', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'Конунг1987', true, '799008726&show_for_all=cf2993e5e1', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'Конунг1987', false, '799004340&show_for_all=536025f5ce', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 19, 'Конунг1987', true, '799002013&show_for_all=bdebdc3565', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 19, 'Конунг1987', true, '799000690&show_for_all=a177b39017', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Конунг1987', true, '798993363&show_for_all=662b06aa74', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 19, 'Конунг1987', true, '798991939&show_for_all=d1df953c26', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Конунг1987', true, '794965039&show_for_all=c4a6b3757c', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 19, 'Конунг1987', true, '794962245&show_for_all=96ef0f6c9b', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 19, 'Конунг1987', true, '794960624&show_for_all=4f747814f7', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 19, 'Конунг1987', true, '794959209&show_for_all=e4e4e5593e', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 19, 'Конунг1987', true, '794957478&show_for_all=07e01fa9a5', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 19, 'Конунг1987', true, '794933856&show_for_all=902b1344ab', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Конунг1987', true, '794932403&show_for_all=d8505b7c87', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Конунг1987', false, '794929478&show_for_all=9d489a3389', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Конунг1987', false, '794927557&show_for_all=38b5e3d16c', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 19, 'Конунг1987', true, '794925521&show_for_all=f8aea01374', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 19, 'Конунг1987', true, '794924078&show_for_all=475455f84f', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 19, 'Конунг1987', true, '794922396&show_for_all=e6e59efc41', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 19, 'Конунг1987', false, '794916978&show_for_all=3e99279440', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 19, 'Конунг1987', true, '794915394&show_for_all=4dc6772749', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 19, 'Конунг1987', true, '794913226&show_for_all=dec7fb1d7d', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 19, 'Конунг1987', true, '794911988&show_for_all=7db8595015', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 19, 'Конунг1987', true, '794911175&show_for_all=8a433163d7', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 19, 'Конунг1987', true, '794910199&show_for_all=94498214da', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 19, 'Конунг1987', true, '794908775&show_for_all=b2ac52d822', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 19, 'Конунг1987', false, '794900481&show_for_all=2ee7a1d140', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 19, 'Конунг1987', true, '794898610&show_for_all=66ac1bc5ac', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 19, 'Конунг1987', true, '794897471&show_for_all=355bb2c7d1', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Конунг1987', false, '782057971&show_for_all=60f3c3ec02', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'Конунг1987', false, '782057372&show_for_all=d624326490', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Конунг1987', true, '782057003&show_for_all=786d2ec8a5', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Конунг1987', false, '782056241&show_for_all=54fa73b4ed', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Конунг1987', false, '782055361&show_for_all=509dd25deb', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Конунг1987', false, '782054047&show_for_all=87ad5c2020', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Конунг1987', false, '782052143&show_for_all=f48dc9e7a1', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'Конунг1987', false, '782050423&show_for_all=09d2aaf139', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'Конунг1987', true, '782049792&show_for_all=82e7e84bd1', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 18, 'Конунг1987', true, '780558823&show_for_all=9e653210d3', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 18, 'Конунг1987', true, '780556587&show_for_all=bde24fe81f', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Конунг1987', true, '780555571&show_for_all=12615ce630', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Конунг1987', false, '780553152&show_for_all=7d796267ea', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Конунг1987', false, '780551006&show_for_all=a90d146b38', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Конунг1987', false, '780548747&show_for_all=0a99737832', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'Конунг1987', false, '780546700&show_for_all=e5be19c246', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 18, 'Конунг1987', true, '780543470&show_for_all=932cb135f0', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 18, 'Конунг1987', false, '780538890&show_for_all=0e1be7421a', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 18, 'Конунг1987', false, '780536304&show_for_all=d3cdbed6fb', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 18, 'Конунг1987', true, '780535338&show_for_all=c29d8ad08d', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 18, 'Конунг1987', true, '780534132&show_for_all=568f0a9c74', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 18, 'Конунг1987', true, '780533542&show_for_all=ac1321fcba', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 18, 'Конунг1987', true, '780532785&show_for_all=1cb155003e', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', true, '780530758&show_for_all=6786e0598d', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', false, '780522962&show_for_all=105318cfae', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', false, '780518395&show_for_all=a431f171fc', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', false, '780487078&show_for_all=f45c37242d', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', false, '780473791&show_for_all=ab97c7a72d', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 18, 'Конунг1987', true, '780470780&show_for_all=b0dafd8c57', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 18, 'Конунг1987', false, '780466644&show_for_all=854ff372c8', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', false, '780463089&show_for_all=b747c8b356', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'Конунг1987', false, '780421738&show_for_all=6eca93e1ec', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 18, 'Конунг1987', true, '780420945&show_for_all=a084184151', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 18, 'Конунг1987', false, '780420021&show_for_all=08f0345a95', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 18, 'Конунг1987', false, '780418979&show_for_all=a747785d07', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 18, 'Конунг1987', true, '780418094&show_for_all=ea1535bb6f', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 18, 'Конунг1987', true, '780393834&show_for_all=d50d379d8a', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 18, 'Конунг1987', false, '780390950&show_for_all=8b95a31fbc', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 18, 'Конунг1987', false, '780388506&show_for_all=1e26b73284', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 18, 'Конунг1987', true, '780385246&show_for_all=1b74f0f0df', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 18, 'Конунг1987', false, '780368243&show_for_all=1787462154', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 18, 'Конунг1987', true, '780367099&show_for_all=24b73f757d', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 18, 'Конунг1987', true, '780366422&show_for_all=6022bdc0df', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 18, 'Конунг1987', true, '780365369&show_for_all=e630b5f533', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 18, 'Конунг1987', false, '780003119&show_for_all=8a34780c98', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 18, 'Конунг1987', true, '780002294&show_for_all=e3337c317d', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 18, 'Конунг1987', false, '779998393&show_for_all=7f584ca88c', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Конунг1987', true, '777052119&show_for_all=03c9c70737', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'Конунг1987', true, '777051532&show_for_all=6dcd7fab71', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 18, 'Конунг1987', true, '777051099&show_for_all=354e7522a1', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 18, 'Конунг1987', true, '777050504&show_for_all=de3a5b0c86', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 18, 'Конунг1987', false, '777048415&show_for_all=0459968f72', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'Конунг1987', true, '777047191&show_for_all=1e18ca1d99', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'Конунг1987', false, '777045132&show_for_all=b990ef60cd', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'Конунг1987', false, '777042674&show_for_all=a35eeeef9d', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 18, 'Конунг1987', true, '777041907&show_for_all=dbdbfc8892', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 18, 'Конунг1987', true, '777041508&show_for_all=710d93cbe1', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 18, 'Конунг1987', false, '777039516&show_for_all=71f1153818', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'Конунг1987', true, '777038599&show_for_all=c4295150ee', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'Конунг1987', false, '777024008&show_for_all=bca3f29e45', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'Конунг1987', false, '777021812&show_for_all=bda2f1b36d', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'Конунг1987', false, '777019046&show_for_all=8cc4b85ba9', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 18, 'Конунг1987', true, '777017752&show_for_all=9522fb4f49', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 18, 'Конунг1987', true, '777016896&show_for_all=5701069f5b', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 18, 'Конунг1987', false, '777013501&show_for_all=2fdd366ec1', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 18, 'Конунг1987', true, '777012910&show_for_all=40f48ba39e', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 18, 'Конунг1987', true, '777011770&show_for_all=0c4f7c8fb1', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 18, 'Конунг1987', true, '777009672&show_for_all=e19934702e', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 18, 'Конунг1987', false, '777005912&show_for_all=9c114c91cd', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 18, 'Конунг1987', true, '777005336&show_for_all=b226e5342c', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'Конунг1987', true, '777004644&show_for_all=9087d4e527', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'Конунг1987', false, '777002042&show_for_all=2aa3fc5666', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'Конунг1987', false, '776996455&show_for_all=298930ed1a', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 18, 'Конунг1987', true, '776995853&show_for_all=736088dc3b', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 18, 'Конунг1987', false, '776992523&show_for_all=a7c37e1104', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 18, 'Конунг1987', true, '776992095&show_for_all=9afb0051f6', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 18, 'Конунг1987', true, '776991455&show_for_all=0b82ccef32', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'Конунг1987', true, '776990623&show_for_all=e3e3d0099e', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'Конунг1987', false, '776988421&show_for_all=6ae8d806c3', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'Конунг1987', true, '776987520&show_for_all=6cf2fd4f8e', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 18, 'Конунг1987', true, '776987132&show_for_all=dd0799ad7f', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'Конунг1987', true, '776986655&show_for_all=287ecab336', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'Конунг1987', false, '776984807&show_for_all=fcade6418d', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'Конунг1987', true, '776983270&show_for_all=8753aac9f2', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'Конунг1987', true, '776982268&show_for_all=3ed999d9fc', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 18, 'Конунг1987', true, '776981783&show_for_all=213910c12f', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'Конунг1987', true, '776980835&show_for_all=7c1ef1a8eb', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'Конунг1987', false, '776976033&show_for_all=8aa0733e58', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 18, 'Конунг1987', true, '776975117&show_for_all=12c6bf2426', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 18, 'Конунг1987', true, '776974447&show_for_all=77cacc6a38', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'Конунг1987', true, '776974110&show_for_all=c7b107a796', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', true, '776973449&show_for_all=11a2b29d38', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', false, '776971768&show_for_all=c12bdf315b', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', false, '776970139&show_for_all=a976538d51', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'Конунг1987', true, '776969760&show_for_all=f6ace52761', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'Конунг1987', true, '776968347&show_for_all=3d21680379', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'Конунг1987', true, '776967690&show_for_all=9e1eccf247', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'Конунг1987', false, '776964788&show_for_all=b848506199', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', true, '776964318&show_for_all=39448ca522', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'Конунг1987', true, '776963919&show_for_all=9fea6dfc10', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'Конунг1987', true, '776963317&show_for_all=5131fac622', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'Конунг1987', false, '776961296&show_for_all=d5cf2268df', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'Конунг1987', true, '776960381&show_for_all=7ecf129d8f', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'Конунг1987', true, '776959325&show_for_all=1db6f12444', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 18, 'Конунг1987', true, '776958821&show_for_all=06fcf7fe62', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'Конунг1987', true, '776958311&show_for_all=4f9d9638a3', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'Конунг1987', true, '776954834&show_for_all=c131b656aa', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'Конунг1987', true, '776954211&show_for_all=2a1f5c15a8', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'Конунг1987', false, '776140797&show_for_all=c25817f824', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 18, 'Конунг1987', true, '776140163&show_for_all=4443ddd7a8', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'Конунг1987', true, '776139497&show_for_all=725a10d906', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 18, 'Конунг1987', true, '776138313&show_for_all=eb61a98d46', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'Конунг1987', true, '776137942&show_for_all=4f76b91371', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'Конунг1987', false, '776136193&show_for_all=cda6af39b2', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 18, 'Конунг1987', false, '775934765&show_for_all=715d875e26', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', true, '763865044&show_for_all=9a25805b4b', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', false, '763860475&show_for_all=be09597db5', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', false, '763751703&show_for_all=42c00068f3', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', false, '763747198&show_for_all=ac872466f4', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'Конунг1987', true, '763746216&show_for_all=21362b60be', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'Конунг1987', true, '763745009&show_for_all=c37144b4e3', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'Конунг1987', true, '763743511&show_for_all=d6345678a5', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', true, '763741534&show_for_all=9df4cea6db', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', false, '763736913&show_for_all=80d2f7bd0d', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', false, '763726549&show_for_all=c8d68be33f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', false, '763713739&show_for_all=9774080d4d', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', false, '763710321&show_for_all=2a9cd01e75', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', false, '763704347&show_for_all=50ab0a8966', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'Конунг1987', true, '763703533&show_for_all=d3f2b59116', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 18, 'Конунг1987', true, '763702981&show_for_all=a0a7649622', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'Конунг1987', true, '763702158&show_for_all=0f4435919f', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'Конунг1987', true, '763637599&show_for_all=d703aa40fa', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'Конунг1987', true, '763636315&show_for_all=3cede2e5c3', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'Конунг1987', false, '763624382&show_for_all=a047170c80', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'Конунг1987', true, '763622885&show_for_all=23cf8374ae', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'Конунг1987', true, '763621650&show_for_all=cc11b7fa21', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'Конунг1987', true, '763620830&show_for_all=74e239fc58', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 18, 'Конунг1987', true, '763619840&show_for_all=bb21b569fb', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'Конунг1987', true, '763618811&show_for_all=73a33f74ee', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 18, 'Конунг1987', true, '763616795&show_for_all=eee12f14f1', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'Конунг1987', true, '763331973&show_for_all=deab7dc8a1', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'Конунг1987', true, '763331449&show_for_all=24068af8c5', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'Конунг1987', true, '763330705&show_for_all=105224894e', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'Конунг1987', true, '763330165&show_for_all=c513d631ac', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'Конунг1987', false, '763323220&show_for_all=8a31f6676f', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'Конунг1987', true, '763322599&show_for_all=8c69d13259', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'Конунг1987', true, '763321322&show_for_all=ef16f36a58', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'Конунг1987', true, '763320279&show_for_all=9073753b8b', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 18, 'Конунг1987', true, '763319532&show_for_all=735b384117', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'Конунг1987', true, '763318198&show_for_all=6b2626a822', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Конунг1987', true, '763079855&show_for_all=b533867928', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Конунг1987', true, '763077667&show_for_all=4a60f5231b', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 18, 'Конунг1987', true, '763075703&show_for_all=814aeba678', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 18, 'Конунг1987', true, '763074397&show_for_all=98229c4a2d', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 18, 'Конунг1987', true, '763069919&show_for_all=037d9e85c3', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Конунг1987', true, '763068656&show_for_all=400edf4dd3', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Конунг1987', false, '763022613&show_for_all=dfbdcb6f93', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Конунг1987', false, '762867997&show_for_all=77bac26e34', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Конунг1987', false, '762864805&show_for_all=fc71e9d873', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 18, 'Конунг1987', true, '762864367&show_for_all=72be7340fa', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 18, 'Конунг1987', true, '762863131&show_for_all=a0d9a5e635', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'Конунг1987', true, '762861299&show_for_all=1c8aeb7129', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 18, 'Конунг1987', true, '762860149&show_for_all=d19ecd4adf', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 18, 'Конунг1987', true, '762858153&show_for_all=48a7e54d72', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 18, 'Конунг1987', true, '762857454&show_for_all=d4a9492ca2', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 18, 'Конунг1987', true, '762856722&show_for_all=a2517d6280', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Конунг1987', true, '762855243&show_for_all=e12142a233', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 18, 'Конунг1987', true, '762854061&show_for_all=7ef7dff491', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'Конунг1987', true, '762852643&show_for_all=5812eaaf63', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'Конунг1987', false, '762842799&show_for_all=5861c2b300', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 18, 'Конунг1987', true, '762841274&show_for_all=3201536c60', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 18, 'Конунг1987', true, '762840377&show_for_all=921b1e5493', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Конунг1987', true, '762610812&show_for_all=77b8e374c1', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Конунг1987', true, '762608863&show_for_all=e6afb2757d', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 18, 'Конунг1987', true, '762607711&show_for_all=e257cc84f8', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 18, 'Конунг1987', true, '762606377&show_for_all=e4d63d8d3e', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 18, 'Конунг1987', true, '762577241&show_for_all=7e3c3d687b', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Конунг1987', true, '762555728&show_for_all=869d7c2280', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 18, 'Конунг1987', true, '762554708&show_for_all=8823fbccaf', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'Конунг1987', true, '762551750&show_for_all=10128e1a31', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 18, 'Конунг1987', true, '762551195&show_for_all=9130c77d9f', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Конунг1987', true, '762549801&show_for_all=138d7940a6', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 18, 'Конунг1987', true, '762548140&show_for_all=911a58bb01', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 18, 'Конунг1987', true, '762546883&show_for_all=3cbca166b7', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 18, 'Конунг1987', true, '762545576&show_for_all=2853cc97ae', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 18, 'Конунг1987', true, '762544748&show_for_all=0fcbecbbea', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 18, 'Конунг1987', true, '762544028&show_for_all=9a61e8133d', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'Конунг1987', true, '762542935&show_for_all=5c915b2431', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 18, 'Конунг1987', true, '762542035&show_for_all=98320428ac', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 18, 'Конунг1987', true, '762541098&show_for_all=f87cee6d52', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Конунг1987', true, '762375964&show_for_all=251a214b55', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Конунг1987', false, '762371538&show_for_all=422f55b876', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'Конунг1987', true, '762369880&show_for_all=845d88651d', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 18, 'Конунг1987', true, '762369182&show_for_all=0a4d58bc01', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 18, 'Конунг1987', true, '762368131&show_for_all=2840562cf9', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 18, 'Конунг1987', true, '762366335&show_for_all=cc2d9f7eb6', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'Конунг1987', true, '762365463&show_for_all=0f45af12fd', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 18, 'Конунг1987', true, '762364590&show_for_all=dc28597f3c', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'Конунг1987', true, '762363059&show_for_all=8721143364', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 18, 'Конунг1987', true, '762361805&show_for_all=c2996cc86d', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 18, 'Конунг1987', true, '762360504&show_for_all=546a56674b', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 18, 'Конунг1987', true, '762359730&show_for_all=10769337d2', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 18, 'Конунг1987', true, '762358333&show_for_all=b83aef6a14', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'Конунг1987', true, '762356757&show_for_all=aadb1ce6be', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 18, 'Конунг1987', true, '762355805&show_for_all=14ef40eb7c', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 18, 'Конунг1987', true, '762354581&show_for_all=4b2ee1cd89', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 18, 'Конунг1987', true, '762353707&show_for_all=8cc4461475', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 18, 'Конунг1987', true, '762352432&show_for_all=981f91e052', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'Конунг1987', true, '762350992&show_for_all=dd0ca4d2b5', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'Конунг1987', true, '762348489&show_for_all=fdf14929e2', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 18, 'Конунг1987', true, '762347121&show_for_all=866581a78c', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'Конунг1987', true, '762345403&show_for_all=b97cb215c5', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'Конунг1987', true, '762343795&show_for_all=1d4000a9b7', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'Конунг1987', true, '762342293&show_for_all=c5094a7373', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'Конунг1987', true, '762340935&show_for_all=8a1a481d98', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 18, 'Конунг1987', true, '762284269&show_for_all=4ea8c59752', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 18, 'Конунг1987', true, '762283144&show_for_all=6303ec4c09', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'Конунг1987', true, '762279814&show_for_all=85d432c342', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'Конунг1987', false, '762271695&show_for_all=edfa27a724', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'Конунг1987', false, '762265690&show_for_all=3a437717c5', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'Конунг1987', false, '762258863&show_for_all=6c6cbecd85', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'Конунг1987', true, '762257510&show_for_all=af6e0a3d2d', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'Конунг1987', true, '762256144&show_for_all=650242b808', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'Конунг1987', true, '762255067&show_for_all=1a7920705e', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 18, 'Конунг1987', true, '762254210&show_for_all=0516d09057', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'Конунг1987', true, '762252402&show_for_all=403699c3ec', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'Конунг1987', false, '762248418&show_for_all=f73d7301ac', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'Конунг1987', true, '762246379&show_for_all=6ecd5efe25', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'Конунг1987', true, '762243747&show_for_all=0b356adae0', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'Конунг1987', true, '762242348&show_for_all=74de12eb63', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'Конунг1987', true, '762240678&show_for_all=772452ea24', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 18, 'Конунг1987', false, '762230299&show_for_all=454623b497', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 18, 'Конунг1987', false, '762227094&show_for_all=5bf6e3c80d', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Конунг1987', true, '762201391&show_for_all=eb8b21dd42', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'Конунг1987', true, '762199574&show_for_all=7ee3df4c87', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'Конунг1987', true, '762198602&show_for_all=6d41dc356d', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'Конунг1987', true, '762197518&show_for_all=00a3f15560', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'Конунг1987', true, '762196109&show_for_all=5c7f130678', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Конунг1987', true, '762194903&show_for_all=2287d2e792', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Конунг1987', false, '762109856&show_for_all=0c24c221b7', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Конунг1987', false, '762105521&show_for_all=3d1358755e', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'Конунг1987', true, '762105202&show_for_all=9c4f9284f5', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'Конунг1987', true, '762104291&show_for_all=2bb9be68fd', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'Конунг1987', true, '762103385&show_for_all=c6e3e714fe', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'Конунг1987', true, '762102776&show_for_all=47a76dba43', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'Конунг1987', true, '762101895&show_for_all=2aa75a6c27', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Конунг1987', true, '762100433&show_for_all=1d617660c6', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Конунг1987', false, '762094820&show_for_all=64687d15db', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Конунг1987', false, '762090436&show_for_all=963bbc8661', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'Конунг1987', true, '762089295&show_for_all=7f89917dd7', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'Конунг1987', true, '762087616&show_for_all=9809125cbc', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Конунг1987', true, '762086235&show_for_all=59ad22299b', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Конунг1987', false, '761970269&show_for_all=bba048819f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Конунг1987', true, '761968521&show_for_all=d1b99f8444', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'Конунг1987', true, '761963881&show_for_all=6d3873bbf6', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'Конунг1987', true, '761963184&show_for_all=26a87ce80d', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Конунг1987', true, '761631389&show_for_all=641612d548', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'Конунг1987', true, '761630722&show_for_all=fe3a43ae0a', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'Конунг1987', true, '761630206&show_for_all=e369fffd8b', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'Конунг1987', true, '761629664&show_for_all=e2ac742026', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'Конунг1987', true, '761628470&show_for_all=427c5e87bc', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Конунг1987', true, '761627619&show_for_all=ac54b6f662', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Конунг1987', false, '761624961&show_for_all=f8789dc904', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'Конунг1987', true, '761624579&show_for_all=7228ce1544', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'Конунг1987', true, '761623529&show_for_all=1d61ac56ee', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'Конунг1987', true, '761622013&show_for_all=b1ea8a2287', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'Конунг1987', true, '761619919&show_for_all=f4cfbef179', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Конунг1987', true, '761539186&show_for_all=2250e6196e', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'Конунг1987', true, '761536227&show_for_all=194c1365d9', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'Конунг1987', true, '761534044&show_for_all=5db7b1e444', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Конунг1987', true, '761531016&show_for_all=bb3ae5aabf', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Конунг1987', true, '761529948&show_for_all=7782caa57b', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'Конунг1987', true, '761528306&show_for_all=5b7122a5a7', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'Конунг1987', true, '761526475&show_for_all=e48653dc3a', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'Конунг1987', true, '761525134&show_for_all=97e09a71ec', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Конунг1987', true, '759372065&show_for_all=d8e535399c', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'Конунг1987', true, '759370297&show_for_all=dc5c510d55', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'Конунг1987', true, '759368579&show_for_all=4f2b94863a', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'Конунг1987', true, '759366590&show_for_all=75e2334fa8', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'Конунг1987', true, '759362116&show_for_all=f982b3bb27', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'Конунг1987', true, '759360666&show_for_all=8bf0780a62', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'Конунг1987', true, '759360085&show_for_all=365a3390c8', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'Конунг1987', true, '759357699&show_for_all=198389e446', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'Конунг1987', true, '759355644&show_for_all=6c125cfed3', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Конунг1987', true, '759353797&show_for_all=8ad3697da5', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'Конунг1987', false, '759348808&show_for_all=188ae2ebe7', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'Конунг1987', true, '759347511&show_for_all=2a975ab79a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'Конунг1987', true, '759345121&show_for_all=640d45d9c7', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'Конунг1987', true, '759342882&show_for_all=316a077a03', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'Конунг1987', true, '759340240&show_for_all=744c061c3a', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'Конунг1987', true, '759337639&show_for_all=20b701e608', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'Конунг1987', true, '759335517&show_for_all=76505554ea', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'Конунг1987', true, '759334078&show_for_all=1c3bed1cee', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'Конунг1987', true, '759332175&show_for_all=625b3ab7a3', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 20, 'Varyana', true, '813247558&show_for_all=2bef98e110', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', true, '813245079&show_for_all=e7e493dc9f', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 20, 'Varyana', true, '813240812&show_for_all=eac00f2430', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 20, 'Varyana', true, '813239090&show_for_all=59e92ba7bc', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 20, 'Varyana', true, '813235949&show_for_all=0107afd6a8', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 20, 'Varyana', false, '813233843&show_for_all=fb9fdcd5a2', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 20, 'Varyana', true, '813231493&show_for_all=b76efceed0', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 20, 'Varyana', true, '813195068&show_for_all=e9bce3b4b5', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 20, 'Varyana', true, '813191813&show_for_all=3a1f1daa9e', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 20, 'Varyana', true, '813183041&show_for_all=70753d5f80', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 20, 'Varyana', true, '813178488&show_for_all=82de2d24a2', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 20, 'Varyana', true, '813175380&show_for_all=34fefd67d0', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 20, 'Varyana', true, '813166478&show_for_all=44bf9d5805', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 20, 'Varyana', false, '813161540&show_for_all=86b5fd53e5', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 20, 'Varyana', true, '813160192&show_for_all=9d4221f558', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 20, 'Varyana', true, '813154819&show_for_all=49db8ecc24', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 20, 'Varyana', true, '813150545&show_for_all=dc915a032b', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 20, 'Varyana', true, '813146312&show_for_all=b7bbab8ffe', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 20, 'Varyana', true, '813116443&show_for_all=2fbeee5362', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 20, 'Varyana', true, '813109680&show_for_all=7fce995ef4', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812514376&show_for_all=0952db51ab', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812512560&show_for_all=6e77d70353', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812511893&show_for_all=fa06d8384a', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812511087&show_for_all=08fb19b9f6', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812509190&show_for_all=0a7cd3f7e5', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812498547&show_for_all=2206956d22', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812497050&show_for_all=dbab9cbe0d', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 20, 'Varyana', true, '812494720&show_for_all=a304d5a655', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 20, 'Varyana', false, '812488812&show_for_all=b663b1adde', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 20, 'Varyana', false, '812485128&show_for_all=eeb4e0ad02', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 20, 'Varyana', true, '812479950&show_for_all=6f7a9dca15', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Varyana', true, '788401671&show_for_all=374578c8e7', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Varyana', true, '788400041&show_for_all=587eb71af7', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Varyana', false, '788398613&show_for_all=802542ba0d', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Varyana', true, '788397634&show_for_all=98d214d316', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Varyana', true, '788396098&show_for_all=4a4f2545e5', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Varyana', true, '788394892&show_for_all=b877fedccc', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Varyana', true, '788394119&show_for_all=f8e7f37b07', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Varyana', true, '788393652&show_for_all=5e0a6686ee', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Varyana', true, '788392729&show_for_all=364e069f0c', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Varyana', false, '788391815&show_for_all=078244a1ed', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Varyana', false, '788391415&show_for_all=2963553451', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Varyana', true, '788390177&show_for_all=9560611ef2', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Varyana', false, '788389753&show_for_all=4025bbdc77', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Varyana', false, '788389088&show_for_all=8f49f9aa44', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Varyana', true, '788388218&show_for_all=20109fe2f2', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Varyana', false, '788387102&show_for_all=b49f1ff204', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Varyana', false, '788385316&show_for_all=19c99b05de', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Varyana', true, '788383476&show_for_all=05242dd984', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Varyana', true, '788382492&show_for_all=51260b43c7', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Varyana', true, '788381194&show_for_all=17ee316caa', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Varyana', false, '788380495&show_for_all=79c35ad403', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Varyana', true, '788374022&show_for_all=82491b60c5', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Varyana', true, '788369759&show_for_all=0b32c2f426', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Varyana', true, '788284895&show_for_all=a9bc56dd77', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Varyana', true, '788269297&show_for_all=30feb37f20', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Varyana', false, '788267286&show_for_all=f023943fcd', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Varyana', false, '788264745&show_for_all=a14994bb20', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Varyana', true, '788248119&show_for_all=a199e0f7e8', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Varyana', false, '788247726&show_for_all=15ceefc1c7', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Varyana', true, '788164181&show_for_all=788287521c', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Varyana', true, '788163345&show_for_all=0d4e3448b7', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Varyana', false, '788162796&show_for_all=5cb3f1ddc3', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Varyana', false, '788160628&show_for_all=c44005d78d', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Varyana', true, '788159935&show_for_all=cad0a71136', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Varyana', true, '788156594&show_for_all=5572889085', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Varyana', true, '788154166&show_for_all=715e8fe176', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Varyana', false, '788152248&show_for_all=7158411d20', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Varyana', false, '788150993&show_for_all=8159cec886', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Varyana', true, '788087843&show_for_all=79091e78f1', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Varyana', false, '788086964&show_for_all=eecf3fdfa7', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Varyana', true, '788086566&show_for_all=2c9a77dee4', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Varyana', false, '788086116&show_for_all=b4278326d5', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Varyana', true, '788085392&show_for_all=6557e7ec65', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Varyana', true, '788084709&show_for_all=5f08dfb130', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Varyana', false, '788083340&show_for_all=040544f1b7', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Varyana', true, '788082228&show_for_all=e5db34fc8e', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Varyana', true, '788080748&show_for_all=8b3055f667', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Varyana', true, '788079990&show_for_all=1d9b8fd5b3', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Varyana', true, '788079087&show_for_all=1a83e6f959', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Varyana', true, '788077867&show_for_all=33b9f54b26', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Varyana', true, '788072876&show_for_all=d2ac13b8d7', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Varyana', false, '788068257&show_for_all=100a767b70', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Varyana', true, '788067344&show_for_all=efa2425efe', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Varyana', true, '788067029&show_for_all=364c150bf8', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Varyana', true, '788064461&show_for_all=b664031fe2', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 19, 'Varyana', true, '786658560&show_for_all=3563abc525', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 19, 'Varyana', true, '786656074&show_for_all=9692818dcd', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 19, 'Varyana', false, '786653551&show_for_all=06cab09d6f', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 19, 'Varyana', true, '786651776&show_for_all=fe9bca4f6e', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 19, 'Varyana', false, '786649784&show_for_all=c58b7f9ea6', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 19, 'Varyana', true, '786648340&show_for_all=c1c97dc0c7', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 19, 'Varyana', true, '786646882&show_for_all=37c3e2d114', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 19, 'Varyana', true, '786645771&show_for_all=55fc516279', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 19, 'Varyana', true, '786644992&show_for_all=b077eb8018', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 19, 'Varyana', false, '786642931&show_for_all=747f127283', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 19, 'Varyana', true, '786641476&show_for_all=ce2fd7dc91', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 19, 'Varyana', true, '786640586&show_for_all=46d3a2e23d', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 19, 'Varyana', true, '786639006&show_for_all=2d5a40cec1', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 19, 'Varyana', true, '786636903&show_for_all=a20327cd68', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 19, 'Varyana', true, '786636123&show_for_all=b462f79fe4', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 19, 'Varyana', false, '786634611&show_for_all=8cee960183', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 19, 'Varyana', true, '786630998&show_for_all=6a9f971a58', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 19, 'Varyana', false, '786628849&show_for_all=0de8692690', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 19, 'Varyana', true, '786626781&show_for_all=d23b365087', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 19, 'Varyana', true, '786625697&show_for_all=7a4b87061b', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 19, 'Varyana', true, '786565117&show_for_all=97c9d309b9', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Varyana', true, '786562210&show_for_all=a51c074355', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Varyana', false, '786560758&show_for_all=9c71b63a05', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 19, 'Varyana', true, '786559962&show_for_all=cfc287fa1a', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Varyana', true, '786553851&show_for_all=f5b2a31072', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Varyana', false, '786551126&show_for_all=5797f8b7d0', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Varyana', true, '786549187&show_for_all=3a76cced14', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Varyana', false, '786546350&show_for_all=403ea0edb3', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Varyana', true, '786543740&show_for_all=a1a7af00a5', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Varyana', false, '786541623&show_for_all=da204ec99a', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 19, 'Varyana', true, '786539640&show_for_all=0368c8c234', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 19, 'Varyana', true, '786535697&show_for_all=d4fca389d5', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 19, 'Varyana', true, '786530331&show_for_all=6d477484aa', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 19, 'Varyana', true, '786529360&show_for_all=542202a67d', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 19, 'Varyana', true, '786528318&show_for_all=74d5e28d88', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 19, 'Varyana', true, '786527487&show_for_all=9e34330949', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 19, 'Varyana', false, '786525783&show_for_all=eb596e4fb3', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Varyana', true, '786524506&show_for_all=5e105cf965', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Varyana', false, '786522337&show_for_all=e4924279d0', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 19, 'Varyana', true, '786520151&show_for_all=9a66878b7d', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 19, 'Varyana', true, '786519298&show_for_all=beac192729', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 19, 'Varyana', true, '786518302&show_for_all=f1e3d07f4f', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 19, 'Varyana', false, '786514322&show_for_all=90873b5548', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Varyana', true, '786512786&show_for_all=eaa6d3ddfd', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 19, 'Varyana', true, '786508881&show_for_all=2fba487295', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 19, 'Varyana', false, '786504961&show_for_all=dfc0221617', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 19, 'Varyana', true, '786502854&show_for_all=36b883d2a3', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 19, 'Varyana', true, '786500468&show_for_all=abd192a596', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 19, 'Varyana', true, '786499084&show_for_all=19af5e7c87', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Varyana', true, '786033420&show_for_all=311a320551', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 19, 'Varyana', true, '786029776&show_for_all=825630d7e9', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 19, 'Varyana', true, '786018648&show_for_all=2856969786', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 19, 'Varyana', true, '786016915&show_for_all=75ea0c4d5a', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 19, 'Varyana', true, '786015657&show_for_all=0bfaf99ab1', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 19, 'Varyana', true, '786015076&show_for_all=bf3402b370', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 19, 'Varyana', true, '786010644&show_for_all=bacf3c3558', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 19, 'Varyana', true, '786009401&show_for_all=2cf4a0e4bf', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 19, 'Varyana', true, '786007182&show_for_all=5fc596b5f8', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 19, 'Varyana', true, '786001352&show_for_all=1abd9d8661', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 19, 'Varyana', true, '785994561&show_for_all=3763a8d9c5', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 19, 'Varyana', true, '785992690&show_for_all=be25fe56b2', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 19, 'Varyana', false, '785990799&show_for_all=fd9d8925d1', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 19, 'Varyana', true, '785986341&show_for_all=2b67839a5b', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 19, 'Varyana', true, '785984183&show_for_all=5a6024a902', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 19, 'Varyana', true, '785982974&show_for_all=737893f2bb', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 19, 'Varyana', true, '785977086&show_for_all=bf291bb8c3', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 19, 'Varyana', true, '785974086&show_for_all=9442829f13', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 19, 'Varyana', true, '784642828&show_for_all=fb2ac5a467', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Varyana', true, '784109779&show_for_all=23673d3b6c', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 19, 'Varyana', true, '784108659&show_for_all=8c4558e34f', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 19, 'Varyana', true, '784107319&show_for_all=945c9e7f85', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 19, 'Varyana', true, '784105956&show_for_all=be8d105578', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 19, 'Varyana', true, '784104338&show_for_all=eb060f22c9', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 19, 'Varyana', true, '784080574&show_for_all=6913ffa141', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 19, 'Varyana', true, '784080459&show_for_all=278e1d9bc2', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 19, 'Varyana', false, '784080380&show_for_all=1da3fcdc4e', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 19, 'Varyana', true, '784079943&show_for_all=2e5f898651', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 19, 'Varyana', true, '784079599&show_for_all=17b28fed86', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 19, 'Varyana', true, '784079153&show_for_all=95ba8efecf', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 19, 'Varyana', true, '784078052&show_for_all=cb0ecee621', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 19, 'Varyana', true, '784073816&show_for_all=b843c2b992', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 19, 'Varyana', true, '784072032&show_for_all=47b7a4d92e', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 19, 'Varyana', true, '784071336&show_for_all=94b7036365', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 19, 'Varyana', false, '784071023&show_for_all=118d54b893', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', true, '784067887&show_for_all=90cd3be38c', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', false, '784067720&show_for_all=beae8e97e9', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 19, 'Varyana', true, '784066834&show_for_all=8149377ead', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 19, 'Varyana', true, '784066489&show_for_all=501367abd7', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 19, 'Varyana', true, '784066052&show_for_all=688aeef842', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', false, '784064088&show_for_all=2d5406aed5', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', false, '784063768&show_for_all=97ca089023', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', false, '784063279&show_for_all=b51f6be05d', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 19, 'Varyana', true, '784062087&show_for_all=db408d524d', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 19, 'Varyana', true, '784061738&show_for_all=279f8cea58', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 19, 'Varyana', true, '784061083&show_for_all=3561a4bf0d', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 19, 'Varyana', false, '784060527&show_for_all=aae566f5ee', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Varyana', true, '784047760&show_for_all=33ba6fe14c', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 19, 'Varyana', true, '784045481&show_for_all=210105e5ea', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 19, 'Varyana', true, '784044344&show_for_all=7d48138673', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 19, 'Varyana', true, '784038373&show_for_all=7fe7187455', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 19, 'Varyana', false, '784036841&show_for_all=00fb470aa6', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 19, 'Varyana', true, '784034097&show_for_all=6595f7c729', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 19, 'Varyana', true, '784025219&show_for_all=7e79c7024e', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Varyana', true, '784023773&show_for_all=416c3756b2', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Varyana', false, '784022776&show_for_all=a24ab50ef5', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 19, 'Varyana', true, '784021778&show_for_all=9466420cda', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 19, 'Varyana', true, '784020658&show_for_all=ff8fc9f65f', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 19, 'Varyana', true, '784019568&show_for_all=69153e413d', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 19, 'Varyana', true, '783958714&show_for_all=03afc5ae3a', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 19, 'Varyana', true, '783956956&show_for_all=b8bc828b38', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 19, 'Varyana', true, '783955517&show_for_all=5ae0b6a04e', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 19, 'Varyana', true, '783953538&show_for_all=dcc9335030', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 19, 'Varyana', true, '783951681&show_for_all=4ca43caff5', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 19, 'Varyana', true, '783950611&show_for_all=e0f1d0c326', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 19, 'Varyana', true, '783948273&show_for_all=cb0bece7c3', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 19, 'Varyana', true, '783947059&show_for_all=02e9ff79dc', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 19, 'Varyana', false, '783809887&show_for_all=314ebc9ab5', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Varyana', true, '782458984&show_for_all=0ff7dcf486', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Varyana', false, '782458305&show_for_all=b87b12d417', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Varyana', true, '782454927&show_for_all=8d56c2fcc3', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Varyana', false, '782452499&show_for_all=b89f33edd1', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Varyana', true, '782449262&show_for_all=6625a41016', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Varyana', false, '782393583&show_for_all=34fa612d27', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Varyana', false, '782392907&show_for_all=544082d6f9', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', true, '782379152&show_for_all=22c5a46be6', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', false, '782378817&show_for_all=0c74427b3f', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', false, '782377902&show_for_all=e3aa92e471', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Varyana', true, '782377017&show_for_all=8946ab8ea3', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Varyana', true, '782376841&show_for_all=99e8c93667', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Varyana', true, '782376299&show_for_all=2e4681d6b6', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Varyana', false, '782375745&show_for_all=e299a1e257', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Varyana', true, '782374425&show_for_all=daf74b8a8c', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Varyana', true, '782372201&show_for_all=9ffeb28d56', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Varyana', true, '782371135&show_for_all=9b6d56c9ba', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Varyana', false, '782370486&show_for_all=6163d5302c', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Varyana', false, '782369727&show_for_all=426bb04188', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Varyana', true, '782368965&show_for_all=c360ddbc37', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Varyana', true, '782367521&show_for_all=070ed2738e', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Varyana', false, '782366707&show_for_all=9910935a41', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Varyana', false, '782365625&show_for_all=eb339ee89c', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Varyana', true, '782364024&show_for_all=c95ecfa41c', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Varyana', true, '782361907&show_for_all=779bd41c8d', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Varyana', false, '782360860&show_for_all=710fbe75b6', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Varyana', false, '782359788&show_for_all=df0938cad8', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Varyana', true, '782357846&show_for_all=40dcc0d6c3', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Varyana', false, '782356426&show_for_all=e6ebd37da5', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Varyana', true, '782354818&show_for_all=f658bd0107', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Varyana', true, '782353664&show_for_all=cba9b8d768', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Varyana', true, '781782395&show_for_all=d1e6d07699', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 19, 'Varyana', true, '781777267&show_for_all=8d313ac7fd', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 19, 'Varyana', true, '781772523&show_for_all=b26c443299', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Varyana', true, '781771035&show_for_all=fbca889ddd', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 19, 'Varyana', true, '781769444&show_for_all=7620542729', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 19, 'Varyana', true, '781766874&show_for_all=d130a39d31', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 19, 'Varyana', true, '781766106&show_for_all=d83fb9cb85', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 19, 'Varyana', false, '781765598&show_for_all=a36f6d1500', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 19, 'Varyana', true, '781764988&show_for_all=53362c1e0f', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Varyana', true, '781763460&show_for_all=2896edbc7a', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Varyana', false, '781762897&show_for_all=d0c66a1300', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Varyana', true, '781760375&show_for_all=c36b79c851', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Varyana', false, '781759501&show_for_all=eb71aee549', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Varyana', true, '781758391&show_for_all=9afb0b2de8', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Varyana', false, '781757232&show_for_all=d8c9916418', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 19, 'Varyana', true, '781754958&show_for_all=765db61285', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Varyana', true, '781753624&show_for_all=761a926628', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Varyana', false, '781751978&show_for_all=d587bf53dc', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Varyana', false, '781751027&show_for_all=e92bcb3c8c', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Varyana', true, '781749532&show_for_all=eaf6917423', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Varyana', false, '781748577&show_for_all=f626307054', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Varyana', true, '781744817&show_for_all=a0d7ffb3cb', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Varyana', true, '781728205&show_for_all=5ad75c8511', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Varyana', false, '781727848&show_for_all=4c1d787c23', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Varyana', false, '781727396&show_for_all=a846873b04', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', true, '781723891&show_for_all=a71ce8d132', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', false, '781723289&show_for_all=7f4a7d4353', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', true, '781721269&show_for_all=06acbecf1a', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', false, '781720057&show_for_all=6c041b4e15', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', false, '781719585&show_for_all=b5255d1b09', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', false, '781718517&show_for_all=1a323f6f32', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', false, '781717581&show_for_all=71bda41a89', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', false, '781716696&show_for_all=9a44259e0c', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', false, '781715898&show_for_all=f8abdeffbb', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', true, '781714610&show_for_all=085c83b865', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', false, '781709345&show_for_all=ce43ab3b13', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Varyana', true, '781704105&show_for_all=9e76291b42', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 19, 'Varyana', true, '781699175&show_for_all=d9cae62a60', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 19, 'Varyana', true, '781697467&show_for_all=a7ea6ec6f3', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', true, '781691381&show_for_all=c6a22f8a9d', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', false, '781689757&show_for_all=865495daf9', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', false, '781689189&show_for_all=770f6c7a6e', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', false, '781686490&show_for_all=aa4ffa51e8', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', false, '781685382&show_for_all=eb4102b05a', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', false, '781683245&show_for_all=1f0f54de74', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 19, 'Varyana', true, '781681787&show_for_all=37dba49190', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 19, 'Varyana', false, '781680557&show_for_all=e40894bc43', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 19, 'Varyana', true, '781679786&show_for_all=5adeab1972', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 19, 'Varyana', true, '781677241&show_for_all=0397e08030', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', true, '781675051&show_for_all=a4c7d6aa4e', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', false, '781670294&show_for_all=2d91207886', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', false, '781669054&show_for_all=af89923d37', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', false, '781667987&show_for_all=8bf20c4afd', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', false, '781667110&show_for_all=ad0279436c', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', false, '781666684&show_for_all=7bc6723977', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 19, 'Varyana', true, '781664343&show_for_all=3374b02fe3', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 19, 'Varyana', true, '781656916&show_for_all=cdea162c2d', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 19, 'Varyana', true, '781655130&show_for_all=cc25629a60', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 19, 'Varyana', false, '781654186&show_for_all=dc8ebc331c', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 19, 'Varyana', true, '781652821&show_for_all=24a6dff93b', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 19, 'Varyana', true, '781649235&show_for_all=54557c3cea', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 19, 'Varyana', false, '781645628&show_for_all=7a7b7cf6ab', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Varyana', true, '781641249&show_for_all=e83491db62', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Varyana', false, '781639733&show_for_all=8df6abc96d', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Varyana', false, '781635833&show_for_all=a26e7fa400', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Varyana', false, '781634204&show_for_all=21b5f6a081', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', true, '781630890&show_for_all=dd58233362', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '781629180&show_for_all=b70a85183b', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '781625678&show_for_all=0d79737229', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '781624282&show_for_all=66b82bcf70', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '781621135&show_for_all=85dd204a5b', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '781618278&show_for_all=ed888af0dd', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '781617354&show_for_all=c070b08b60', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 19, 'Varyana', true, '781612252&show_for_all=39cdcc5319', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 19, 'Varyana', true, '781610001&show_for_all=f1154d020c', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Varyana', true, '781213476&show_for_all=a7b8a333e0', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Varyana', true, '781210034&show_for_all=f1f13de90c', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Varyana', false, '781207956&show_for_all=5d0102d408', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Varyana', false, '781205744&show_for_all=a3cb918331', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'Varyana', true, '781203782&show_for_all=7078cc1abe', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'Varyana', false, '781202631&show_for_all=f997103571', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 19, 'Varyana', true, '781201182&show_for_all=727f45ad8c', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', true, '781199329&show_for_all=2f7390e41a', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', false, '781198330&show_for_all=28bde6a917', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', false, '781197423&show_for_all=a194694bc5', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', false, '781196582&show_for_all=a46abeb096', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', false, '781195601&show_for_all=aa5c9b126d', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', false, '781194630&show_for_all=552e9d6c7d', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', false, '781192221&show_for_all=54d1e2768d', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'Varyana', true, '781190089&show_for_all=40b5c39b2d', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'Varyana', true, '781189195&show_for_all=7f2cca7dcd', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 19, 'Varyana', true, '781179084&show_for_all=71a61e4b12', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'Varyana', true, '781178075&show_for_all=781c4bad69', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'Varyana', false, '781177449&show_for_all=47d287b20a', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'Varyana', true, '781176339&show_for_all=066b9bca04', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 19, 'Varyana', true, '781175391&show_for_all=4195db8056', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'Varyana', true, '781174439&show_for_all=7f81b31a3a', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'Varyana', true, '781169471&show_for_all=4f61b8e3f1', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'Varyana', false, '781168307&show_for_all=1999c0236c', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Varyana', true, '781164524&show_for_all=3ac1b838b5', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 19, 'Varyana', true, '781163446&show_for_all=55e74c77f8', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 19, 'Varyana', true, '781162307&show_for_all=c8697672c3', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 19, 'Varyana', true, '781161241&show_for_all=b864a9932d', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Varyana', true, '781159192&show_for_all=83e6908104', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Varyana', false, '781157016&show_for_all=69e2dd3485', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Varyana', false, '781155848&show_for_all=6a03f3d9a7', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Varyana', false, '781154819&show_for_all=c6c657d7a8', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Varyana', false, '781153827&show_for_all=7ddb77dab3', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'Varyana', true, '780247651&show_for_all=0fa8363351', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 19, 'Varyana', true, '780246161&show_for_all=abe3648c83', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 19, 'Varyana', true, '780245523&show_for_all=8bf2f61db2', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 19, 'Varyana', true, '780244124&show_for_all=b3d02d6ccc', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 19, 'Varyana', true, '780241935&show_for_all=e8c68daca0', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 19, 'Varyana', true, '780240613&show_for_all=5127393107', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 19, 'Varyana', true, '780236993&show_for_all=efb4b0fa14', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 19, 'Varyana', true, '780235769&show_for_all=4404ccd2e9', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 19, 'Varyana', true, '780234859&show_for_all=84906fd51c', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 19, 'Varyana', true, '780229250&show_for_all=8663d3dc65', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 19, 'Varyana', false, '780228117&show_for_all=b91422364f', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 19, 'Varyana', true, '780226770&show_for_all=c892bf7f64', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 19, 'Varyana', false, '780225567&show_for_all=919b784b84', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 19, 'Varyana', true, '780223847&show_for_all=cb6deaced5', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 19, 'Varyana', true, '780221162&show_for_all=603528b00b', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 19, 'Varyana', true, '780219540&show_for_all=2a5948201d', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 19, 'Varyana', true, '780217676&show_for_all=1ff855eaf8', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 19, 'Varyana', false, '780215653&show_for_all=a7ebcd38be', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 19, 'Varyana', false, '780214792&show_for_all=2ebe7826c9', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 19, 'Varyana', false, '780213856&show_for_all=9546456191', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 19, 'Varyana', true, '780212151&show_for_all=81a078818e', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 19, 'Varyana', false, '780210554&show_for_all=67e0bd0ade', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 19, 'Varyana', true, '780206941&show_for_all=d4418fd726', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 19, 'Varyana', true, '780205313&show_for_all=35d0acea71', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Varyana', true, '776668347&show_for_all=a276c9b889', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'Varyana', true, '776665675&show_for_all=dfde5cca37', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Varyana', true, '776663699&show_for_all=360f7deef4', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'Varyana', true, '776662692&show_for_all=a74e535197', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'Varyana', false, '776661373&show_for_all=f4c0bde429', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 19, 'Varyana', true, '776660350&show_for_all=362702f901', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Varyana', true, '776658998&show_for_all=4de5d5b534', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Varyana', false, '776657215&show_for_all=1ca9e1043a', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 19, 'Varyana', true, '776656211&show_for_all=460b903faf', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'Varyana', true, '776655439&show_for_all=e04713b295', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'Varyana', true, '776654233&show_for_all=92b79c08e8', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Varyana', true, '776652496&show_for_all=a2c943a6fd', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Varyana', false, '776651985&show_for_all=303d603ee9', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Varyana', false, '776651393&show_for_all=5cab2098a5', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Varyana', true, '776649697&show_for_all=5d2c4b831a', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Varyana', false, '776648971&show_for_all=54c13b854b', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 19, 'Varyana', true, '776647859&show_for_all=c04e9e429c', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 19, 'Varyana', true, '776646533&show_for_all=b3235e274e', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Varyana', true, '776645761&show_for_all=d52a979599', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 19, 'Varyana', true, '776645006&show_for_all=1d31e293b1', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Varyana', true, '776643458&show_for_all=d193b1ef38', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 19, 'Varyana', true, '776642405&show_for_all=63aeff57d7', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Varyana', true, '776641287&show_for_all=56847fa03c', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Varyana', true, '776624250&show_for_all=3cd4ac7f8c', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'Varyana', true, '776623992&show_for_all=b254f4330d', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Varyana', true, '776623819&show_for_all=2643c365bd', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Varyana', true, '776623626&show_for_all=a7bd9fc9fe', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Varyana', true, '776623422&show_for_all=b70a6313c9', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Varyana', true, '776623174&show_for_all=593e57a5f6', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Varyana', false, '776623072&show_for_all=4279141b01', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Varyana', true, '776623024&show_for_all=4e5ddf52d7', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Varyana', true, '776622902&show_for_all=94ebf9ed1c', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Varyana', true, '776622737&show_for_all=55d97237c4', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Varyana', false, '776622577&show_for_all=e4616170ad', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Varyana', true, '776622457&show_for_all=a966a0fc36', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Varyana', true, '776622283&show_for_all=8e468571a9', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Varyana', true, '776621895&show_for_all=63b130b500', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Varyana', false, '776621588&show_for_all=d10da14485', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Varyana', true, '776621365&show_for_all=13b86490a9', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', true, '776621199&show_for_all=bace8a1fca', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '776621098&show_for_all=56d42c7c54', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '776620948&show_for_all=578521b2d1', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '776620895&show_for_all=a9bdd64d82', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '776620781&show_for_all=a52085e2a1', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '776620645&show_for_all=5a295e15f9', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '776620493&show_for_all=f2c4bf3143', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Varyana', true, '776620297&show_for_all=bbc8c03d90', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Varyana', true, '776620046&show_for_all=1ad7a1b27e', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Varyana', false, '776619881&show_for_all=af5f94187d', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Varyana', true, '776619707&show_for_all=d08470873c', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Varyana', true, '776619552&show_for_all=e60f3a1253', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Varyana', true, '776461545&show_for_all=eba486ffc1', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Varyana', false, '776460715&show_for_all=2235cb3476', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Varyana', true, '776459233&show_for_all=3599190b02', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Varyana', false, '776458224&show_for_all=1da0ea38fc', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Varyana', true, '776457585&show_for_all=56cf3b54f0', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Varyana', true, '776456894&show_for_all=8666c72926', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Varyana', false, '776456139&show_for_all=fd314702f3', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Varyana', true, '776455077&show_for_all=5a40177a31', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Varyana', false, '776454180&show_for_all=7b3ca8bee4', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Varyana', false, '776452812&show_for_all=81e6846dbc', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Varyana', false, '776451104&show_for_all=05c977f84b', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Varyana', true, '776449751&show_for_all=414d545406', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Varyana', true, '776449234&show_for_all=2c4bbaff68', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Varyana', true, '776448276&show_for_all=90a8eb17e0', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Varyana', false, '776447457&show_for_all=51b9a4c528', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Varyana', true, '776446543&show_for_all=dec0ee596e', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Varyana', true, '776444249&show_for_all=719ca718d1', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Varyana', false, '776442731&show_for_all=d53537e25d', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Varyana', true, '776441718&show_for_all=e4af51d68f', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Varyana', true, '776440736&show_for_all=ead59909f6', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Varyana', true, '776440080&show_for_all=7e38940454', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Varyana', true, '776437249&show_for_all=435d3cbdc7', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Varyana', false, '776435359&show_for_all=efa4d6125b', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Varyana', true, '776425608&show_for_all=4416161581', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Varyana', false, '776424709&show_for_all=18b3265db3', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Varyana', true, '776423657&show_for_all=b168cf38cb', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Varyana', true, '776423083&show_for_all=a6d96a96f6', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Varyana', true, '776419943&show_for_all=7e91cce374', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Varyana', true, '776418299&show_for_all=2fbbf8dec9', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Varyana', false, '776417376&show_for_all=9c219f6ed4', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Varyana', false, '776416346&show_for_all=7ad6bba5b1', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Varyana', true, '776414065&show_for_all=95c1846ce9', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Varyana', true, '776412601&show_for_all=de937bcbf0', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Varyana', true, '776405747&show_for_all=d0c68f481a', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Varyana', false, '776405172&show_for_all=9181d8635b', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Varyana', false, '776404566&show_for_all=fd29cfb818', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Varyana', true, '776403400&show_for_all=1ad74cad32', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Varyana', true, '776400914&show_for_all=4f1ea8b983', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Varyana', false, '776400082&show_for_all=c2a728cf13', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Varyana', true, '776398951&show_for_all=569ae8c2f4', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Varyana', true, '776397999&show_for_all=0279a42f4b', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Varyana', false, '776397331&show_for_all=5ec7152e12', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Varyana', true, '776396259&show_for_all=3f11ed8c67', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Varyana', true, '776389314&show_for_all=49fd31662f', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Varyana', true, '776388542&show_for_all=211987b760', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Varyana', false, '776357721&show_for_all=943ba79e84', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Varyana', true, '776356109&show_for_all=1da6168ff5', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Varyana', true, '776355578&show_for_all=e714be0dc3', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Varyana', true, '776354322&show_for_all=b5d5114fe2', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Varyana', false, '776352903&show_for_all=d81ce9afb7', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Varyana', false, '776351246&show_for_all=7b03e978d7', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Varyana', true, '776350327&show_for_all=ef03693f8c', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Varyana', true, '776349821&show_for_all=98622c0920', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Varyana', true, '776349377&show_for_all=3bb4c2c0a5', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Varyana', false, '776348665&show_for_all=6c81630437', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Varyana', true, '776347429&show_for_all=f40f54676e', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Varyana', false, '776346952&show_for_all=9291b8c55d', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Varyana', false, '776346520&show_for_all=5f82a8401f', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Varyana', true, '776018706&show_for_all=44a452e2b5', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Varyana', false, '776018391&show_for_all=09c76842dd', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Varyana', true, '776017927&show_for_all=c30d17d3e9', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Varyana', true, '776016843&show_for_all=fb9e052ff9', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', true, '776015994&show_for_all=a82a086b5b', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', false, '776014784&show_for_all=062dc52c45', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', false, '776013574&show_for_all=8f7df99620', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Varyana', false, '776012372&show_for_all=51eb18c69f', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Varyana', true, '776011638&show_for_all=e1958308f1', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Varyana', true, '776011210&show_for_all=dbf13a5e58', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Varyana', true, '776010341&show_for_all=bdeeed1e1b', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Varyana', true, '776009523&show_for_all=3247cc21fa', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Varyana', true, '776006201&show_for_all=4bbb93e038', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Varyana', false, '776005598&show_for_all=741defffd5', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Varyana', true, '776000329&show_for_all=066329ecf3', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Varyana', true, '775998343&show_for_all=05585807f8', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Varyana', false, '775997428&show_for_all=64e99e34a7', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Varyana', true, '775995198&show_for_all=1c93d6ada9', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Varyana', false, '775994431&show_for_all=6a864c47ae', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Varyana', false, '775993490&show_for_all=b2a69d06aa', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Varyana', true, '775992513&show_for_all=4b3c9e662a', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Varyana', true, '775990247&show_for_all=c2de394340', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Varyana', false, '775989182&show_for_all=592dc07255', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Varyana', false, '775987577&show_for_all=b9c8e63ef4', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Varyana', false, '775986056&show_for_all=df4dd32a63', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Varyana', true, '775984627&show_for_all=760940cdf9', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Varyana', true, '775983249&show_for_all=82f0e57a19', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Varyana', false, '775981869&show_for_all=ec4637f944', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Varyana', true, '775980439&show_for_all=43016dbb9a', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Varyana', false, '775978872&show_for_all=f0b87b3b75', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Varyana', true, '775433687&show_for_all=95194e3a45', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 19, 'Varyana', true, '775431891&show_for_all=010261f72c', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 19, 'Varyana', true, '775430811&show_for_all=0d422abf18', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 19, 'Varyana', true, '775429458&show_for_all=b8e9050eaf', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 19, 'Varyana', true, '775428277&show_for_all=2bb0bb42ff', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 19, 'Varyana', true, '775427101&show_for_all=b833389856', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 19, 'Varyana', true, '775425941&show_for_all=b8fd946915', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 19, 'Varyana', true, '775425055&show_for_all=d3f364548e', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 19, 'Varyana', true, '775424296&show_for_all=f67b810e5b', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 19, 'Varyana', true, '775423268&show_for_all=b0329d801e', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 19, 'Varyana', true, '775422014&show_for_all=5d37c155c5', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 19, 'Varyana', true, '775421363&show_for_all=820e27cc27', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 19, 'Varyana', true, '775420562&show_for_all=617ef57c12', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 19, 'Varyana', true, '775418348&show_for_all=3675ed14f2', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', true, '775387475&show_for_all=ceeaef15b3', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 19, 'Varyana', false, '775386362&show_for_all=b9a3ec251e', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 19, 'Varyana', true, '775384581&show_for_all=5d152391f0', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 19, 'Varyana', true, '775382952&show_for_all=8ef9315366', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 19, 'Varyana', true, '775382018&show_for_all=a976e2a739', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', false, '772242246&show_for_all=2c359fe3fa', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Varyana', true, '767129292&show_for_all=cfabadfaeb', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 19, 'Varyana', true, '767128027&show_for_all=60b75921a4', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 19, 'Varyana', true, '767126867&show_for_all=ed3179f657', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 19, 'Varyana', true, '767125345&show_for_all=a0c96595f7', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 19, 'Varyana', true, '767108084&show_for_all=c9efa87973', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 19, 'Varyana', true, '767101146&show_for_all=0331c27eee', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 19, 'Varyana', false, '767100279&show_for_all=1e2689b4dd', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 19, 'Varyana', true, '767098401&show_for_all=d7894fc3b8', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 19, 'Varyana', true, '767091674&show_for_all=d2f71638c8', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 19, 'Varyana', true, '767090872&show_for_all=90c1fba493', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 19, 'Varyana', false, '767090238&show_for_all=b180a69b38', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 19, 'Varyana', true, '767088730&show_for_all=1f8b9581af', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 19, 'Varyana', true, '767087192&show_for_all=71140973a0', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 19, 'Varyana', false, '767086376&show_for_all=859eaa6c15', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 19, 'Varyana', true, '767085695&show_for_all=8268e22d97', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 19, 'Varyana', true, '767084592&show_for_all=ca4450932e', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 19, 'Varyana', true, '767084070&show_for_all=f36c5b00a9', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 19, 'Varyana', true, '767082862&show_for_all=02094923f4', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Varyana', true, '767081615&show_for_all=d0e447c46a', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Varyana', false, '767080357&show_for_all=f4f405bfff', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 19, 'Varyana', false, '767079365&show_for_all=4d90193ef3', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Varyana', true, '767077526&show_for_all=a1ffd6d0dd', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Varyana', false, '767076526&show_for_all=9e00c7b4c7', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 19, 'Varyana', false, '767075379&show_for_all=440596f45b', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 19, 'Varyana', true, '767074416&show_for_all=7bf1792724', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Varyana', true, '767062031&show_for_all=3540358e65', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'Varyana', true, '767059446&show_for_all=ed08c24e2d', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'Varyana', true, '767058050&show_for_all=c9c8234ff3', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'Varyana', true, '767056643&show_for_all=a5d832da2c', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 19, 'Varyana', true, '767055043&show_for_all=cdc8aad5c2', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'Varyana', true, '767052941&show_for_all=87e648dda5', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'Varyana', true, '767051928&show_for_all=0551960984', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'Varyana', true, '767006560&show_for_all=0d37599c66', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 19, 'Varyana', true, '767004226&show_for_all=3acc9859be', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'Varyana', true, '767003056&show_for_all=3e7a647fb2', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 19, 'Varyana', true, '767000742&show_for_all=635f77908b', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'Varyana', true, '766999361&show_for_all=f095518731', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Varyana', true, '766997486&show_for_all=4a42f5b299', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'Varyana', false, '766995526&show_for_all=05fc56ffd8', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'Varyana', true, '766993518&show_for_all=7bf69e7b3c', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 19, 'Varyana', true, '766992346&show_for_all=248f183cc8', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 19, 'Varyana', true, '766990947&show_for_all=df8c8bf090', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'Varyana', true, '766989709&show_for_all=85e12b08e5', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 19, 'Varyana', true, '766988853&show_for_all=c4bbb9d8c1', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', false, '765129567&show_for_all=a6ce0fbaf6', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Varyana', true, '763543013&show_for_all=6bb5c5530b', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'Varyana', true, '763541390&show_for_all=a3cfabbf7c', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Varyana', true, '763540358&show_for_all=4c9c20cfda', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Varyana', true, '763539327&show_for_all=52d9990cf9', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Varyana', true, '763538162&show_for_all=0eda9c376f', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Varyana', true, '763535225&show_for_all=12fe08e652', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Varyana', true, '763534498&show_for_all=39dc912a92', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Varyana', true, '763533212&show_for_all=a66977f6e5', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Varyana', true, '763532542&show_for_all=eedc7f0fd2', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Varyana', true, '763531657&show_for_all=c8d902e517', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Varyana', true, '763530154&show_for_all=85f79c13e4', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', true, '763487149&show_for_all=fdf87d8b85', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '763484056&show_for_all=38203421fd', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '763483165&show_for_all=71ffac0012', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Varyana', false, '763482458&show_for_all=e888713e33', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Varyana', true, '763479838&show_for_all=2aa6ebbd19', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Varyana', true, '763478229&show_for_all=b5ac8dfe7a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Varyana', true, '763473625&show_for_all=c32d1047e3', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Varyana', true, '763466589&show_for_all=c26ae02e2c', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Varyana', true, '763465071&show_for_all=35b8ff94c4', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Varyana', true, '763464482&show_for_all=b167b5ce97', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Varyana', true, '763353432&show_for_all=a04ebd6f17', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Varyana', false, '763352699&show_for_all=4c4ff5ea09', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 19, 'Varyana', true, '763351941&show_for_all=9944ee5f3c', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 19, 'Varyana', true, '763351640&show_for_all=04eac4db4a', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 19, 'Varyana', true, '763350912&show_for_all=e53aaf0663', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 19, 'Varyana', true, '763346151&show_for_all=505014b6d6', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 19, 'Varyana', false, '763345341&show_for_all=2535f923c8', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 19, 'Varyana', true, '763344677&show_for_all=e28f3deefe', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 19, 'Varyana', true, '763342568&show_for_all=088662bfd4', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 19, 'Varyana', true, '763341895&show_for_all=fa0ba6ffca', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 19, 'Varyana', true, '763336603&show_for_all=f5c03fdcb6', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 19, 'Varyana', false, '763334239&show_for_all=4093ba727b', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 19, 'Varyana', true, '763331306&show_for_all=ffa76f7648', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 19, 'Varyana', true, '763330570&show_for_all=c063b64179', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 19, 'Varyana', true, '763319942&show_for_all=fd66afb607', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 19, 'Varyana', true, '763317331&show_for_all=07bfbc76da', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '763316125&show_for_all=79aa3c3027', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 19, 'Varyana', false, '763314184&show_for_all=96932e78ef', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Varyana', true, '763296869&show_for_all=3f44d47fd7', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'Varyana', true, '763294567&show_for_all=2ccd5c1cfa', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Varyana', true, '763293050&show_for_all=f01f5c4ef1', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'Varyana', true, '763291550&show_for_all=48e3ddf51c', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 19, 'Varyana', true, '763289372&show_for_all=2e3381ca5f', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Varyana', true, '763288159&show_for_all=09d3d71423', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Varyana', false, '763286829&show_for_all=0d7cf2f086', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 19, 'Varyana', true, '763285827&show_for_all=21d62bff19', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Varyana', true, '763285131&show_for_all=4a8a3a6a11', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Varyana', true, '763283704&show_for_all=8ee1ea7ca1', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 19, 'Varyana', true, '763282177&show_for_all=5707adf0c5', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 19, 'Varyana', true, '763281021&show_for_all=ce919a2a3e', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Varyana', true, '763279200&show_for_all=fdf12e89ca', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'Varyana', true, '763278274&show_for_all=4dd6ff6f55', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'Varyana', true, '763276692&show_for_all=a7ec381c9f', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 19, 'Varyana', true, '763275394&show_for_all=2290dd2d4a', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Varyana', true, '763273777&show_for_all=05f8366500', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 19, 'Varyana', true, '763272529&show_for_all=8fed5bec16', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Varyana', true, '763252226&show_for_all=af5a2e13de', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Varyana', false, '763251058&show_for_all=51e1145458', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Varyana', false, '763250291&show_for_all=cc2779417a', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Varyana', false, '763247316&show_for_all=dac205bf8c', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 19, 'Varyana', true, '763240118&show_for_all=6af20899e1', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 19, 'Varyana', true, '763236612&show_for_all=01cb2aac7d', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 19, 'Varyana', true, '763233805&show_for_all=86dd119cb0', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Varyana', true, '763213090&show_for_all=5b1ec13c35', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Varyana', false, '763211404&show_for_all=4f3ad6b730', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 19, 'Varyana', true, '763209619&show_for_all=d80168de3d', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 19, 'Varyana', true, '763208152&show_for_all=69f0f1e5b6', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 19, 'Varyana', true, '763205642&show_for_all=30cafbd3f0', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 19, 'Varyana', true, '763204361&show_for_all=30ea609b80', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 19, 'Varyana', true, '763203359&show_for_all=a7a71c7fb2', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 19, 'Varyana', true, '763202711&show_for_all=ab1238010e', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 19, 'Varyana', true, '763196095&show_for_all=651dec31b5', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Varyana', true, '763194500&show_for_all=edbd76ac95', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 19, 'Varyana', false, '763193443&show_for_all=09d0f6dbb9', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 19, 'Varyana', true, '763192225&show_for_all=2952b84439', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 19, 'Varyana', true, '763190933&show_for_all=d0274d707f', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 19, 'Varyana', true, '762903644&show_for_all=ba0e57196d', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Varyana', true, '762902928&show_for_all=87b50d2fb4', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Varyana', false, '762902210&show_for_all=e66c1a8687', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 19, 'Varyana', false, '762863919&show_for_all=2ec9f62eed', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 19, 'Varyana', true, '762863210&show_for_all=b0d4a6a586', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 19, 'Varyana', true, '762849078&show_for_all=f82cbbc72f', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 19, 'Varyana', true, '762843963&show_for_all=2bc6740748', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 19, 'Varyana', false, '762840342&show_for_all=f18ddd396f', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 19, 'Varyana', true, '762839194&show_for_all=f16489837f', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 19, 'Varyana', true, '762800905&show_for_all=b89e16f79c', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Varyana', true, '761776652&show_for_all=da97881ce7', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'Varyana', true, '761774278&show_for_all=ce6995f470', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Varyana', true, '761770597&show_for_all=29eda56464', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Varyana', false, '761769930&show_for_all=ca94319795', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Varyana', true, '761768819&show_for_all=01716d1a87', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Varyana', true, '761765624&show_for_all=8aa1f34389', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Varyana', true, '761764294&show_for_all=f206aa4335', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Varyana', true, '761763393&show_for_all=e736f7db29', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Varyana', true, '761761321&show_for_all=7c1833c3ba', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Varyana', true, '761760402&show_for_all=68d8d74a82', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Varyana', true, '761759381&show_for_all=484a840837', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Varyana', true, '761758467&show_for_all=8229f9d967', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Varyana', true, '761757600&show_for_all=2a02fb4cc0', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Varyana', true, '761754629&show_for_all=9811706542', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Varyana', true, '761753502&show_for_all=8881a3aeb6', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Varyana', true, '761752012&show_for_all=cd08bb847b', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Varyana', true, '761750896&show_for_all=7e818228ec', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Varyana', true, '761746075&show_for_all=4273706756', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Varyana', true, '761745433&show_for_all=30fa2296db', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Varyana', true, '761709341&show_for_all=6410062e68', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Varyana', true, '761706624&show_for_all=ee693d43d2', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 19, 'Varyana', true, '761703502&show_for_all=39a9c3d28c', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', true, '761698593&show_for_all=60112fdcfc', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '761696373&show_for_all=26ae4dbd8b', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'Varyana', true, '761693929&show_for_all=949f54ddd8', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 19, 'Varyana', true, '761693112&show_for_all=431e586fea', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 19, 'Varyana', true, '761692274&show_for_all=0deefac36e', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 19, 'Varyana', true, '761691408&show_for_all=5ee2c4a640', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 19, 'Varyana', true, '761690182&show_for_all=2dd542514d', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 19, 'Varyana', true, '761686018&show_for_all=4232539a30', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 19, 'Varyana', true, '761683880&show_for_all=5df329bb6b', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 19, 'Varyana', true, '761682201&show_for_all=d9ac042058', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 19, 'Varyana', true, '761681141&show_for_all=89c920bd9f', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'Varyana', true, '761680334&show_for_all=7e290aa7e6', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'Varyana', true, '761678245&show_for_all=6b46b16a27', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 19, 'Varyana', true, '761677101&show_for_all=96a5762f22', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 19, 'Varyana', true, '761675473&show_for_all=971efc2fbd', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 19, 'Varyana', true, '761673768&show_for_all=ddaca0d592', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Varyana', true, '760588375&show_for_all=3c56338ede', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'Varyana', true, '760580833&show_for_all=cc9b7e2c44', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Varyana', true, '760574160&show_for_all=fc91048b5a', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Varyana', false, '760571297&show_for_all=4c77ebf0a8', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Varyana', true, '760566702&show_for_all=87a758bfdd', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Varyana', true, '760560930&show_for_all=0e99df909b', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Varyana', true, '760554668&show_for_all=644aafed72', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Varyana', true, '760551512&show_for_all=7cacf2e840', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Varyana', true, '760548799&show_for_all=bee3e23c8a', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Varyana', true, '760545413&show_for_all=3d4e853bcc', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Varyana', true, '760541075&show_for_all=3b61f0e087', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Varyana', true, '760538024&show_for_all=d310c5feda', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Varyana', true, '760535220&show_for_all=b3859473d8', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Varyana', true, '760532801&show_for_all=3b89d92e08', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Varyana', true, '760528830&show_for_all=1158e5492a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Varyana', true, '760526048&show_for_all=cec8deae32', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Varyana', true, '760522755&show_for_all=d9fa339301', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Varyana', true, '760520421&show_for_all=6d6a5d1e71', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Varyana', true, '760518789&show_for_all=df732e8e35', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Varyana', true, '760471060&show_for_all=0801450c96', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'Varyana', true, '760466189&show_for_all=81e1576070', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Varyana', true, '760461893&show_for_all=40276a5a51', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Varyana', true, '760458269&show_for_all=463630001b', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Varyana', true, '760453625&show_for_all=f889e7d81b', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Varyana', true, '760449400&show_for_all=b59f45032b', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Varyana', false, '760446175&show_for_all=7b7b21b74f', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Varyana', true, '760444241&show_for_all=30624951a4', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Varyana', true, '760435027&show_for_all=a0ba463aca', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Varyana', true, '760432413&show_for_all=1aa7de2207', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Varyana', true, '760429526&show_for_all=a0de31192b', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Varyana', true, '760427045&show_for_all=1b98f7d773', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Varyana', true, '760424348&show_for_all=f7fa4f5568', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Varyana', true, '760421475&show_for_all=f6cf26c861', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Varyana', true, '760418054&show_for_all=d4f5798359', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Varyana', true, '760414593&show_for_all=34d4c63b29', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Varyana', true, '760411400&show_for_all=dbae7cb468', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Varyana', true, '760409039&show_for_all=3d75f8ff59', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Varyana', true, '760405483&show_for_all=f97dcf7dbc', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Varyana', true, '760237019&show_for_all=abae9f0d8c', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Varyana', false, '760235216&show_for_all=105b142c8c', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'Varyana', true, '760232031&show_for_all=b5a9f39b14', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 19, 'Varyana', true, '760230405&show_for_all=113df6b97d', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', true, '760226610&show_for_all=1aeb992508', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '760222780&show_for_all=c3c0f345c9', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '760218467&show_for_all=4fb96b9263', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '760215848&show_for_all=b8fd8b2395', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '760211834&show_for_all=6e64bba686', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '760209464&show_for_all=587ac8d44e', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'Varyana', false, '760200770&show_for_all=368631d93b', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'Varyana', true, '760194716&show_for_all=bf28a91342', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 19, 'Varyana', true, '760191746&show_for_all=7784ea0199', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 19, 'Varyana', true, '760189192&show_for_all=4af6734545', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 19, 'Varyana', true, '760172551&show_for_all=215eb9e0f0', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 19, 'Varyana', true, '760170185&show_for_all=9f92267657', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Varyana', true, '760037941&show_for_all=951d24ff7b', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', true, '760002727&show_for_all=134cc3d4e8', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', false, '759983912&show_for_all=8b3ca1af6c', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', false, '759970632&show_for_all=a1da605a10', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Varyana', true, '759966524&show_for_all=ac5d15b2c9', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Varyana', false, '759963165&show_for_all=3c8bc29187', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'Varyana', true, '759953617&show_for_all=9682197291', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Varyana', true, '759947664&show_for_all=8bb7886a91', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'Varyana', true, '759937581&show_for_all=e9565d9b7c', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'Varyana', true, '759858574&show_for_all=67a20bca52', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'Varyana', true, '759848047&show_for_all=fd539f8cbf', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'Varyana', true, '759842423&show_for_all=cd8ab370ac', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 18, 'Varyana', true, '759771724&show_for_all=a92a0d7b1c', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 18, 'Varyana', true, '759765275&show_for_all=7d40a520d1', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 18, 'Varyana', true, '759760180&show_for_all=3413ae3bec', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 18, 'Varyana', true, '759752144&show_for_all=9b6f4a79b7', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 18, 'Varyana', true, '759744876&show_for_all=1454097269', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 18, 'Varyana', true, '759728250&show_for_all=79c6e590b6', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 18, 'Varyana', true, '759725851&show_for_all=101114980b', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Varyana', true, '759720674&show_for_all=4451f6a477', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 18, 'Varyana', true, '759669523&show_for_all=7bfcf35902', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Varyana', true, '759661199&show_for_all=af9ccd93fa', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', true, '759651288&show_for_all=4cfe786502', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Varyana', true, '759646539&show_for_all=2cb1cef029', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'Varyana', true, '759640346&show_for_all=eeef02e421', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Varyana', true, '759635606&show_for_all=7969bddfa9', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Varyana', false, '759632560&show_for_all=fe66bd4b7b', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Varyana', false, '759626242&show_for_all=429bf52bf4', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'Varyana', true, '759604678&show_for_all=5b93d287ce', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'Varyana', true, '759597982&show_for_all=ef1b4f63fd', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'Varyana', true, '759593075&show_for_all=4506f2a953', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'Varyana', true, '759589022&show_for_all=6c4a8f8c7a', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'Varyana', true, '759557028&show_for_all=0b3c8780a0', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 18, 'Varyana', true, '759552863&show_for_all=9b84f60371', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 18, 'Varyana', true, '759549237&show_for_all=52de74fe2c', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 18, 'Varyana', true, '759402470&show_for_all=004f84abad', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 18, 'Varyana', false, '759397613&show_for_all=c62f584dca', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 18, 'Varyana', true, '759395620&show_for_all=59f334d163', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 18, 'Varyana', true, '759394206&show_for_all=36a3887015', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'Varyana', true, '759392176&show_for_all=263cd5b083', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'Varyana', true, '759387042&show_for_all=595f6ade02', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'Varyana', true, '759384703&show_for_all=f9daef91c1', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 18, 'Varyana', true, '759382996&show_for_all=ed5d123cb4', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'Varyana', true, '759376548&show_for_all=8d7c90a5d5', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', true, '759369501&show_for_all=3375e050b7', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', false, '759367404&show_for_all=583ba3020d', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'Varyana', false, '759360962&show_for_all=0bf086f84c', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'Varyana', true, '759358205&show_for_all=52cf25db4c', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'Varyana', true, '759355675&show_for_all=9ddbe84fa1', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'Varyana', true, '759349228&show_for_all=7e01a9007f', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'Varyana', true, '759341769&show_for_all=67ad0d535a', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'Varyana', true, '759334604&show_for_all=c62fa49a39', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'peln', true, '839392775&show_for_all=97dfd888c9', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'peln', true, '839386016&show_for_all=ffe4f61521', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'peln', true, '839384611&show_for_all=976bce137d', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'peln', true, '839382939&show_for_all=508713b2f2', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'peln', true, '839381787&show_for_all=a634dd67e7', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'peln', true, '839380219&show_for_all=604963dadf', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'peln', true, '839379129&show_for_all=9faa33e0fa', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'peln', true, '839207343&show_for_all=fc27f5feed', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'peln', false, '839204975&show_for_all=7c0035ed74', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'peln', false, '839199917&show_for_all=ff41add069', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'peln', true, '839197810&show_for_all=1fe547682d', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'peln', true, '839194970&show_for_all=d2e1ab37cf', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'peln', true, '839194154&show_for_all=74b3215f97', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'peln', true, '839191782&show_for_all=b7296e8cea', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'peln', true, '839189831&show_for_all=da258769f6', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 19, 'peln', true, '839188332&show_for_all=843ab1d4e6', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'peln', true, '839186188&show_for_all=064a773311', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 19, 'peln', true, '839185344&show_for_all=8c635fdc30', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'peln', true, '839184228&show_for_all=572fd567df', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'peln', true, '839181737&show_for_all=df31b6eaf9', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'peln', false, '839179058&show_for_all=e46a016329', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'peln', false, '839176830&show_for_all=6f8320f8dd', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 19, 'peln', true, '839175293&show_for_all=3bae90df9f', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 19, 'peln', true, '839174149&show_for_all=a3232b2635', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'peln', true, '839152355&show_for_all=9bc823f325', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'peln', false, '839151130&show_for_all=d2b0a1380b', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'peln', false, '839149965&show_for_all=1d9928e13c', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 19, 'peln', true, '839149296&show_for_all=41252047fd', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'peln', true, '839147615&show_for_all=b4059e40f4', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 19, 'peln', true, '839146540&show_for_all=5a8fec4ca5', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'peln', true, '839145229&show_for_all=4d24f7e9b5', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'peln', true, '839096299&show_for_all=ad8264905d', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'peln', true, '839095103&show_for_all=e19b2cc1f9', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'peln', true, '839094587&show_for_all=436bf38eb2', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'peln', true, '839094152&show_for_all=15d6530f99', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'peln', true, '839083255&show_for_all=9193fd4ff1', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'peln', true, '839079067&show_for_all=9098df6852', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'peln', true, '839077955&show_for_all=4c0909ca5e', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'peln', true, '839061969&show_for_all=a53c7bd2e1', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'peln', true, '839061660&show_for_all=1d825b3f96', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'peln', true, '839060959&show_for_all=652a619c4b', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'peln', true, '839054945&show_for_all=3fa2d34175', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'peln', false, '838946904&show_for_all=da11260fcf', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'peln', true, '838945895&show_for_all=7f111d9904', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'peln', false, '838944299&show_for_all=caefcb6cc5', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'peln', true, '838943265&show_for_all=d610e83f9c', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'peln', false, '838942056&show_for_all=3f9503445e', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'peln', true, '838940993&show_for_all=04ea0e2e85', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'peln', true, '838940186&show_for_all=f47861e349', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'peln', true, '838938577&show_for_all=13f1b196b7', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'peln', true, '838938325&show_for_all=11832f8e7a', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'peln', true, '838936759&show_for_all=e9fe13748f', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'peln', true, '838883000&show_for_all=588cc1f970', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'peln', true, '838881679&show_for_all=e146252791', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'peln', false, '838879733&show_for_all=34d68e280d', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'peln', true, '838879179&show_for_all=4f568c4d48', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'peln', true, '838878465&show_for_all=5b407e4617', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'peln', true, '838877693&show_for_all=5dfb54771c', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'peln', true, '838876180&show_for_all=f5d78bbd01', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'peln', true, '838874781&show_for_all=7c746edf59', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'peln', true, '838874088&show_for_all=455a9889bb', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'peln', true, '838873717&show_for_all=3241c84738', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'peln', false, '838871801&show_for_all=d0ca1529a4', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'peln', true, '838868786&show_for_all=428c619cbe', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'peln', true, '838867223&show_for_all=835bc10e25', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'peln', true, '838866114&show_for_all=c1bf6156fc', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'peln', true, '838865041&show_for_all=c89f44c886', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'peln', true, '838864205&show_for_all=ba73636db0', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'peln', true, '838863261&show_for_all=565f5fcd4f', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'peln', true, '838862533&show_for_all=5106670689', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'peln', true, '838861905&show_for_all=ddb5f3ffc3', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'peln', true, '838861225&show_for_all=c851c51ebc', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'peln', true, '838650598&show_for_all=77c3a722d2', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 19, 'peln', true, '838648607&show_for_all=3078878c42', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 19, 'peln', true, '838647879&show_for_all=47db7c4106', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 19, 'peln', true, '838647054&show_for_all=c22b39a112', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 19, 'peln', true, '838643632&show_for_all=e4bf554406', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 19, 'peln', true, '838641812&show_for_all=603dc234bc', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'peln', true, '838640025&show_for_all=3771c2c35e', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 19, 'peln', false, '838635919&show_for_all=0fa3008e78', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 19, 'peln', true, '838634975&show_for_all=be696c28a1', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 19, 'peln', true, '838634441&show_for_all=0c1ba4f15a', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 19, 'peln', true, '838633148&show_for_all=9342c5e8cb', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 19, 'peln', true, '838622691&show_for_all=29fc644d24', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'peln', true, '838616623&show_for_all=77c77adb13', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 19, 'peln', false, '838612215&show_for_all=f415f45c9b', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 19, 'peln', true, '838611373&show_for_all=95fea28510', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 19, 'peln', true, '838609270&show_for_all=132bb9cc45', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 19, 'peln', true, '838607018&show_for_all=1b0a122497', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 19, 'peln', true, '838604466&show_for_all=f7d701e92b', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 19, 'peln', true, '838602605&show_for_all=4a59adaac3', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 19, 'peln', true, '838601939&show_for_all=691563cfba', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'peln', true, '837244247&show_for_all=57deb78034', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'peln', true, '837239951&show_for_all=208e64fe4e', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'peln', true, '837237508&show_for_all=356d5e9f0f', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'peln', true, '837235158&show_for_all=9b86fb801e', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'peln', true, '837231447&show_for_all=bf7b2bef7f', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'peln', true, '837229149&show_for_all=5f33a5edb8', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'peln', true, '837226797&show_for_all=a39e4774fe', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'peln', true, '837225886&show_for_all=79680c55c8', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'peln', true, '837223490&show_for_all=51c316fbc9', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'peln', true, '837209131&show_for_all=7d1ad07e15', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'peln', true, '837205749&show_for_all=c2ed93a2bb', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'peln', false, '837201445&show_for_all=27a583b0dd', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'peln', true, '837198837&show_for_all=a4873b93f6', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'peln', true, '837196126&show_for_all=fc11c79ec5', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'peln', true, '837193738&show_for_all=df18517810', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'peln', true, '837192192&show_for_all=e6b0010c9a', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'peln', true, '837185040&show_for_all=28b7bbc91f', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'peln', false, '837178585&show_for_all=6b647b35fd', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'peln', true, '837175069&show_for_all=24344ea9d0', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'peln', true, '836915756&show_for_all=4d9bd1dac8', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 19, 'peln', true, '836914245&show_for_all=ba70377b14', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 19, 'peln', true, '836912785&show_for_all=e365170aed', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 19, 'peln', false, '836911534&show_for_all=1a57d7e676', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 19, 'peln', true, '836911020&show_for_all=4b15c63b43', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 19, 'peln', true, '836910086&show_for_all=80fc060f86', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 19, 'peln', true, '836909131&show_for_all=c51d837337', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 19, 'peln', true, '836907837&show_for_all=d7c9bba2d1', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 19, 'peln', true, '836899164&show_for_all=acb0e9c259', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 19, 'peln', true, '836898796&show_for_all=cdc9ebf74a', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 19, 'peln', true, '836898227&show_for_all=623dc746d0', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 19, 'peln', true, '836896925&show_for_all=3b29d10049', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 19, 'peln', true, '836895758&show_for_all=2b3a3b0115', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 19, 'peln', true, '836895032&show_for_all=223699a6df', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 19, 'peln', true, '836894442&show_for_all=143fe6a0fa', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 19, 'peln', true, '836868705&show_for_all=4ddc92b64b', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 19, 'peln', true, '836868488&show_for_all=084d5a10e1', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 19, 'peln', true, '836868231&show_for_all=b608eeb388', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 19, 'peln', true, '836867984&show_for_all=c595736f6e', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'peln', true, '836151359&show_for_all=8fbe413730', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'peln', true, '836149189&show_for_all=5c2aa6872f', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 19, 'peln', false, '836137507&show_for_all=ec7bfbc422', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 19, 'peln', true, '836136128&show_for_all=0ad2a972c0', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 19, 'peln', true, '836134455&show_for_all=8591fa774d', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 19, 'peln', true, '836132156&show_for_all=0cc8686ea0', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 19, 'peln', true, '836129659&show_for_all=b05eba731f', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'peln', true, '836108077&show_for_all=81c06e9e9a', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 19, 'peln', false, '836106622&show_for_all=a998ae2a28', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 19, 'peln', true, '836106029&show_for_all=c2ec190ec1', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 19, 'peln', true, '836105234&show_for_all=d6648dca6d', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 19, 'peln', true, '836103603&show_for_all=3d4de7a479', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 19, 'peln', true, '836101801&show_for_all=e07def71ed', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'peln', true, '836100702&show_for_all=e5b314845e', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 19, 'peln', false, '836099095&show_for_all=55559b3a7d', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 19, 'peln', true, '836094453&show_for_all=29c2ddec46', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 19, 'peln', false, '836092061&show_for_all=02a510fde5', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 19, 'peln', true, '836090883&show_for_all=349d54d805', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 19, 'peln', true, '836089117&show_for_all=b3cf6d44e5', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 19, 'peln', true, '836085259&show_for_all=4cab65a4ff', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 19, 'peln', true, '836083405&show_for_all=f6055e3cf7', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 19, 'peln', true, '836082058&show_for_all=cd594a127e', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'peln', true, '836060989&show_for_all=a7f717ae03', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 19, 'peln', true, '836059275&show_for_all=a31b3d7c21', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 19, 'peln', true, '836057927&show_for_all=4af4bdb76d', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 19, 'peln', true, '836056148&show_for_all=a448dbd24e', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 19, 'peln', true, '836051630&show_for_all=cc838b6322', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 19, 'peln', true, '836048051&show_for_all=6149c047d8', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 19, 'peln', true, '836046014&show_for_all=ad299a34b4', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 19, 'peln', true, '836045433&show_for_all=518326d948', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 19, 'peln', true, '836044077&show_for_all=930eb73468', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 19, 'peln', false, '836040535&show_for_all=a66d558867', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 19, 'peln', true, '836027778&show_for_all=89f3546013', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 19, 'peln', true, '836012071&show_for_all=684edae2e1', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 19, 'peln', true, '836010882&show_for_all=abce38b8ce', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 19, 'peln', true, '836009784&show_for_all=5d66b09319', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 19, 'peln', true, '836002617&show_for_all=4812b913b1', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 19, 'peln', true, '835999469&show_for_all=3aae7b20d2', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 19, 'peln', true, '835997250&show_for_all=3890d2f4ec', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 19, 'peln', true, '835996028&show_for_all=8689accd3d', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'peln', true, '782107490&show_for_all=a3d8b879a6', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'peln', false, '782102732&show_for_all=40b67652c5', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 18, 'peln', true, '782101293&show_for_all=897a6eb91f', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'peln', true, '782100598&show_for_all=dfdb6f6271', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'peln', false, '782096783&show_for_all=8a792cb6bd', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'peln', true, '782094051&show_for_all=de24cc8687', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'peln', true, '782090411&show_for_all=ac7036c1e1', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'peln', true, '782040837&show_for_all=0a2677a6ab', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 18, 'peln', true, '782013557&show_for_all=09449a70e8', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 18, 'peln', true, '782012277&show_for_all=5cfa1a9f0f', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'peln', true, '781998905&show_for_all=95cab4988f', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'peln', true, '781992463&show_for_all=48abb49078', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'peln', false, '781988052&show_for_all=4d1e330db3', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 18, 'peln', true, '781982044&show_for_all=811d5aae9f', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'peln', true, '781960910&show_for_all=c76add9cfc', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'peln', true, '781942932&show_for_all=57f8e673f8', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'peln', true, '781937462&show_for_all=7f2ad66067', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'peln', true, '781876338&show_for_all=a2ef493757', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'peln', false, '781873831&show_for_all=9ebbb770cb', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'peln', true, '781680624&show_for_all=29ab118cbf', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'peln', true, '781674875&show_for_all=c39f5e6804', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'peln', false, '781671943&show_for_all=eefadd4e15', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'peln', true, '781671167&show_for_all=3c068823d5', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'peln', true, '762839573&show_for_all=aa36d9cde2', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 17, 'peln', true, '762837654&show_for_all=271daf1e48', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 17, 'peln', true, '762835943&show_for_all=c13fc51812', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 17, 'peln', true, '762834232&show_for_all=a43feeabf4', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 17, 'peln', true, '762832172&show_for_all=5fa67eda16', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'peln', true, '762830488&show_for_all=38f70d450e', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'peln', false, '762824673&show_for_all=ef61201826', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 17, 'peln', true, '762823846&show_for_all=e9f7f68200', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 17, 'peln', true, '762822178&show_for_all=21b9d1d11f', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 17, 'peln', true, '762821015&show_for_all=3f6d276360', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'peln', true, '762819897&show_for_all=b1610fffe1', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 17, 'peln', true, '762818948&show_for_all=283a4ae0b2', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 17, 'peln', true, '762816739&show_for_all=9c0e027739', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'peln', true, '762813823&show_for_all=5440c4b69d', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'peln', true, '762812763&show_for_all=8c387dc598', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 17, 'peln', true, '762811815&show_for_all=1de44dac10', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 17, 'peln', true, '762809087&show_for_all=f6c8fdc85c', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 17, 'peln', true, '762807028&show_for_all=4d038511a4', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 17, 'peln', true, '762805380&show_for_all=658003f196', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 18, 'BangFire', true, '792386205&show_for_all=d5b1d60f99', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 18, 'BangFire', true, '792391090&show_for_all=ea30f8c448', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 18, 'BangFire', true, '792393614&show_for_all=5e0f2e8ce2', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 18, 'BangFire', true, '792397572&show_for_all=442f089d48', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 18, 'BangFire', true, '792479619&show_for_all=e9a4c9694e', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 18, 'BangFire', true, '792481325&show_for_all=ec769e4990', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 18, 'BangFire', true, '792482915&show_for_all=621aaf287d', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 18, 'BangFire', true, '792484823&show_for_all=dac3753ed3', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 18, 'BangFire', true, '792488348&show_for_all=7fcb4dcd4d', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 18, 'BangFire', true, '792496399&show_for_all=70cd715bbe', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 18, 'BangFire', true, '792499182&show_for_all=589bfa406a', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 18, 'BangFire', true, '792501777&show_for_all=52b8b68ce1', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 18, 'BangFire', true, '792503379&show_for_all=35e6bd29e3', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 18, 'BangFire', true, '792509864&show_for_all=6b5c9e8bf9', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 18, 'BangFire', true, '792516262&show_for_all=640e10bfa4', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 18, 'BangFire', true, '792520304&show_for_all=0bca63dcb5', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 18, 'BangFire', true, '792522154&show_for_all=2f74930530', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 18, 'BangFire', true, '792525283&show_for_all=989a96d6a4', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 18, 'BangFire', true, '792062184&show_for_all=5991fbfe90', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 18, 'BangFire', true, '792063936&show_for_all=1a5b00839c', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 18, 'BangFire', true, '792064903&show_for_all=3d28afe310', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 18, 'BangFire', true, '792066996&show_for_all=34bbf931e9', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 18, 'BangFire', true, '792069701&show_for_all=8d0e6abd8e', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 18, 'BangFire', true, '792071242&show_for_all=21a76edb28', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 18, 'BangFire', true, '792072492&show_for_all=d5cc5de20c', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 18, 'BangFire', true, '792076719&show_for_all=96fdf65ef5', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 18, 'BangFire', true, '792082462&show_for_all=f519fd3609', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 18, 'BangFire', true, '792084035&show_for_all=e566902004', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 18, 'BangFire', true, '792085532&show_for_all=5d3bccea18', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 18, 'BangFire', true, '792087321&show_for_all=94f9905671', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 18, 'BangFire', true, '792091355&show_for_all=13c58b7b70', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 18, 'BangFire', true, '792108988&show_for_all=d4547ced9d', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 18, 'BangFire', true, '792115598&show_for_all=8870f1eb7a', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 18, 'BangFire', true, '792117435&show_for_all=9ec3c0b41e ', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 18, 'BangFire', true, '792177259&show_for_all=fd3ed3f6b7', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 18, 'BangFire', true, '792179230&show_for_all=0a5cd95e00', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 18, 'BangFire', true, '788525450&show_for_all=80d372ed7c', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 18, 'BangFire', true, '788527854&show_for_all=4412725b82', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 18, 'BangFire', true, '788530553&show_for_all=7e029b3e9a', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 18, 'BangFire', true, '788533330&show_for_all=2014956d3e', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 18, 'BangFire', true, '788536484&show_for_all=aaddc80cf0', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 18, 'BangFire', true, '788546531&show_for_all=44e71a8d7a', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 18, 'BangFire', true, '788547444&show_for_all=1f2e00c5f8', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 18, 'BangFire', true, '788549407&show_for_all=f028e6c3d5', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 18, 'BangFire', true, '788551282&show_for_all=62b0ff60f8', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 18, 'BangFire', true, '788552925&show_for_all=027d323d08', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 18, 'BangFire', true, '788555722&show_for_all=899d33215c', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 18, 'BangFire', true, '788558005&show_for_all=a4238e2905', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 18, 'BangFire', true, '788567030&show_for_all=6e90219ccb', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 18, 'BangFire', true, '788568656&show_for_all=9f5c78c9c8', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 18, 'BangFire', true, '788572691&show_for_all=189dc9c28c', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 18, 'BangFire', true, '788578427&show_for_all=51a3d6f225', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 18, 'BangFire', true, '788689970&show_for_all=2a67786d69', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 18, 'BangFire', true, '788728925&show_for_all=4b93b02e66', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 18, 'BangFire', true, '788765049&show_for_all=b643c15084', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 18, 'BangFire', true, '788774691&show_for_all=8442155a9c', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 18, 'BangFire', true, '788780270&show_for_all=34788a2008', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 18, 'BangFire', true, '788791138&show_for_all=a87fba97ec', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 18, 'BangFire', true, '788797671&show_for_all=c0f55a250e', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 18, 'BangFire', true, '789057849&show_for_all=c9e8e76817', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 18, 'BangFire', true, '789060208&show_for_all=0e5c2b8c69', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 18, 'BangFire', true, '789067806&show_for_all=cef011b2e4', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 18, 'BangFire', true, '789079788&show_for_all=977f41cd2b', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 1, 18, 'BangFire', true, '789084952&show_for_all=2524847c25', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 18, 'BangFire', true, '789090252&show_for_all=ee17fc1c95', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 18, 'BangFire', true, '789097811&show_for_all=3dd44e612f', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 18, 'BangFire', true, '789103474&show_for_all=85c1523cd5', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 18, 'BangFire', true, '789113198&show_for_all=bf35ebb65e', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 18, 'BangFire', true, '789120597&show_for_all=9582f7b188', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 18, 'BangFire', true, '789203334&show_for_all=f90f0e722d', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 18, 'BangFire', true, '789211438&show_for_all=f82d60b205', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 18, 'BangFire', true, '789225157&show_for_all=1b19a64d3f', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 18, 'BangFire', true, '779525978&show_for_all=3068470fad', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 18, 'BangFire', true, '779529628&show_for_all=6577a373a4', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 18, 'BangFire', true, '779600836&show_for_all=c0f7766177', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 18, 'BangFire', true, '779603610&show_for_all=6531693d4c', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 18, 'BangFire', true, '779607925&show_for_all=92d22411d8', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 18, 'BangFire', true, '779513707&show_for_all=383574814a', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 18, 'BangFire', true, '779613820&show_for_all=1d304df81f', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 18, 'BangFire', true, '779615032&show_for_all=b1dbe230e8', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 18, 'BangFire', true, '779616455&show_for_all=ecee40ea3c', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 18, 'BangFire', true, '779618110&show_for_all=d946d5ea14', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 18, 'BangFire', true, '779619715&show_for_all=55bfce61ef', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 18, 'BangFire', true, '779621253&show_for_all=00a5388b20', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 18, 'BangFire', true, '779623330&show_for_all=e1eddc6497', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 18, 'BangFire', true, '779624415&show_for_all=5b264e0e3a', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 18, 'BangFire', true, '779626308&show_for_all=dd09f40c36', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 18, 'BangFire', true, '779627438&show_for_all=162447d949', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 18, 'BangFire', true, '779633976&show_for_all=15b07a432f', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 18, 'BangFire', true, '779637865&show_for_all=6daaeb32cb', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 18, 'BangFire', true, '779867805&show_for_all=f771f01943', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 18, 'BangFire', true, '779869600&show_for_all=795a092830', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 18, 'BangFire', true, '779944309&show_for_all=5988874ba6', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 18, 'BangFire', true, '779946202&show_for_all=ca00a90084', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 18, 'BangFire', true, '779948561&show_for_all=dd1defe6de', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 18, 'BangFire', true, '779950175&show_for_all=adc77a787b', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 18, 'BangFire', true, '779951079&show_for_all=f6a20468f2', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 18, 'BangFire', true, '779954823&show_for_all=db17f743af', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 18, 'BangFire', true, '779956193&show_for_all=c9f9c6e041', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 18, 'BangFire', true, '779958975&show_for_all=ece1a1b29b', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 18, 'BangFire', true, '779959916&show_for_all=e1a1588a83', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 18, 'BangFire', true, '779960764&show_for_all=b1072991bd', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 18, 'BangFire', true, '779963471&show_for_all=01cc649962', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 18, 'BangFire', true, '779966538&show_for_all=f771f97924', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 18, 'BangFire', true, '779967198&show_for_all=a68fb19e93', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 18, 'BangFire', true, '779967836&show_for_all=2759cc5625', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'BangFire', true, '779968972&show_for_all=9a27b678fd', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 18, 'BangFire', true, '782858057&show_for_all=9fa205d675', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 18, 'BangFire', true, '782859517&show_for_all=8e965caf5f', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 18, 'BangFire', true, '782861016&show_for_all=49591b967b', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 18, 'BangFire', true, '782864073&show_for_all=93180b332b', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 18, 'BangFire', true, '782868591&show_for_all=10e24ab0e7', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 18, 'BangFire', true, '782870542&show_for_all=69de014c4d', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 18, 'BangFire', true, '782871897&show_for_all=8d3508cac2', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 18, 'BangFire', true, '782879039&show_for_all=2d3012467e', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 18, 'BangFire', true, '782921428&show_for_all=8a5549a623', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 18, 'BangFire', true, '782923302&show_for_all=7ed96a45d9', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 18, 'BangFire', true, '782933583&show_for_all=e9ad709c3d', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 18, 'BangFire', true, '782957189&show_for_all=bf95edd4b3', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 18, 'BangFire', true, '782958858&show_for_all=c3428025b5', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 18, 'BangFire', true, '783000106&show_for_all=e76e19af92', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 18, 'BangFire', true, '783001403&show_for_all=bba798af7f', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 18, 'BangFire', true, '783003671&show_for_all=25ef6dd744', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 18, 'BangFire', true, '783002398&show_for_all=19d4f11dfc', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'BangFire', true, '783007584&show_for_all=5884dba7c8', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 18, 'BangFire', true, '782738929&show_for_all=2a0245e5d9', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 18, 'BangFire', true, '782740174&show_for_all=2bcbbdf049', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 18, 'BangFire', true, '782741576&show_for_all=c6143363fb', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 18, 'BangFire', true, '782743447&show_for_all=60a2a7dfc0', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 18, 'BangFire', true, '782747151&show_for_all=d9262aba8b', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 18, 'BangFire', true, '782751635&show_for_all=11328a9d0d', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 18, 'BangFire', true, '782782857&show_for_all=e0a03c2f3a', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 18, 'BangFire', true, '782784934&show_for_all=1e74196e56', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 18, 'BangFire', true, '782786593&show_for_all=d4d24ee4a2', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 18, 'BangFire', true, '782788707&show_for_all=e5303711ed', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 18, 'BangFire', true, '782790760&show_for_all=c12e0da61f', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 18, 'BangFire', true, '782792628&show_for_all=38ed1c10af', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 18, 'BangFire', true, '782795455&show_for_all=90d3267b09', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 18, 'BangFire', true, '782796013&show_for_all=d1c181b1ae', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 18, 'BangFire', true, '782797146&show_for_all=c8e4ec5cc0', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 18, 'BangFire', true, '782799024&show_for_all=26e9a076c5', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 18, 'BangFire', true, '782835084&show_for_all=7867d5a52c', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'BangFire', true, '782837592&show_for_all=59703cf81c', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 18, 'BangFire', true, '776871498&show_for_all=a8f20fae4a', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 18, 'BangFire', true, '776872045&show_for_all=e395ae279a', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 18, 'BangFire', true, '776872729&show_for_all=da2bf39680', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 18, 'BangFire', true, '776874212&show_for_all=c9fffb0a45', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 18, 'BangFire', true, '776874785&show_for_all=05a90ac719', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 18, 'BangFire', true, '776875215&show_for_all=21c025bdcf', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 18, 'BangFire', true, '776876192&show_for_all=1327ec2a14', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 18, 'BangFire', true, '776882898&show_for_all=5cfa93b9ce', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 18, 'BangFire', true, '776886979&show_for_all=5c94e4dd04', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 18, 'BangFire', true, '776887730&show_for_all=0415ea7787', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 18, 'BangFire', true, '776888465&show_for_all=31ede7a09f', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 18, 'BangFire', true, '776888849&show_for_all=b729e60b93', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 18, 'BangFire', true, '776889682&show_for_all=43cf296adc', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 18, 'BangFire', true, '776891128&show_for_all=ccc0dbba7e', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 18, 'BangFire', true, '776926449&show_for_all=94736fe9c5', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 18, 'BangFire', true, '776927221&show_for_all=8ef5a36c1e', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 18, 'BangFire', true, '776934101&show_for_all=e88e6912c2', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'BangFire', true, '776935031&show_for_all=2862727bea', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 18, 'BangFire', true, '819272562&show_for_all=4be6dd10e5', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 18, 'BangFire', true, '819274704&show_for_all=81e39d6f40', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 18, 'BangFire', true, '819276215&show_for_all=4f68e475e5', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 18, 'BangFire', true, '819277445&show_for_all=f3055ec18f', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 18, 'BangFire', true, '819279003&show_for_all=d5d253ed87', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 18, 'BangFire', true, '819282662&show_for_all=e316c75ca6', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 18, 'BangFire', true, '819283474&show_for_all=730e109c89', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 18, 'BangFire', true, '819285777&show_for_all=86203a9472', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 18, 'BangFire', true, '819287466&show_for_all=629aec671a', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 18, 'BangFire', true, '819288978&show_for_all=044fcc4239', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 18, 'BangFire', true, '819290612&show_for_all=d408e645da', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 18, 'BangFire', true, '819292272&show_for_all=911da471d0', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 18, 'BangFire', true, '819293228&show_for_all=6707f46383', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 18, 'BangFire', true, '819294457&show_for_all=b5593fa8aa', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 18, 'BangFire', true, '819295456&show_for_all=48d6187365', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 18, 'BangFire', true, '819296764&show_for_all=26f0c19d34', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 18, 'BangFire', true, '819297661&show_for_all=d93b9c37a3', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'BangFire', true, '819299139&show_for_all=365566f35a', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 18, 'BangFire', true, '819313823&show_for_all=90378d0703', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 18, 'BangFire', true, '819316051&show_for_all=0db3c68b04', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 18, 'BangFire', true, '819319895&show_for_all=d159817f11', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 18, 'BangFire', true, '819323125&show_for_all=f408e6e061', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 18, 'BangFire', true, '819332378&show_for_all=00e440f2d4', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 18, 'BangFire', true, '819334880&show_for_all=e2429f9fc7', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 18, 'BangFire', true, '819337321&show_for_all=2127cd9721', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 18, 'BangFire', true, '819340352&show_for_all=57eff542eb', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 18, 'BangFire', true, '819343251&show_for_all=147772f66a', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 18, 'BangFire', true, '819346664&show_for_all=4c525a3a05', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 18, 'BangFire', true, '819348881&show_for_all=de8c15f2b8', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 18, 'BangFire', true, '819440712&show_for_all=ffd06989d7', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 18, 'BangFire', true, '819441932&show_for_all=1790054b77', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 18, 'BangFire', true, '819444485&show_for_all=29f8afb058', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 18, 'BangFire', true, '819447094&show_for_all=d701f65cea', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 18, 'BangFire', true, '819448645&show_for_all=19e82677fd', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 18, 'BangFire', true, '819449995&show_for_all=a921b0eda7', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'BangFire', true, '819452309&show_for_all=cf4c555ae3', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 18, 'BangFire', true, '787367758&show_for_all=9eaa9caec3', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 18, 'BangFire', true, '787370264&show_for_all=ce1264746f', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 18, 'BangFire', true, '787372656&show_for_all=a60b855031', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 18, 'BangFire', true, '787373983&show_for_all=cf3eea0b23', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 18, 'BangFire', true, '787376035&show_for_all=4a12e76553', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 18, 'BangFire', true, '787377483&show_for_all=37b252f492', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 18, 'BangFire', true, '787378135&show_for_all=bcb32e892e', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 18, 'BangFire', true, '787379078&show_for_all=11a99799f7', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 18, 'BangFire', true, '787380587&show_for_all=5c452c7cf0', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 18, 'BangFire', true, '787381948&show_for_all=1e6d751d3f', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 18, 'BangFire', true, '787382928&show_for_all=161d89abc0', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 18, 'BangFire', true, '787384092&show_for_all=97b7c78158', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 18, 'BangFire', true, '787385325&show_for_all=3427d299ca', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 18, 'BangFire', true, '787387253&show_for_all=9bc24d1f22', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 18, 'BangFire', true, '787390227&show_for_all=3014053eeb', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 18, 'BangFire', true, '787391789&show_for_all=90de04df43', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 18, 'BangFire', true, '787394747&show_for_all=c49fe39b08', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'BangFire', true, '787396694&show_for_all=a9a3a14f68', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 18, 'BangFire', true, '785222198&show_for_all=504d077a6c', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 18, 'BangFire', true, '785235716&show_for_all=c2f6f38a2c', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 18, 'BangFire', true, '785237795&show_for_all=b84fdfa6ea', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 18, 'BangFire', true, '785240043&show_for_all=1c91540ac2', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 18, 'BangFire', true, '785242495&show_for_all=bd4f892239', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 18, 'BangFire', true, '785243607&show_for_all=e3810a5932', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 18, 'BangFire', true, '785246212&show_for_all=b955b538ae', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 18, 'BangFire', true, '785248707&show_for_all=12b6f4fd34', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 18, 'BangFire', true, '785250625&show_for_all=4359b79673', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 18, 'BangFire', true, '785252718&show_for_all=058e8df7d2', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 18, 'BangFire', true, '785254209&show_for_all=4b0a50a78e', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 18, 'BangFire', true, '785256136&show_for_all=dc7286e266', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 18, 'BangFire', true, '785257708&show_for_all=82f555e1d4', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 18, 'BangFire', true, '785262806&show_for_all=4ce727a124', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 18, 'BangFire', true, '785264253&show_for_all=6de17fef2b', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 18, 'BangFire', true, '785265821&show_for_all=c1e08f18ee', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 18, 'BangFire', true, '785268120&show_for_all=c84e694f54', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 18, 'BangFire', true, '785270729&show_for_all=5e6fb1200b', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 18, 'BangFire', true, '784886546&show_for_all=f32232ad0f', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 18, 'BangFire', true, '784890402&show_for_all=6e960a88b1', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 18, 'BangFire', true, '784892600&show_for_all=084a1c1750', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 18, 'BangFire', true, '784894910&show_for_all=ad8ff0a75f', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 18, 'BangFire', true, '784896508&show_for_all=1eee100ac1', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 18, 'BangFire', true, '784897643&show_for_all=20c1493ec1', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 18, 'BangFire', true, '784898254&show_for_all=3db50a0aec', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 18, 'BangFire', true, '784900306&show_for_all=c5416d15cc', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 18, 'BangFire', true, '784902308&show_for_all=767318a14b', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 18, 'BangFire', true, '784904287&show_for_all=17f2b2a163', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 18, 'BangFire', true, '784905681&show_for_all=3acf267e62', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 18, 'BangFire', true, '784910031&show_for_all=1a9c7a8cbd', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 18, 'BangFire', true, '784911290&show_for_all=74bd1f6e49', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 18, 'BangFire', true, '784913470&show_for_all=403b2341fd', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 18, 'BangFire', true, '784917940&show_for_all=f6af66899b', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 18, 'BangFire', true, '784918724&show_for_all=9198937cc6', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 18, 'BangFire', true, '784919686&show_for_all=54af8e4ac1', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 18, 'BangFire', true, '784922146&show_for_all=83246fad1f', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 18, 'BangFire', true, '812042386&show_for_all=5532487def', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 18, 'BangFire', true, '812043432&show_for_all=fb4b7c427f', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 18, 'BangFire', true, '812047080&show_for_all=7ea6ae824d', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 18, 'BangFire', true, '812049266&show_for_all=b5d0f7f059', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 18, 'BangFire', true, '812051340&show_for_all=74a337cfe3', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 18, 'BangFire', true, '812052903&show_for_all=67b3051358', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 18, 'BangFire', true, '812053838&show_for_all=d3279f0ce7', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 18, 'BangFire', true, '812056787&show_for_all=534a4d44ec', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 18, 'BangFire', true, '812059200&show_for_all=d6dbb5e112', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 18, 'BangFire', true, '812060803&show_for_all=378654dc1f', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 18, 'BangFire', true, '812062092&show_for_all=1c9797ea82', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 18, 'BangFire', true, '812066524&show_for_all=bbe57bff6e', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 18, 'BangFire', true, '812067815&show_for_all=f1f328779c', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 18, 'BangFire', true, '812069495&show_for_all=01f20699be', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 18, 'BangFire', true, '812070867&show_for_all=718df71671', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 18, 'BangFire', true, '812072377&show_for_all=dce52c7494', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 18, 'BangFire', true, '812073624&show_for_all=913c35d413', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'BangFire', true, '812075627&show_for_all=6f0c52c192', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 18, 'BangFire', true, '780950862&show_for_all=f3c5a17e2f', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 18, 'BangFire', true, '780952988&show_for_all=ccb5ea4701', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 18, 'BangFire', true, '780957482&show_for_all=734cfdd3b7', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 18, 'BangFire', true, '780959419&show_for_all=8ff4306a77', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 18, 'BangFire', true, '780963293&show_for_all=b9daf68560', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 18, 'BangFire', true, '780965002&show_for_all=5e2ab3492a', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 18, 'BangFire', true, '780966415&show_for_all=ab71848293', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 18, 'BangFire', true, '780971451&show_for_all=cbb1e677af', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 18, 'BangFire', true, '780974696&show_for_all=4067301dea', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 18, 'BangFire', true, '780976667&show_for_all=b774f59f00', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 18, 'BangFire', true, '780978660&show_for_all=11f4a4ed6f', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 18, 'BangFire', true, '780979982&show_for_all=86158ccb63', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 18, 'BangFire', true, '780986557&show_for_all=0e4ddc1c00', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 18, 'BangFire', true, '780987964&show_for_all=f840196ed1', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 18, 'BangFire', true, '780991685&show_for_all=3a2dee7257', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 18, 'BangFire', true, '780993293&show_for_all=42cfc1e5be', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 18, 'BangFire', true, '780996016&show_for_all=c6de05be48', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'BangFire', true, '780997862&show_for_all=b2e472c16a', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 18, 'BangFire', true, '787629746&show_for_all=3bf5a5b2d9', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 18, 'BangFire', true, '787630965&show_for_all=cf117bfa8f', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 18, 'BangFire', true, '787633262&show_for_all=f1a7ab0ef5', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 18, 'BangFire', true, '787634491&show_for_all=5526bd9c60', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 18, 'BangFire', true, '787636143&show_for_all=ef6c3b060f', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 18, 'BangFire', true, '787637255&show_for_all=f4701e8286', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 18, 'BangFire', true, '787641167&show_for_all=d83a9d078f', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 18, 'BangFire', true, '787642625&show_for_all=efa2c869e3', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 18, 'BangFire', true, '787646089&show_for_all=9a0ab3ab58', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 18, 'BangFire', true, '787648259&show_for_all=0911a366d3', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 18, 'BangFire', true, '787650603&show_for_all=9c5f113656', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 18, 'BangFire', true, '787653687&show_for_all=3702288a43', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 18, 'BangFire', true, '787655038&show_for_all=164082ff31', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 18, 'BangFire', true, '787662463&show_for_all=0e7970a05c', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 18, 'BangFire', true, '787665904&show_for_all=8c5cf61a44', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 18, 'BangFire', true, '787667379&show_for_all=55caa19dc7', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 18, 'BangFire', true, '787668862&show_for_all=32c6e9e0c0', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Balmung', true, '794787623&show_for_all=2dc173c3e8', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 19, 'Balmung', true, '794786608&show_for_all=01b0e88e99', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 19, 'Balmung', true, '794785928&show_for_all=ce2c2627f6', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 19, 'Balmung', true, '794785202&show_for_all=8b9b93ed7a', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 19, 'Balmung', true, '794784396&show_for_all=51257f4aaa', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 19, 'Balmung', true, '794783757&show_for_all=289298fb9d', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 19, 'Balmung', true, '794783326&show_for_all=d725028c04', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 19, 'Balmung', true, '794782506&show_for_all=46bfcf535b', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 19, 'Balmung', true, '794781931&show_for_all=8302404230', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 19, 'Balmung', false, '794781180&show_for_all=14710fcab1', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 19, 'Balmung', true, '794780532&show_for_all=aea19bc3b9', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 19, 'Balmung', true, '794779543&show_for_all=3378c78c02', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 19, 'Balmung', true, '794778704&show_for_all=330eeeb97a', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 19, 'Balmung', true, '794778286&show_for_all=c84102b628', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 19, 'Balmung', true, '794777644&show_for_all=d1e5ffd24c', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 19, 'Balmung', true, '794776992&show_for_all=db967b0e3e', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 19, 'Balmung', false, '794774503&show_for_all=55c57322ae', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 19, 'Balmung', true, '794773516&show_for_all=d52cfc9ffd', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 19, 'Balmung', true, '794772532&show_for_all=18ef1871c0', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 19, 'Balmung', true, '794769044&show_for_all=99d7ca1620', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 19, 'Balmung', false, '794768012&show_for_all=453f582287', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Balmung', true, '783357344&show_for_all=5c4c00e842', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Balmung', true, '783356477&show_for_all=f6fdfe1d77', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Balmung', true, '783356163&show_for_all=6d0d53c12d', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Balmung', true, '783355655&show_for_all=edfa3c31d3', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Balmung', false, '783354965&show_for_all=2516b07320', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 19, 'Balmung', true, '783354566&show_for_all=ba340481d4', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Balmung', true, '783354070&show_for_all=03ef337033', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Balmung', true, '783353423&show_for_all=e887b1d5a0', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Balmung', true, '783352988&show_for_all=fcb5ffd7db', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Balmung', true, '783352787&show_for_all=b582bcd60b', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Balmung', true, '783352530&show_for_all=3c2d7a5bef', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Balmung', true, '783351697&show_for_all=a9f2a019b6', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Balmung', true, '783351237&show_for_all=bfb65a7050', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Balmung', false, '783351042&show_for_all=a692ad73f1', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Balmung', true, '783350454&show_for_all=27e43e596a', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Balmung', true, '783350199&show_for_all=48cbae4c1a', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Balmung', false, '783349702&show_for_all=89f0540336', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Balmung', true, '783349399&show_for_all=a91a7349f4', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Balmung', false, '783349062&show_for_all=78398baaf5', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Balmung', true, '783348794&show_for_all=b398baef0b', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Balmung', true, '783348551&show_for_all=912284f442', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Balmung', true, '783348153&show_for_all=e8ff57f26f', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Balmung', true, '783300290&show_for_all=e8d0cff150', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 19, 'Balmung', true, '783300091&show_for_all=a5d7a854d7', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 19, 'Balmung', true, '783299984&show_for_all=2be4c4cf4e', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Balmung', true, '783299814&show_for_all=66528785bf', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 19, 'Balmung', false, '783299647&show_for_all=1717df45a8', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Balmung', true, '783299344&show_for_all=4e48555c3c', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 19, 'Balmung', false, '783299209&show_for_all=bafedf38b6', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 19, 'Balmung', true, '783299046&show_for_all=67b3039532', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 19, 'Balmung', true, '783298805&show_for_all=f1595914aa', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 19, 'Balmung', true, '783298582&show_for_all=1b6222493d', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Balmung', true, '783298421&show_for_all=084be182cc', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 19, 'Balmung', false, '783298155&show_for_all=add4a47637', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 19, 'Balmung', true, '783297740&show_for_all=ffdd833929', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 19, 'Balmung', true, '783297224&show_for_all=161d421ffc', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 19, 'Balmung', true, '783296984&show_for_all=4d112064f1', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 19, 'Balmung', true, '783296809&show_for_all=9f23028579', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Balmung', true, '783296605&show_for_all=3fc6907cd5', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 19, 'Balmung', false, '783296404&show_for_all=b19c83a225', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 19, 'Balmung', true, '783296073&show_for_all=dc1717e858', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Balmung', true, '783295926&show_for_all=5dc1f9e8db', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Balmung', false, '783295745&show_for_all=310a780d54', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Balmung', false, '783295494&show_for_all=b8704915cb', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 19, 'Balmung', false, '783295287&show_for_all=ff312058b3', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 19, 'Balmung', true, '783295073&show_for_all=0158f60ea1', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 19, 'Balmung', true, '783294957&show_for_all=5c7b751a20', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Balmung', true, '783293139&show_for_all=e3de6ccb38', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Balmung', false, '783292518&show_for_all=2b09805a32', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Balmung', false, '783292063&show_for_all=3bfbf4f55e', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 19, 'Balmung', true, '783291622&show_for_all=b5e07adf9b', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 19, 'Balmung', true, '783291404&show_for_all=e078275c12', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 19, 'Balmung', true, '783291048&show_for_all=e3da0224f7', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Balmung', true, '783290465&show_for_all=034be417d2', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Balmung', false, '783290032&show_for_all=32676bbd10', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 19, 'Balmung', false, '783289668&show_for_all=f3149f8f70', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 19, 'Balmung', true, '783288938&show_for_all=f1b5fd2615', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 19, 'Balmung', true, '783288441&show_for_all=95252786e4', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Balmung', true, '783287664&show_for_all=18b3133301', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 19, 'Balmung', false, '783286937&show_for_all=603d139db5', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 19, 'Balmung', true, '783286458&show_for_all=097ebeebf2', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 19, 'Balmung', true, '783285850&show_for_all=e31dfcf093', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 19, 'Balmung', true, '783284158&show_for_all=4ba77bd44c', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 19, 'Balmung', true, '783282879&show_for_all=8663cf6c17', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 19, 'Balmung', true, '783281722&show_for_all=06ae0c3765', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Balmung', true, '783281051&show_for_all=60e68d5baa', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Balmung', false, '783280291&show_for_all=773c4f66d6', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 19, 'Balmung', false, '783279610&show_for_all=db2ac76228', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 19, 'Balmung', true, '783278118&show_for_all=a3ea263a78', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 19, 'Balmung', true, '783277213&show_for_all=209fe4c3a5', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 19, 'Balmung', true, '783276518&show_for_all=bd0ebad480', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 19, 'Balmung', true, '783275482&show_for_all=0deaf60390', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Balmung', true, '783273194&show_for_all=ded5b5ce95', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 19, 'Balmung', true, '783272660&show_for_all=e884148a48', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 19, 'Balmung', true, '783272429&show_for_all=3d39ca960f', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 19, 'Balmung', true, '783269263&show_for_all=714c9abf34', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Balmung', true, '783268605&show_for_all=d1afa69c2b', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 19, 'Balmung', false, '783268148&show_for_all=f3872187e4', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Balmung', true, '783267767&show_for_all=d88e2ff15c', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 19, 'Balmung', false, '783264901&show_for_all=99e0785414', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 19, 'Balmung', true, '783264373&show_for_all=3501f83493', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 19, 'Balmung', true, '783259979&show_for_all=359248a0b5', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 19, 'Balmung', true, '783259721&show_for_all=2315e64b5f', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 19, 'Balmung', true, '783259335&show_for_all=9d0a165244', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Balmung', true, '783255326&show_for_all=73de79e4cb', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 19, 'Balmung', false, '783254546&show_for_all=e9bca6a398', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 19, 'Balmung', true, '783253786&show_for_all=79b8757733', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 19, 'Balmung', true, '783250477&show_for_all=368ef24667', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Balmung', true, '783249770&show_for_all=ebc826ab5f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Balmung', false, '783231785&show_for_all=9a1daa30bb', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Balmung', false, '783231230&show_for_all=5c48e3ff5f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 19, 'Balmung', false, '783230403&show_for_all=9a514fea55', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 19, 'Balmung', true, '783229888&show_for_all=8feb3edd79', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 19, 'Balmung', true, '783229572&show_for_all=18cb253f47', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 19, 'Balmung', true, '783228401&show_for_all=8af2373322', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 19, 'Balmung', true, '783228028&show_for_all=ab4a782320', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Balmung', true, '783140667&show_for_all=dd5d9a83bc', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Balmung', false, '783140468&show_for_all=b0dcd76f54', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 19, 'Balmung', true, '783140329&show_for_all=a7b238a58b', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 19, 'Balmung', true, '783140189&show_for_all=abdf97dcef', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 19, 'Balmung', true, '783139947&show_for_all=5ff51a8f8f', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 19, 'Balmung', true, '783139794&show_for_all=091333f763', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 19, 'Balmung', true, '783139617&show_for_all=2fe2450be1', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 19, 'Balmung', true, '783139385&show_for_all=b978840753', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 19, 'Balmung', true, '783139250&show_for_all=27235f7371', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 19, 'Balmung', true, '783139133&show_for_all=772a7e81c7', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 19, 'Balmung', true, '783138914&show_for_all=fb6f6f81d5', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 19, 'Balmung', true, '783138663&show_for_all=020cac7398', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Balmung', true, '783138370&show_for_all=921f2db76a', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Balmung', false, '783138236&show_for_all=e9230837e0', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Balmung', false, '783138050&show_for_all=f861259ab1', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 19, 'Balmung', false, '783137800&show_for_all=539d9d0081', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 19, 'Balmung', true, '783137446&show_for_all=37438e09bd', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 19, 'Balmung', true, '783136975&show_for_all=e2b3565f3e', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 19, 'Balmung', true, '783136444&show_for_all=48608c9d73', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 19, 'Balmung', false, '783135841&show_for_all=1f62bb71b4', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 19, 'Balmung', true, '783135577&show_for_all=92cd3a71da', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 19, 'Balmung', true, '783135265&show_for_all=af8cd94fbd', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 19, 'Balmung', true, '783134974&show_for_all=1df525d29c', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 19, 'Balmung', true, '783118261&show_for_all=a85cdf526c', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 19, 'Balmung', true, '783117391&show_for_all=ac9af772b5', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 19, 'Balmung', true, '783116943&show_for_all=ead1ae8629', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 19, 'Balmung', false, '783116117&show_for_all=76d1b0b068', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 19, 'Balmung', true, '783115693&show_for_all=a9bdfb4239', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 19, 'Balmung', true, '783114872&show_for_all=fd54ddcc29', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 19, 'Balmung', false, '783114423&show_for_all=dbeee897f2', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 19, 'Balmung', true, '783113717&show_for_all=93be95bc92', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 19, 'Balmung', true, '783112572&show_for_all=2b9b2d111b', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 19, 'Balmung', true, '783112121&show_for_all=876ff07e0a', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 19, 'Balmung', true, '783111287&show_for_all=7eeeed63c6', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 19, 'Balmung', true, '783110908&show_for_all=ff747dc8c1', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 19, 'Balmung', false, '783110123&show_for_all=ad7ec3b25a', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 19, 'Balmung', true, '783109074&show_for_all=7b2e4810dc', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 19, 'Balmung', true, '783107930&show_for_all=182502031f', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 19, 'Balmung', false, '783107044&show_for_all=402fc0e26c', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 19, 'Balmung', true, '783106482&show_for_all=81a5c79fcf', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 19, 'Balmung', true, '783105457&show_for_all=600790469c', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 19, 'Balmung', false, '783104894&show_for_all=8279da03a1', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 19, 'Balmung', false, '783103770&show_for_all=c753511561', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 19, 'Balmung', true, '783103024&show_for_all=b2e359f65d', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 19, 'Balmung', true, '783102330&show_for_all=23ef3c9cb2', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 19, 'Balmung', true, '783101592&show_for_all=2b1aa29b5b', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 19, 'Balmung', true, '783100989&show_for_all=b40f1b77b4', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Balmung', true, '783096447&show_for_all=371603dcef', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 19, 'Balmung', true, '783095619&show_for_all=bc73799f5d', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 19, 'Balmung', true, '783095166&show_for_all=ef7ec28f25', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 19, 'Balmung', true, '783094577&show_for_all=fbefcf52ca', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Balmung', true, '783094211&show_for_all=35bf12c3db', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 19, 'Balmung', false, '783093802&show_for_all=843c102b9e', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Balmung', true, '783092932&show_for_all=c1fec31afb', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 19, 'Balmung', false, '783092579&show_for_all=210a45f383', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 19, 'Balmung', true, '783092042&show_for_all=bc05ec2985', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 19, 'Balmung', true, '783091694&show_for_all=e37431eada', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 19, 'Balmung', true, '783091397&show_for_all=9646757c30', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Balmung', true, '783090925&show_for_all=528c3a1aef', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 19, 'Balmung', false, '783090590&show_for_all=c44a146d1d', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 19, 'Balmung', true, '783089331&show_for_all=c87d11406b', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 19, 'Balmung', true, '783088946&show_for_all=ead8c6818f', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 19, 'Balmung', true, '783088529&show_for_all=eae51a46ca', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 19, 'Balmung', true, '783087712&show_for_all=21b3d7d065', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 19, 'Balmung', true, '783087306&show_for_all=4364df51ad', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Balmung', true, '783086736&show_for_all=014ad4d22e', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 19, 'Balmung', false, '783086332&show_for_all=b8b7490d1b', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 19, 'Balmung', true, '783086088&show_for_all=77e09d5b7f', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 19, 'Balmung', true, '783085685&show_for_all=5953de5cbf', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', true, '781707977&show_for_all=d45905667e', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', false, '781707465&show_for_all=46d8820760', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Balmung', true, '781706371&show_for_all=e49724e997', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Balmung', true, '781703862&show_for_all=5677873231', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Balmung', true, '781702838&show_for_all=f08ed3e568', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Balmung', true, '781702314&show_for_all=959aae664b', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Balmung', false, '781701539&show_for_all=eb0c8e6ad5', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Balmung', true, '781701251&show_for_all=e6b2f3574d', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Balmung', false, '781700859&show_for_all=6d25909a1f', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Balmung', true, '781700198&show_for_all=9ffc959874', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Balmung', false, '781699761&show_for_all=cf0a43f5b6', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Balmung', true, '781699246&show_for_all=626a7c0682', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Balmung', false, '781696391&show_for_all=bbb2270a6f', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Balmung', true, '781695863&show_for_all=ddf156dd3d', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Balmung', true, '781694674&show_for_all=d2e1f9bbc9', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Balmung', false, '781693714&show_for_all=2b85d3173a', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Balmung', false, '781690039&show_for_all=2eb160325c', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Balmung', true, '781689295&show_for_all=a8b0d66c0f', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Balmung', true, '781688055&show_for_all=073a704899', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Balmung', true, '781687550&show_for_all=60e106abc3', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Balmung', true, '781687071&show_for_all=83da06f429', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Balmung', true, '781686781&show_for_all=65c0b90fd1', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Balmung', true, '781686250&show_for_all=34819fbea3', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Balmung', true, '781685862&show_for_all=b706f39fd5', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Balmung', false, '781681930&show_for_all=4088ff2877', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Balmung', true, '762329300&show_for_all=7c2712d484', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 19, 'Balmung', true, '762327624&show_for_all=dc80eec758', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Balmung', true, '762325514&show_for_all=b4c8033968', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 19, 'Balmung', false, '762320677&show_for_all=46e2461a7f', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Balmung', true, '762319951&show_for_all=f0ce52bf5c', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 19, 'Balmung', false, '762316467&show_for_all=405e280eb2', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 19, 'Balmung', true, '762315513&show_for_all=0a8ca0eb47', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 19, 'Balmung', true, '762315059&show_for_all=f556e3e73c', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 19, 'Balmung', true, '762314514&show_for_all=bbda67c507', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Balmung', true, '762313866&show_for_all=89d6a39c2d', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 19, 'Balmung', false, '762310636&show_for_all=158fef5e8c', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 19, 'Balmung', true, '762310025&show_for_all=20c6acf54e', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 19, 'Balmung', true, '762309200&show_for_all=01e95b378b', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Balmung', true, '762308163&show_for_all=93805360de', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 19, 'Balmung', false, '762303506&show_for_all=2c554d7ec8', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 19, 'Balmung', true, '762302836&show_for_all=84a1411727', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 19, 'Balmung', true, '762302171&show_for_all=c031947f41', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 19, 'Balmung', true, '762299657&show_for_all=8a6dad22a7', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 19, 'Balmung', true, '762298826&show_for_all=e17d492ad1', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 19, 'Balmung', true, '762298230&show_for_all=45d80988dd', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 19, 'Balmung', true, '762297393&show_for_all=63cfbc8d1b', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', true, '762295421&show_for_all=48a103039e', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', false, '762292410&show_for_all=b00c58ad74', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', false, '762287430&show_for_all=5b6124d4fc', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Balmung', true, '762285962&show_for_all=e028b6dc97', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 19, 'Balmung', true, '762285080&show_for_all=e27f6e901b', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Balmung', true, '762284128&show_for_all=adc644c771', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Balmung', true, '762282853&show_for_all=5048c3328c', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Balmung', true, '762281826&show_for_all=b241fc4527', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Balmung', true, '762281550&show_for_all=89ac857afc', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Balmung', true, '762280430&show_for_all=adaf08ec39', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Balmung', true, '762279088&show_for_all=1a3877f55c', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Balmung', true, '762277976&show_for_all=bc7136c131', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Balmung', false, '762272657&show_for_all=60a5a361de', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Balmung', true, '762271636&show_for_all=ff9c58aff8', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Balmung', false, '762266645&show_for_all=7bdfdf8f9a', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Balmung', true, '762265895&show_for_all=4b756feb5c', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Balmung', false, '762262552&show_for_all=d797795a92', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Balmung', true, '762261696&show_for_all=8c10a0fb66', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Balmung', true, '762260963&show_for_all=68edec378b', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Balmung', false, '762257612&show_for_all=3f54d53555', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Balmung', true, '762256076&show_for_all=084d99c8f2', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Balmung', true, '762241821&show_for_all=a3f35182df', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Balmung', true, '762240999&show_for_all=8a49eebda9', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Balmung', true, '762240296&show_for_all=76763d16bb', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Balmung', false, '762235216&show_for_all=333aed251c', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', true, '759385097&show_for_all=e6081ed4a1', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', false, '759381960&show_for_all=2754b8f739', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', false, '759377173&show_for_all=d2d43df51d', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 19, 'Balmung', true, '759373297&show_for_all=9782cc315a', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 19, 'Balmung', true, '759367444&show_for_all=4e2135fd76', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 19, 'Balmung', true, '759364986&show_for_all=6cde32baec', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 19, 'Balmung', true, '759363430&show_for_all=fe3d723984', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 19, 'Balmung', true, '759362088&show_for_all=4154525102', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 19, 'Balmung', true, '759360462&show_for_all=be63d3e949', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 19, 'Balmung', true, '759358561&show_for_all=303e374581', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 19, 'Balmung', true, '759355876&show_for_all=3c1e773088', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 19, 'Balmung', true, '759354183&show_for_all=d53d4d0452', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 19, 'Balmung', true, '759351623&show_for_all=cbdd100d5a', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 19, 'Balmung', true, '759348932&show_for_all=49908721bb', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Balmung', true, '759346772&show_for_all=78e6a504d0', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 19, 'Balmung', false, '759342162&show_for_all=795e50fb9a', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Balmung', true, '759340766&show_for_all=da382b5aa5', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 19, 'Balmung', false, '759335556&show_for_all=6a78f05676', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 19, 'Balmung', true, '759333894&show_for_all=58b773bdda', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 19, 'Balmung', true, '759331782&show_for_all=7006d40402', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 19, 'Balmung', true, '759329760&show_for_all=8ee583902f', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 17, 'tolik', true, '830443566&show_for_all=54f36f66e8', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 17, 'tolik', true, '830441307&show_for_all=39a7ae1c04', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 17, 'tolik', true, '830382648&show_for_all=baf990a8f7', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 17, 'tolik', true, '830381441&show_for_all=fb4bd29dc8', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'tolik', true, '820086884&show_for_all=543bcf78c0', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'tolik', true, '820085722&show_for_all=aed08c16cf', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 17, 'tolik', true, '820084288&show_for_all=461c7e2bc7', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 17, 'tolik', true, '820082673&show_for_all=46a4077874', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'tolik', true, '820081783&show_for_all=09db0556d8', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'tolik', true, '820080859&show_for_all=b2bd789e1a', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 17, 'tolik', true, '820079866&show_for_all=b2d874d3b3', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 17, 'tolik', false, '820078873&show_for_all=099bc4178b', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 17, 'tolik', true, '820074388&show_for_all=f4cdf1c029', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 17, 'tolik', true, '820070336&show_for_all=6bb0cc36d0', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 17, 'tolik', false, '819843880&show_for_all=a9571df91e', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 17, 'tolik', true, '819842271&show_for_all=e59a41d139', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'tolik', true, '819840916&show_for_all=1f896666d3', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 17, 'tolik', true, '819840222&show_for_all=f52dc6c6f1', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 17, 'tolik', true, '819839461&show_for_all=a2ea214595', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 17, 'tolik', true, '817667229&show_for_all=a46bfa8609', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 17, 'tolik', true, '817543793&show_for_all=1f542decd9', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 17, 'tolik', true, '817526553&show_for_all=42dd4fb413', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 17, 'tolik', true, '817526307&show_for_all=de96054d58', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'tolik', true, '817268723&show_for_all=7fe99a397e', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 17, 'tolik', true, '817267218&show_for_all=32741d6fbb', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 17, 'tolik', true, '817265701&show_for_all=76e46f25fe', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 17, 'tolik', false, '817263676&show_for_all=3c8bac6394', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 17, 'tolik', true, '817262675&show_for_all=9faef6ed42', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 17, 'tolik', true, '817260610&show_for_all=d081d2f344', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 17, 'tolik', true, '817257683&show_for_all=a2649cc0e0', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 17, 'tolik', true, '817112837&show_for_all=2d72e5a18f', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 17, 'tolik', false, '817110153&show_for_all=4c470866c7', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 17, 'tolik', true, '817099951&show_for_all=1f017f3377', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 17, 'tolik', false, '816941891&show_for_all=e4234cc434', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 17, 'tolik', true, '816940597&show_for_all=06870601f2', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 17, 'tolik', true, '816937474&show_for_all=b42199b196', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 17, 'tolik', true, '816932693&show_for_all=7e9ccc45f8', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 17, 'tolik', false, '816888647&show_for_all=8d77a84008', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 17, 'tolik', true, '816888035&show_for_all=2a5e17cb67', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 17, 'tolik', true, '816874755&show_for_all=288c80d173', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'tolik', true, '816871880&show_for_all=41c1d1604a', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'tolik', false, '816868566&show_for_all=9a72bfbfa0', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'tolik', true, '816866871&show_for_all=b91013493c', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'tolik', false, '816861356&show_for_all=ea33f4913e', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 17, 'tolik', true, '816859798&show_for_all=22c241a601', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 17, 'tolik', true, '816858524&show_for_all=eab11b0990', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'tolik', true, '815777175&show_for_all=64c226a559', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'tolik', true, '815773906&show_for_all=b6301adc41', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 17, 'tolik', true, '815771222&show_for_all=485a8f4c5b', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 17, 'tolik', true, '815763565&show_for_all=dcf1c44078', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 17, 'tolik', true, '815762197&show_for_all=f9c7130d31', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'tolik', true, '815760717&show_for_all=b6081dbc91', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'tolik', true, '815759070&show_for_all=4b454c1a01', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'tolik', true, '815752796&show_for_all=978a70041f', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'tolik', true, '815750933&show_for_all=150589017e', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 17, 'tolik', true, '815748236&show_for_all=e6fa756c64', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 17, 'tolik', true, '815746750&show_for_all=82c0753770', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 17, 'tolik', true, '815745039&show_for_all=a3139ee8f5', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 17, 'tolik', true, '815743700&show_for_all=43a29878cc', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 17, 'tolik', true, '815741759&show_for_all=4cb93dbab6', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'tolik', true, '815736757&show_for_all=49e2bcdf8c', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 17, 'tolik', true, '815727164&show_for_all=94d96b1b14', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'tolik', true, '815725818&show_for_all=97fca3dfae', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 17, 'tolik', true, '815724034&show_for_all=5df0c04633', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 16, 'tolik', true, '810085507&show_for_all=fdee3fd13a', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 16, 'tolik', false, '810078294&show_for_all=1d3dd62559', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 16, 'tolik', true, '810077085&show_for_all=4f3b977bb5', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 16, 'tolik', true, '810075856&show_for_all=930def584f', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 16, 'tolik', true, '810074219&show_for_all=834907c7cc', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 16, 'tolik', true, '810072764&show_for_all=1924f53520', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 16, 'tolik', false, '810071579&show_for_all=3e80f1c0c3', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 16, 'tolik', true, '810070547&show_for_all=1847df052d', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 16, 'tolik', true, '810064050&show_for_all=5c2b83aa55', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 16, 'tolik', true, '810062406&show_for_all=77f6a9009b', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 16, 'tolik', true, '810061468&show_for_all=9e9f30e584', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 16, 'tolik', true, '810058903&show_for_all=7764a2b2b1', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 16, 'tolik', true, '810057822&show_for_all=f18c8c840c', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 16, 'tolik', true, '810056877&show_for_all=68ab846ac0', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 16, 'tolik', false, '810055864&show_for_all=e7c3ab226c', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 16, 'tolik', true, '810055728&show_for_all=5826139a89', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 16, 'tolik', true, '810053237&show_for_all=43d112f7a5', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 16, 'tolik', true, '810052546&show_for_all=03d3ad95d8', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 16, 'tolik', true, '810051883&show_for_all=54e214f719', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 16, 'tolik', true, '810051427&show_for_all=ad8e650b92', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 16, 'tolik', true, '810051137&show_for_all=4607636977', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 16, 'tolik', false, '809129793&show_for_all=fa4158a80b', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 16, 'tolik', true, '802100626&show_for_all=1e76de75d5', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 16, 'tolik', true, '802098378&show_for_all=58d0190b34', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 16, 'tolik', true, '802096112&show_for_all=66d0838165', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 16, 'tolik', true, '802094153&show_for_all=fa33880850', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 16, 'tolik', true, '802091755&show_for_all=cc3688d915', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 16, 'tolik', true, '802090551&show_for_all=8a9bcf3a72', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 16, 'tolik', true, '802089003&show_for_all=7dc82b3013', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 16, 'tolik', true, '802052727&show_for_all=6561338c44', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 16, 'tolik', true, '802050752&show_for_all=f06e057175', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 16, 'tolik', true, '801850459&show_for_all=c2307f37a7', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 16, 'tolik', true, '801847775&show_for_all=5e8510c123', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 16, 'tolik', true, '801842387&show_for_all=4f83bdaafb', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 16, 'tolik', true, '801840881&show_for_all=39747c1057', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 16, 'tolik', true, '801712760&show_for_all=8777d1cd31', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 16, 'tolik', true, '801702309&show_for_all=5e977d034d', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 16, 'tolik', true, '801582373&show_for_all=64fd7c951a', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 16, 'tolik', true, '801580553&show_for_all=3fe6852bc6', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 16, 'tolik', true, '801579293&show_for_all=74f63c1650', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 16, 'tolik', true, '800941498&show_for_all=4d9c2c3d3e', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 16, 'tolik', false, '800939500&show_for_all=040d5d791d', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 16, 'tolik', true, '800938468&show_for_all=b55f2f5da6', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 16, 'tolik', false, '800936780&show_for_all=9a25b96f6b', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 16, 'tolik', true, '800934787&show_for_all=949b6e07fb', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 16, 'tolik', true, '800931602&show_for_all=1a39ee8de7', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 16, 'tolik', false, '800928695&show_for_all=79bd2fdda3', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 16, 'tolik', false, '800926691&show_for_all=8586767b1f', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 16, 'tolik', true, '800924125&show_for_all=dfbcec9b50', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 16, 'tolik', true, '800922685&show_for_all=d3efc11d9a', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 16, 'tolik', true, '800833373&show_for_all=c5dc2334ca', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 16, 'tolik', true, '800824720&show_for_all=3267804662', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 16, 'tolik', true, '800819729&show_for_all=92487d7e8a', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 16, 'tolik', true, '800814190&show_for_all=cd4685638c', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 16, 'tolik', true, '800812744&show_for_all=fd26731f7b', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 16, 'tolik', true, '800718597&show_for_all=6ca0d27770', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 16, 'tolik', false, '800668630&show_for_all=a90b5af128', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 16, 'tolik', true, '800667608&show_for_all=5deb6ac36a', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 16, 'tolik', true, '800234424&show_for_all=38c0e860bf', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 16, 'tolik', true, '800045742&show_for_all=3f61232c8b', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'tolik', true, '800029385&show_for_all=9334fb0d0e', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 16, 'tolik', false, '799991832&show_for_all=c16346b59e', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 16, 'tolik', true, '799985154&show_for_all=c134908285', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 16, 'tolik', true, '799984122&show_for_all=fcd6db286d', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 16, 'tolik', true, '797434881&show_for_all=6bd2083f5a', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 16, 'tolik', true, '797434656&show_for_all=224ce69d1a', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 16, 'tolik', true, '797434421&show_for_all=751f984772', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 16, 'tolik', true, '797406609&show_for_all=2aa342b5d7', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 16, 'tolik', true, '797404171&show_for_all=d6d6b6e9d6', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 16, 'tolik', true, '797401517&show_for_all=0bb2b303cc', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 16, 'tolik', true, '797399816&show_for_all=314a5f39b3', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 16, 'tolik', true, '797397798&show_for_all=40cee30232', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 16, 'tolik', true, '797355943&show_for_all=b263d745dc', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 16, 'tolik', true, '797301777&show_for_all=57d3e87ba4', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 16, 'tolik', true, '797267516&show_for_all=96ffc7be5f', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 16, 'tolik', true, '797264345&show_for_all=b1552bf94a', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 16, 'tolik', true, '797261440&show_for_all=f6732ce868', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 16, 'tolik', true, '797259929&show_for_all=1e0d172b32', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 16, 'tolik', true, '797257079&show_for_all=93af492508', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 16, 'tolik', true, '797173792&show_for_all=76789e1995', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 16, 'tolik', false, '797173267&show_for_all=8b3d7382f3', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 16, 'tolik', true, '797137636&show_for_all=b5ff28a69e', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 16, 'tolik', true, '797135691&show_for_all=730be2caa6', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 16, 'tolik', true, '794877379&show_for_all=b13eaed465', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 16, 'tolik', true, '794876170&show_for_all=8c54a822ef', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 16, 'tolik', true, '794874408&show_for_all=b5f929e2b0', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 16, 'tolik', true, '794870895&show_for_all=402f0e7d4e', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 16, 'tolik', true, '794865239&show_for_all=5ac14e33d2', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 16, 'tolik', true, '794864534&show_for_all=51572195b0', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 16, 'tolik', true, '794864151&show_for_all=dd89689e60', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 16, 'tolik', true, '794862789&show_for_all=967f16e58f', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 16, 'tolik', true, '794862596&show_for_all=0f54782564', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 16, 'tolik', true, '794823570&show_for_all=aeacba2acc', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 16, 'tolik', true, '794818891&show_for_all=af45b3d813', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 16, 'tolik', true, '794817375&show_for_all=21ed2a1b70', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 16, 'tolik', true, '794816638&show_for_all=42d7a0ebed', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 16, 'tolik', true, '794815675&show_for_all=0abb2d7488', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 16, 'tolik', true, '794809742&show_for_all=4f7b50b028', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 16, 'tolik', true, '794773919&show_for_all=de78231f2a', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 16, 'tolik', true, '794771412&show_for_all=78c984be39', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 16, 'tolik', true, '794769773&show_for_all=0cc571da00', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 16, 'tolik', true, '794747226&show_for_all=02571a9dad', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 16, 'tolik', true, '794745747&show_for_all=bed66d2117', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 16, 'tolik', true, '794744553&show_for_all=e7e4c8b235', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 16, 'tolik', true, '794742400&show_for_all=23221965bc', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 16, 'tolik', true, '794739714&show_for_all=3c73775b94', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 16, 'tolik', true, '794738273&show_for_all=127a3a410f', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 16, 'tolik', true, '794737550&show_for_all=57002926dd', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 16, 'tolik', true, '794371278&show_for_all=e31a533a1f', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 16, 'tolik', true, '794370188&show_for_all=429014202e', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 16, 'tolik', true, '794368932&show_for_all=d10c8ab096', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 16, 'tolik', true, '794367148&show_for_all=589dc533c8', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 16, 'tolik', true, '794010458&show_for_all=faab57226d', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 16, 'tolik', true, '794009098&show_for_all=658bb67c93', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 16, 'tolik', true, '794006971&show_for_all=8d4f4ef099', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 16, 'tolik', true, '793981223&show_for_all=924245ea47', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 16, 'tolik', true, '793976456&show_for_all=5fd17c82d9', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 16, 'tolik', true, '793971759&show_for_all=ab5184eb8f', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 16, 'tolik', true, '793969378&show_for_all=63887aa19f', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 16, 'tolik', true, '783667001&show_for_all=68ac5ac6d4', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 16, 'tolik', true, '783665624&show_for_all=3020545c35', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 16, 'tolik', false, '783663475&show_for_all=79f21411ea', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 16, 'tolik', true, '783662375&show_for_all=67ff9e2bf1', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 16, 'tolik', true, '783661167&show_for_all=7b89b95bca', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 16, 'tolik', true, '783659790&show_for_all=3f4be19126', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 16, 'tolik', true, '783658467&show_for_all=c0225ec4f0', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 16, 'tolik', true, '783654633&show_for_all=e85cd459e3', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 16, 'tolik', true, '783652257&show_for_all=7f81dee96a', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 16, 'tolik', false, '783649026&show_for_all=ab9dab8dbd', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 16, 'tolik', true, '783645195&show_for_all=c0515d1c1e', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 16, 'tolik', false, '783641415&show_for_all=923cdc1ec9', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 16, 'tolik', true, '783639284&show_for_all=1edd58fd6e', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 16, 'tolik', true, '783637110&show_for_all=3c29dc6a40', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 16, 'tolik', false, '783621864&show_for_all=6afedec5ad', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 16, 'tolik', true, '783621588&show_for_all=ec27e3e430', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 16, 'tolik', true, '783620721&show_for_all=8587a55b4e', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 16, 'tolik', true, '783619608&show_for_all=500aa96bc2', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 16, 'tolik', false, '783583497&show_for_all=ce3618ec00', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 16, 'tolik', true, '783580582&show_for_all=b9319ae4df', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 16, 'tolik', true, '783578841&show_for_all=1b58462f4c', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 16, 'tolik', true, '783577927&show_for_all=157724f69b', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 16, 'tolik', true, '783576535&show_for_all=50a7bcd8ae', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 16, 'tolik', true, '783311230&show_for_all=1d1bf8f644', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 16, 'tolik', true, '783308897&show_for_all=ff923a269a', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 16, 'tolik', true, '783308403&show_for_all=c21b4f88a7', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 16, 'tolik', true, '783307825&show_for_all=8b72c4074e', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 16, 'tolik', true, '783307401&show_for_all=61c71e9633', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 16, 'tolik', true, '783307028&show_for_all=d809c18b48', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 16, 'tolik', true, '783306595&show_for_all=03f956ea81', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 16, 'tolik', true, '783286586&show_for_all=67a397af28', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 16, 'tolik', true, '783285834&show_for_all=e80741b3f6', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 16, 'tolik', true, '783278242&show_for_all=c479230d6c', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 16, 'tolik', true, '783276365&show_for_all=207d9ece9d', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 16, 'tolik', false, '783272958&show_for_all=d5d3d40159', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 16, 'tolik', true, '783262136&show_for_all=31a5713020', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 16, 'tolik', true, '783095064&show_for_all=62012dbf37', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 16, 'tolik', true, '783093072&show_for_all=7f171fec3a', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 16, 'tolik', false, '783088873&show_for_all=3a78447782', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 16, 'tolik', true, '783085619&show_for_all=647b130780', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 16, 'tolik', true, '783082726&show_for_all=ff12945a3a', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 16, 'tolik', true, '783076914&show_for_all=76d9d805aa', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 16, 'tolik', true, '783075449&show_for_all=996f80f98d', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 16, 'tolik', false, '782933367&show_for_all=63c703ea93', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 16, 'tolik', true, '782423347&show_for_all=52f106fc20', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 16, 'tolik', true, '782421519&show_for_all=9282b2ee30', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 16, 'tolik', true, '782393998&show_for_all=5fd022e4d5', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 16, 'tolik', false, '782196615&show_for_all=e3ceff1955', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 16, 'tolik', true, '782195058&show_for_all=f29c8a6d8a', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 16, 'tolik', true, '782190842&show_for_all=2769983850', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 16, 'tolik', false, '782186662&show_for_all=39e4d78527', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 16, 'tolik', false, '782176855&show_for_all=6796838116', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 16, 'tolik', true, '782172442&show_for_all=44565b570b', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 16, 'tolik', true, '782170486&show_for_all=4cb5a2620a', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 16, 'tolik', true, '782167205&show_for_all=16d1c49a5c', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 16, 'tolik', true, '782165694&show_for_all=5b963c45c9', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 16, 'tolik', true, '782163760&show_for_all=ae3005bc3c', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 16, 'tolik', true, '782161390&show_for_all=e917f39931', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 16, 'tolik', false, '782146955&show_for_all=c6df0e1a6f', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 16, 'tolik', true, '782145015&show_for_all=0e10679295', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 16, 'tolik', true, '782137438&show_for_all=b4472822ce', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 16, 'tolik', true, '782136111&show_for_all=ad11926e1e', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 16, 'tolik', true, '782132576&show_for_all=d9eaa064b4', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 16, 'tolik', true, '782114904&show_for_all=eb61490f58', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 16, 'tolik', false, '782111342&show_for_all=f5afff73ca', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 16, 'tolik', false, '782078407&show_for_all=31b4313fad', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 16, 'tolik', true, '782076444&show_for_all=a7456b4098', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 16, 'tolik', false, '781988562&show_for_all=69ef70e920', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 16, 'tolik', true, '781981017&show_for_all=fc9a717706', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 16, 'tolik', false, '781362313&show_for_all=b828c8bc64', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 16, 'tolik', false, '781337012&show_for_all=580463eeda', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'tolik', true, '781230149&show_for_all=60a204d9b7', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 1, 16, 'tolik', true, '781228716&show_for_all=222755be78', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 16, 'tolik', true, '781227460&show_for_all=6a1f76b282', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 16, 'tolik', true, '781224951&show_for_all=097a5c9155', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 16, 'tolik', true, '781213035&show_for_all=d392c8fc3d', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 16, 'tolik', true, '781211323&show_for_all=b28899bc28', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 16, 'tolik', true, '781169168&show_for_all=ff04c246ad', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 16, 'tolik', true, '781165539&show_for_all=5d33895df4', 'first'),
    new Descriptor(e_m.arsenal, 2, 1, 16, 'tolik', false, '781139666&show_for_all=cdd9899ca8', 'first'),
    new Descriptor(e_m.two_heroes, 2, 1, 16, 'tolik', true, '781121498&show_for_all=82e778a031', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 16, 'tolik', true, '781116432&show_for_all=b63dccea87', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 16, 'tolik', true, '781114628&show_for_all=63855d0583', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 16, 'tolik', false, '781106986&show_for_all=73b934464b', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 16, 'tolik', false, '781098603&show_for_all=69a4dfc3ea', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 16, 'tolik', true, '781096432&show_for_all=a0ab8095fd', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 16, 'tolik', true, '781086189&show_for_all=2a62be74c4', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 16, 'tolik', true, '781084987&show_for_all=c6334d0cd7', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 16, 'tolik', true, '781081810&show_for_all=50a91f3027', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 16, 'tolik', true, '781041526&show_for_all=631bef994c', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 16, 'tolik', true, '781039567&show_for_all=0e39308e6d', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 16, 'tolik', false, '780622349&show_for_all=a052ed447f', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 16, 'tolik', false, '780051246&show_for_all=eb7acc43d8', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 16, 'tolik', true, '779931890&show_for_all=dfc13c28d4', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 16, 'tolik', true, '779931104&show_for_all=4b61044fd8', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 16, 'tolik', true, '779930619&show_for_all=8ad0671940', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 16, 'tolik', false, '779929692&show_for_all=c9685c6adb', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 16, 'tolik', true, '779926641&show_for_all=05f7521b36', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 16, 'tolik', true, '779926226&show_for_all=d435c522c2', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 16, 'tolik', true, '779907121&show_for_all=012e1fdf3e', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 16, 'tolik', true, '779905991&show_for_all=b8a03a779a', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 16, 'tolik', true, '779899536&show_for_all=6842fdb8ba', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 16, 'tolik', true, '779898246&show_for_all=c2796c579f', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 16, 'tolik', true, '779896632&show_for_all=de9b5d54ee', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 16, 'tolik', true, '779895103&show_for_all=b1446eec5d', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 16, 'tolik', true, '779890642&show_for_all=b5c4be7e76', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 16, 'tolik', true, '779887964&show_for_all=f15a7e4d53', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 16, 'tolik', true, '779830169&show_for_all=febf82c6b3', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 16, 'tolik', true, '779824895&show_for_all=3ac4b34e8b', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 16, 'tolik', false, '779763504&show_for_all=a9574231ad', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 16, 'tolik', true, '778338791&show_for_all=9c3c1777e4', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 16, 'tolik', true, '778337249&show_for_all=1ea93f7ea3', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 16, 'tolik', true, '778335997&show_for_all=b10e0b4172', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 16, 'tolik', true, '778334837&show_for_all=39048eef6b', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 16, 'tolik', true, '778333638&show_for_all=0a45df16ed', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 16, 'tolik', true, '778331711&show_for_all=01e4e72dad', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 16, 'tolik', false, '778329673&show_for_all=e4a06ce46f', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 16, 'tolik', true, '778328574&show_for_all=06a17e572e', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 16, 'tolik', true, '778316233&show_for_all=2f2b2eff08', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 1, 16, 'tolik', true, '778314667&show_for_all=8a5e836c4d', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 16, 'tolik', true, '778295172&show_for_all=17ce875e21', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 16, 'tolik', true, '778291997&show_for_all=6b125fdd09', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 16, 'tolik', true, '778290800&show_for_all=f98e375710', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 16, 'tolik', true, '778289907&show_for_all=ca75e9aa71', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 16, 'tolik', false, '778284674&show_for_all=98a6348ba9', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 16, 'tolik', true, '778279165&show_for_all=18ce6fc5fd', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 16, 'tolik', true, '778274645&show_for_all=6e5e596b19', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 16, 'tolik', true, '778272252&show_for_all=585848b15e', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 16, 'tolik', true, '778271302&show_for_all=c83ea110f9', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 16, 'tolik', true, '778261373&show_for_all=453ff726d7', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 16, 'tolik', true, '778104231&show_for_all=31d257246e', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 16, 'tolik', true, '778084491&show_for_all=d6d8e727aa', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 16, 'tolik', true, '778083055&show_for_all=326cac0c22', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 16, 'tolik', false, '778055599&show_for_all=9b03471ec8', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 16, 'tolik', true, '777898282&show_for_all=bab761efd6', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 16, 'tolik', false, '777896184&show_for_all=2abea04f4e', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 16, 'tolik', false, '777894609&show_for_all=6b9c75a36a', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 16, 'tolik', true, '777892982&show_for_all=4973f68f8f', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 16, 'tolik', false, '777890871&show_for_all=69d0dece8c', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 16, 'tolik', true, '777889956&show_for_all=6d5fa663ba', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 16, 'tolik', true, '777888848&show_for_all=40c9e8c831', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 16, 'tolik', false, '777886740&show_for_all=ea165ea03f', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 16, 'tolik', true, '777885788&show_for_all=9ca2bd028b', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 16, 'tolik', false, '777883802&show_for_all=c56ba6d5cf', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 16, 'tolik', true, '777883185&show_for_all=1b46b78a99', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 16, 'tolik', true, '777882046&show_for_all=6b3ba5a5a0', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 16, 'tolik', true, '777880732&show_for_all=6e8544cb37', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 16, 'tolik', true, '777879960&show_for_all=b7b2c0e498', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 16, 'tolik', true, '777879137&show_for_all=9ad6ad164d', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 16, 'tolik', true, '777877822&show_for_all=2b5438ae29', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 16, 'tolik', true, '777876466&show_for_all=b76a1f320e', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 16, 'tolik', true, '777875430&show_for_all=dd9020b672', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 16, 'tolik', true, '777858759&show_for_all=edcda238cc', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 16, 'tolik', true, '777831774&show_for_all=b6714a6103', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 16, 'tolik', false, '777824393&show_for_all=3476b1c2e0', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 16, 'tolik', true, '777823205&show_for_all=6d5cb14a16', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 16, 'tolik', true, '777816641&show_for_all=de5c4a0905', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 16, 'tolik', true, '777815644&show_for_all=576e4edf7d', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 16, 'tolik', true, '777806960&show_for_all=a512648a05', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 16, 'tolik', false, '777804811&show_for_all=da11c5afa5', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 16, 'tolik', true, '777802463&show_for_all=feb27753d1', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 16, 'tolik', true, '777800626&show_for_all=aa133aa56e', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 16, 'tolik', true, '777798965&show_for_all=33c2f79665', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 16, 'tolik', false, '777796998&show_for_all=fa8e01ca7a', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 16, 'tolik', true, '777795958&show_for_all=f590ce82cd', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 16, 'tolik', true, '777794908&show_for_all=6f7280ccce', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 16, 'tolik', false, '777792798&show_for_all=ec95a78cad', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 16, 'tolik', true, '777790913&show_for_all=68b0fc2556', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 16, 'tolik', true, '777750356&show_for_all=a3fbfbe63f', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 16, 'tolik', true, '777682349&show_for_all=94e94f678e', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 16, 'tolik', true, '777678554&show_for_all=dd940d2bcb', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 16, 'tolik', true, '777560827&show_for_all=3bbea4b7e8', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 16, 'tolik', true, '777560642&show_for_all=e4029981af', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 16, 'tolik', true, '777558473&show_for_all=16a94c6bca', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 16, 'tolik', true, '777521109&show_for_all=814918a33d', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 16, 'tolik', true, '777517998&show_for_all=39f30e8d44', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 16, 'tolik', false, '777333983&show_for_all=bb394b446a', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 16, 'tolik', true, '777023772&show_for_all=99352b2172', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 16, 'tolik', true, '777023200&show_for_all=925af28138', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 16, 'tolik', true, '777022324&show_for_all=82924258b5', 'first'),
    new Descriptor(e_m.last_fight, 5, 2, 16, 'tolik', true, '776978149&show_for_all=d868c4ece2', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 16, 'tolik', true, '776976629&show_for_all=35c84c0feb', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 16, 'tolik', true, '776975446&show_for_all=8bdddc99f2', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 16, 'tolik', true, '776974429&show_for_all=cbb1c968f3', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 16, 'tolik', true, '776972688&show_for_all=150cf99a6c', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 16, 'tolik', true, '776970904&show_for_all=59c6ee03ad', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 16, 'tolik', true, '776969168&show_for_all=e5c86bd411', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 16, 'tolik', true, '776890378&show_for_all=8f189cf8c4', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 16, 'tolik', true, '776872504&show_for_all=cec1385028', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 16, 'tolik', false, '776867531&show_for_all=251b04b9db', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 16, 'tolik', true, '776846371&show_for_all=f28794bd47', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 16, 'tolik', true, '776844841&show_for_all=d27263bf08', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 16, 'tolik', true, '776837021&show_for_all=9da9246f7d', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 16, 'tolik', false, '776832630&show_for_all=57cc626300', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 16, 'tolik', true, '776800513&show_for_all=335ac7480d', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 16, 'tolik', true, '776799532&show_for_all=a664b145fc', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 16, 'tolik', true, '776798017&show_for_all=0e765417e6', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 16, 'tolik', true, '776796145&show_for_all=2fa7e42a2c', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 16, 'tolik', false, '776792659&show_for_all=96bd415888', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 16, 'tolik', true, '776791514&show_for_all=62b65133d7', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 16, 'tolik', true, '776789448&show_for_all=e620faa455', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 16, 'tolik', false, '776713098&show_for_all=f839011fd0', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 16, 'tolik', false, '776583754&show_for_all=320049aff5', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 16, 'tolik', true, '775838451&show_for_all=52315f310b', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 16, 'tolik', false, '775837780&show_for_all=39e3060d7d', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 16, 'tolik', false, '775837038&show_for_all=b809b63beb', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 16, 'tolik', false, '775835899&show_for_all=d2da8d04d0', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 16, 'tolik', true, '775835298&show_for_all=add18697bf', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 16, 'tolik', true, '775834453&show_for_all=90bad64c44', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 16, 'tolik', true, '775833958&show_for_all=881f72d1e7', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 16, 'tolik', true, '775833037&show_for_all=21d32d9351', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 16, 'tolik', true, '775832082&show_for_all=98b1bb8b3a', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 16, 'tolik', true, '775831564&show_for_all=e6debf4a62', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 16, 'tolik', true, '775830784&show_for_all=c6a22ea24e', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 16, 'tolik', false, '775829203&show_for_all=e8ea928f52', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 16, 'tolik', false, '775827895&show_for_all=e3037383a8', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 16, 'tolik', false, '775812572&show_for_all=2baf583443', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 1, 16, 'tolik', true, '775811892&show_for_all=4d8746fbb9', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 16, 'tolik', true, '775810875&show_for_all=e48e92d25e', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 16, 'tolik', true, '775809849&show_for_all=a279a19d7e', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 16, 'tolik', true, '775809239&show_for_all=19a53b4f81', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 16, 'tolik', true, '775808632&show_for_all=8203891141', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 16, 'tolik', true, '775807978&show_for_all=ba5955e61f', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 16, 'tolik', true, '775805477&show_for_all=f5137e14cc', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 16, 'tolik', true, '775804270&show_for_all=acd022937b', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 16, 'tolik', true, '775803724&show_for_all=ac55cb1967', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 16, 'tolik', true, '775803163&show_for_all=5470caab59', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 16, 'tolik', false, '775723235&show_for_all=58d608ab35', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 16, 'tolik', true, '775687699&show_for_all=f473a1de57', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 16, 'tolik', true, '775686348&show_for_all=667b8df7fe', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 16, 'tolik', true, '775685749&show_for_all=9339ca869c', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 16, 'tolik', true, '775684729&show_for_all=ebefdf484b', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 16, 'tolik', true, '775683737&show_for_all=2527103b06', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 16, 'tolik', true, '775682841&show_for_all=7bf42973d7', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 16, 'tolik', true, '775681976&show_for_all=e855e58f6f', 'first'),
    new Descriptor(e_m.robbers_leader, 9, 0, 16, 'tolik', true, '775680918&show_for_all=839b7f2be0', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 16, 'tolik', true, '775680121&show_for_all=4c096b6f0e', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 16, 'tolik', true, '775678707&show_for_all=d2f1178e7e', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 16, 'tolik', true, '775677834&show_for_all=d90dfbc336', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 16, 'tolik', true, '775677254&show_for_all=518223fb6d', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 16, 'tolik', true, '775675362&show_for_all=7652d7b192', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 16, 'tolik', false, '775673725&show_for_all=bb4d3e3fc2', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 16, 'tolik', true, '775671728&show_for_all=1ba60e0574', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 16, 'tolik', true, '775670891&show_for_all=20f1b4dd01', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 16, 'tolik', false, '775668075&show_for_all=21e4c0bfc0', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 16, 'tolik', true, '775663089&show_for_all=f8ba9a8b1c', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 16, 'tolik', true, '775662216&show_for_all=b1b8a56a52', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 16, 'tolik', true, '775660997&show_for_all=f32dce9588', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'BangFire', true, '787671523&show_for_all=e491293492', 'first'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'CreatorOfWidows', true, '783184304&show_for_all=c19e71f26f', 'first'),
    new Descriptor(e_m.arsenal, 6, 1, 17, 'CreatorOfWidows', true, '783182996&show_for_all=6d187ef2f0', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 1, 17, 'CreatorOfWidows', true, '783181979&show_for_all=acd737be91', 'first'),
    new Descriptor(e_m.hided_mages, 6, 1, 17, 'CreatorOfWidows', true, '783180886&show_for_all=9d55cb1b7c', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 1, 17, 'CreatorOfWidows', true, '783180033&show_for_all=6eb9abc6e7', 'first'),
    new Descriptor(e_m.two_heroes, 6, 1, 17, 'CreatorOfWidows', true, '783179005&show_for_all=b38e61fc04', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 17, 'CreatorOfWidows', true, '783175570&show_for_all=8b8c9f521a', 'first'),
    new Descriptor(e_m.three_thieves, 6, 1, 17, 'CreatorOfWidows', false, '783174197&show_for_all=fe2f3541ef', 'first'),
    new Descriptor(e_m.boarding, 6, 1, 17, 'CreatorOfWidows', true, '783173115&show_for_all=4b724db2e1', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 1, 17, 'CreatorOfWidows', true, '783172549&show_for_all=d3e4fd7696', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 17, 'CreatorOfWidows', true, '783171575&show_for_all=c6740afb37', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 1, 17, 'CreatorOfWidows', true, '783170575&show_for_all=8b3e4da541', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 1, 17, 'CreatorOfWidows', true, '783169861&show_for_all=8f613fe53b', 'first'),
    new Descriptor(e_m.hermit, 6, 1, 17, 'CreatorOfWidows', false, '783169686&show_for_all=5231e2ce96', 'first'),
    new Descriptor(e_m.empire_guards, 6, 1, 17, 'CreatorOfWidows', true, '783167562&show_for_all=3e088d905a', 'first'),
    new Descriptor(e_m.savage_treant, 6, 1, 17, 'CreatorOfWidows', true, '783166867&show_for_all=e7d5b3695f', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 17, 'CreatorOfWidows', true, '783165822&show_for_all=2fca5ed99c', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 1, 17, 'CreatorOfWidows', false, '783165649&show_for_all=c97112d992', 'first'),
    new Descriptor(e_m.dt_hero, 6, 1, 17, 'CreatorOfWidows', true, '783164820&show_for_all=0504e8cdc3', 'first'),
    new Descriptor(e_m.elven_hero, 6, 1, 17, 'CreatorOfWidows', true, '783164178&show_for_all=8f79fb40d9', 'first'),
    new Descriptor(e_m.knight_hero, 6, 1, 17, 'CreatorOfWidows', true, '783163392&show_for_all=ccf54e9894', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 17, 'CreatorOfWidows', true, '782779956&show_for_all=9ac7e21d70', 'first'),
    new Descriptor(e_m.last_fight, 8, 0, 17, 'CreatorOfWidows', false, '782778997&show_for_all=f3685f5f15', 'first'),
    new Descriptor(e_m.arsenal, 8, 0, 17, 'CreatorOfWidows', true, '782776268&show_for_all=58cb83f13a', 'first'),
    new Descriptor(e_m.hided_dragons, 8, 0, 17, 'CreatorOfWidows', true, '782775260&show_for_all=665e86f784', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 17, 'CreatorOfWidows', true, '782774398&show_for_all=0f95ceecfd', 'first'),
    new Descriptor(e_m.hided_mages, 8, 0, 17, 'CreatorOfWidows', false, '782774046&show_for_all=df8e054195', 'first'),
    new Descriptor(e_m.robbers_leader, 8, 0, 17, 'CreatorOfWidows', true, '782772563&show_for_all=9bffbc35f8', 'first'),
    new Descriptor(e_m.two_heroes, 8, 0, 17, 'CreatorOfWidows', true, '782747794&show_for_all=62f95fc5ac', 'first'),
    new Descriptor(e_m.three_thieves, 8, 0, 17, 'CreatorOfWidows', true, '782745256&show_for_all=5f1968136c', 'first'),
    new Descriptor(e_m.boarding, 8, 0, 17, 'CreatorOfWidows', true, '782744064&show_for_all=3cef6f7acd', 'first'),
    new Descriptor(e_m.fight_for_ship, 8, 0, 17, 'CreatorOfWidows', true, '782743689&show_for_all=ff61e3e850', 'first'),
    new Descriptor(e_m.hermit, 8, 0, 17, 'CreatorOfWidows', true, '782742025&show_for_all=c54823194e', 'first'),
    new Descriptor(e_m.monastery_cellar, 8, 0, 17, 'CreatorOfWidows', true, '782740875&show_for_all=031920f836', 'first'),
    new Descriptor(e_m.forest_keeper, 8, 0, 17, 'CreatorOfWidows', true, '782739982&show_for_all=0b663cda47', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'CreatorOfWidows', true, '782737659&show_for_all=a5d8ecade9', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'CreatorOfWidows', false, '782737286&show_for_all=00f44f1b43', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'CreatorOfWidows', false, '782736594&show_for_all=fefb6c7bbb', 'first'),
    new Descriptor(e_m.savage_treant, 8, 0, 17, 'CreatorOfWidows', false, '782736202&show_for_all=72118ae312', 'first'),
    new Descriptor(e_m.empire_guards, 8, 0, 17, 'CreatorOfWidows', true, '782734889&show_for_all=050590fe53', 'first'),
    new Descriptor(e_m.amphibian_hero, 8, 0, 17, 'CreatorOfWidows', true, '782708197&show_for_all=80c3e954c7', 'first'),
    new Descriptor(e_m.dt_hero, 8, 0, 17, 'CreatorOfWidows', true, '782703182&show_for_all=c728a25910', 'first'),
    new Descriptor(e_m.knight_hero, 8, 0, 17, 'CreatorOfWidows', true, '782702563&show_for_all=71d037de68', 'first'),
    new Descriptor(e_m.elven_hero, 8, 0, 17, 'CreatorOfWidows', true, '782699981&show_for_all=4f92ca2b7c', 'first'),
    new Descriptor(e_m.last_fight, 2, 1, 17, 'CreatorOfWidows', true, '781707827&show_for_all=feaddb5d2d', 'first'),
    new Descriptor(e_m.hided_mages, 2, 1, 17, 'CreatorOfWidows', true, '781706097&show_for_all=6b731ae1fa', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 17, 'CreatorOfWidows', true, '781693737&show_for_all=2bb2366d6f', 'first'),
    new Descriptor(e_m.three_thieves, 2, 1, 17, 'CreatorOfWidows', false, '781693038&show_for_all=95770567fe', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'CreatorOfWidows', true, '781692011&show_for_all=cac8767b6c', 'first'),
    new Descriptor(e_m.boarding, 2, 1, 17, 'CreatorOfWidows', false, '781691552&show_for_all=df6c70aa2c', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 1, 17, 'CreatorOfWidows', true, '781690795&show_for_all=6102d3c544', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 1, 17, 'CreatorOfWidows', true, '781689879&show_for_all=66f9984bc7', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 1, 17, 'CreatorOfWidows', true, '781688756&show_for_all=f05a28cec5', 'first'),
    new Descriptor(e_m.hermit, 2, 1, 17, 'CreatorOfWidows', true, '781687571&show_for_all=92148206d5', 'first'),
    new Descriptor(e_m.empire_guards, 2, 1, 17, 'CreatorOfWidows', true, '781684350&show_for_all=7063305c52', 'first'),
    new Descriptor(e_m.savage_treant, 2, 1, 17, 'CreatorOfWidows', true, '781683664&show_for_all=60ad2558c7', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 1, 17, 'CreatorOfWidows', true, '781679195&show_for_all=f814416855', 'first'),
    new Descriptor(e_m.dt_hero, 2, 1, 17, 'CreatorOfWidows', true, '781678300&show_for_all=0873dc771e', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'CreatorOfWidows', true, '781676812&show_for_all=ceb54ac85b', 'first'),
    new Descriptor(e_m.knight_hero, 2, 1, 17, 'CreatorOfWidows', false, '781675875&show_for_all=387bb82a92', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'CreatorOfWidows', true, '781673703&show_for_all=f5f82b2295', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'CreatorOfWidows', false, '781668978&show_for_all=50c9def3d7', 'first'),
    new Descriptor(e_m.elven_hero, 2, 1, 17, 'CreatorOfWidows', false, '781667644&show_for_all=8e5f4c0a28', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'CreatorOfWidows', true, '781644435&show_for_all=0791e88f79', 'first'),
    new Descriptor(e_m.last_fight, 2, 0, 17, 'CreatorOfWidows', true, '781529997&show_for_all=14e5bcaf71', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 17, 'CreatorOfWidows', true, '781527881&show_for_all=a27c7ee1ec', 'first'),
    new Descriptor(e_m.arsenal, 2, 0, 17, 'CreatorOfWidows', false, '781527128&show_for_all=1116c632b5', 'first'),
    new Descriptor(e_m.robbers_leader, 2, 0, 17, 'CreatorOfWidows', true, '781526110&show_for_all=2ff616c039', 'first'),
    new Descriptor(e_m.two_heroes, 2, 0, 17, 'CreatorOfWidows', true, '781524333&show_for_all=66263e3fd1', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'CreatorOfWidows', true, '781522582&show_for_all=ad95178ddd', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'CreatorOfWidows', false, '781521406&show_for_all=ca58d51734', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'CreatorOfWidows', false, '781520588&show_for_all=c5ee819fca', 'first'),
    new Descriptor(e_m.three_thieves, 2, 0, 17, 'CreatorOfWidows', false, '781519361&show_for_all=e0e39c990f', 'first'),
    new Descriptor(e_m.boarding, 2, 0, 17, 'CreatorOfWidows', true, '781514153&show_for_all=b61cecf63c', 'first'),
    new Descriptor(e_m.fight_for_ship, 2, 0, 17, 'CreatorOfWidows', true, '781513593&show_for_all=48b60f6782', 'first'),
    new Descriptor(e_m.hided_dragons, 2, 0, 17, 'CreatorOfWidows', true, '781511867&show_for_all=81fd0c88a5', 'first'),
    new Descriptor(e_m.hided_mages, 2, 0, 17, 'CreatorOfWidows', true, '781510166&show_for_all=58639376c9', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 17, 'CreatorOfWidows', true, '781494942&show_for_all=e443748655', 'first'),
    new Descriptor(e_m.hermit, 2, 0, 17, 'CreatorOfWidows', false, '781494430&show_for_all=d697250d2d', 'first'),
    new Descriptor(e_m.monastery_cellar, 2, 0, 17, 'CreatorOfWidows', true, '781489086&show_for_all=d72835410a', 'first'),
    new Descriptor(e_m.forest_keeper, 2, 0, 17, 'CreatorOfWidows', true, '781488190&show_for_all=0a00bdd2b5', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'CreatorOfWidows', true, '781485402&show_for_all=4168bc1081', 'first'),
    new Descriptor(e_m.empire_guards, 2, 0, 17, 'CreatorOfWidows', false, '781483351&show_for_all=6a0f3924bd', 'first'),
    new Descriptor(e_m.savage_treant, 2, 0, 17, 'CreatorOfWidows', true, '781482627&show_for_all=49de7214eb', 'first'),
    new Descriptor(e_m.amphibian_hero, 2, 0, 17, 'CreatorOfWidows', true, '781481200&show_for_all=29511edb6e', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'CreatorOfWidows', true, '781479921&show_for_all=0325c178ab', 'first'),
    new Descriptor(e_m.dt_hero, 2, 0, 17, 'CreatorOfWidows', false, '781478837&show_for_all=a3a06c0f81', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'CreatorOfWidows', true, '781476073&show_for_all=82f06532ba', 'first'),
    new Descriptor(e_m.knight_hero, 2, 0, 17, 'CreatorOfWidows', false, '781471160&show_for_all=dfda87ef32', 'first'),
    new Descriptor(e_m.elven_hero, 2, 0, 17, 'CreatorOfWidows', true, '781469807&show_for_all=76268c3f13', 'first'),
    new Descriptor(e_m.last_fight, 3, 0, 17, 'CreatorOfWidows', true, '780398473&show_for_all=40aaea2d9a', 'first'),
    new Descriptor(e_m.arsenal, 3, 0, 17, 'CreatorOfWidows', true, '780397061&show_for_all=0bc372b78f', 'first'),
    new Descriptor(e_m.robbers_leader, 3, 0, 17, 'CreatorOfWidows', true, '780395523&show_for_all=47e8040785', 'first'),
    new Descriptor(e_m.two_heroes, 3, 0, 17, 'CreatorOfWidows', true, '780393974&show_for_all=35e784bf3d', 'first'),
    new Descriptor(e_m.three_thieves, 3, 0, 17, 'CreatorOfWidows', true, '780392492&show_for_all=a844b4038e', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 17, 'CreatorOfWidows', true, '780391160&show_for_all=54052c6307', 'first'),
    new Descriptor(e_m.boarding, 3, 0, 17, 'CreatorOfWidows', false, '780390108&show_for_all=ed1baf7a4d', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 17, 'CreatorOfWidows', true, '780389541&show_for_all=de3fd71be6', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 0, 17, 'CreatorOfWidows', false, '780389090&show_for_all=0ec0a892b1', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 17, 'CreatorOfWidows', true, '780387629&show_for_all=37175f9d8d', 'first'),
    new Descriptor(e_m.hermit, 3, 0, 17, 'CreatorOfWidows', false, '780385699&show_for_all=70c4def211', 'first'),
    new Descriptor(e_m.empire_guards, 3, 0, 17, 'CreatorOfWidows', true, '780384123&show_for_all=2842247e58', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 17, 'CreatorOfWidows', true, '780378333&show_for_all=0aa00075c8', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 0, 17, 'CreatorOfWidows', false, '780377159&show_for_all=27e60260fb', 'first'),
    new Descriptor(e_m.hided_mages, 3, 0, 17, 'CreatorOfWidows', true, '780376577&show_for_all=c7233b975e', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 0, 17, 'CreatorOfWidows', true, '780374642&show_for_all=578b765a67', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 17, 'CreatorOfWidows', true, '780373386&show_for_all=032aa244d3', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 17, 'CreatorOfWidows', false, '780372679&show_for_all=719f7de6bd', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 17, 'CreatorOfWidows', false, '780371792&show_for_all=fa2817ed6d', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 0, 17, 'CreatorOfWidows', false, '780371499&show_for_all=9b74863e39', 'first'),
    new Descriptor(e_m.savage_treant, 3, 0, 17, 'CreatorOfWidows', true, '780370350&show_for_all=2873fc23f5', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 0, 17, 'CreatorOfWidows', true, '780368685&show_for_all=e7c12df572', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 17, 'CreatorOfWidows', true, '780365402&show_for_all=e17549a49d', 'first'),
    new Descriptor(e_m.dt_hero, 3, 0, 17, 'CreatorOfWidows', false, '780364914&show_for_all=abc2341686', 'first'),
    new Descriptor(e_m.elven_hero, 3, 0, 17, 'CreatorOfWidows', true, '780363625&show_for_all=31df01347f', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'CreatorOfWidows', true, '780356407&show_for_all=d0ebe0fc9c', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'CreatorOfWidows', false, '780353811&show_for_all=57f752808f', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'CreatorOfWidows', false, '780351799&show_for_all=0fb0cc4812', 'first'),
    new Descriptor(e_m.knight_hero, 3, 0, 17, 'CreatorOfWidows', false, '780350506&show_for_all=a30f13cd81', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', true, '780208372&show_for_all=fc45eee49f', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', false, '780207699&show_for_all=645db9f62f', 'first'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', false, '780207387&show_for_all=6b59e315d5', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 17, 'CreatorOfWidows', true, '780206176&show_for_all=52428d6d70', 'first'),
    new Descriptor(e_m.arsenal, 3, 1, 17, 'CreatorOfWidows', false, '780206002&show_for_all=6ea236b599', 'first'),
    new Descriptor(e_m.two_heroes, 3, 1, 17, 'CreatorOfWidows', true, '780202622&show_for_all=1f43e5d2b6', 'first'),
    new Descriptor(e_m.three_thieves, 3, 1, 17, 'CreatorOfWidows', true, '780201459&show_for_all=eba11dd6ee', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'CreatorOfWidows', true, '780198338&show_for_all=91f974df0b', 'first'),
    new Descriptor(e_m.boarding, 3, 1, 17, 'CreatorOfWidows', false, '780197703&show_for_all=2ac5410544', 'first'),
    new Descriptor(e_m.fight_for_ship, 3, 1, 17, 'CreatorOfWidows', true, '780197467&show_for_all=327e8019b9', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 17, 'CreatorOfWidows', true, '780196861&show_for_all=3797a58096', 'first'),
    new Descriptor(e_m.hermit, 3, 1, 17, 'CreatorOfWidows', false, '780196521&show_for_all=19b6427001', 'first'),
    new Descriptor(e_m.empire_guards, 3, 1, 17, 'CreatorOfWidows', true, '780190013&show_for_all=7bb0bb1f34', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'CreatorOfWidows', true, '780183997&show_for_all=670a77daf2', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'CreatorOfWidows', false, '780183572&show_for_all=9bf4757088', 'first'),
    new Descriptor(e_m.hided_dragons, 3, 1, 17, 'CreatorOfWidows', false, '780183272&show_for_all=ab454446a3', 'first'),
    new Descriptor(e_m.hided_mages, 3, 1, 17, 'CreatorOfWidows', true, '780182830&show_for_all=899a63a422', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'CreatorOfWidows', true, '780181927&show_for_all=d3eca6d4f3', 'first'),
    new Descriptor(e_m.monastery_cellar, 3, 1, 17, 'CreatorOfWidows', false, '780181600&show_for_all=00412a2c53', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'CreatorOfWidows', true, '780180885&show_for_all=5ef4eebe1e', 'first'),
    new Descriptor(e_m.forest_keeper, 3, 1, 17, 'CreatorOfWidows', false, '780180431&show_for_all=b962934171', 'first'),
    new Descriptor(e_m.savage_treant, 3, 1, 17, 'CreatorOfWidows', true, '780179693&show_for_all=71e9de1b9b', 'first'),
    new Descriptor(e_m.amphibian_hero, 3, 1, 17, 'CreatorOfWidows', true, '780178577&show_for_all=5c82a6d3ba', 'first'),
    new Descriptor(e_m.dt_hero, 3, 1, 17, 'CreatorOfWidows', true, '780173168&show_for_all=dc57fd488e', 'first'),
    new Descriptor(e_m.knight_hero, 3, 1, 17, 'CreatorOfWidows', true, '780172177&show_for_all=8b43eb4d79', 'first'),
    new Descriptor(e_m.elven_hero, 3, 1, 17, 'CreatorOfWidows', true, '780171596&show_for_all=77efdac7e6', 'first'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'CreatorOfWidows', true, '778983900&show_for_all=0752e0c9c3', 'first'),
    new Descriptor(e_m.arsenal, 9, 0, 17, 'CreatorOfWidows', true, '778981508&show_for_all=565d4c355a', 'first'),
    new Descriptor(e_m.two_heroes, 9, 0, 17, 'CreatorOfWidows', true, '778979692&show_for_all=871be326f2', 'first'),
    new Descriptor(e_m.three_thieves, 9, 0, 17, 'CreatorOfWidows', true, '778921963&show_for_all=786840e7e7', 'first'),
    new Descriptor(e_m.boarding, 9, 0, 17, 'CreatorOfWidows', true, '778921400&show_for_all=9bca56c90c', 'first'),
    new Descriptor(e_m.fight_for_ship, 9, 0, 17, 'CreatorOfWidows', true, '778920376&show_for_all=f6b5f39c15', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 17, 'CreatorOfWidows', true, '778919871&show_for_all=a7b53a2bf5', 'first'),
    new Descriptor(e_m.hermit, 9, 0, 17, 'CreatorOfWidows', false, '778919403&show_for_all=472f5fd76c', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'CreatorOfWidows', true, '778916860&show_for_all=0186a6b47b', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'CreatorOfWidows', false, '778916693&show_for_all=f5809d3b15', 'first'),
    new Descriptor(e_m.empire_guards, 9, 0, 17, 'CreatorOfWidows', false, '778916390&show_for_all=aec335a814', 'first'),
    new Descriptor(e_m.hided_dragons, 9, 0, 17, 'CreatorOfWidows', true, '778897266&show_for_all=72a380e9ca', 'first'),
    new Descriptor(e_m.hided_mages, 9, 0, 17, 'CreatorOfWidows', true, '778884375&show_for_all=fe13cf27cd', 'first'),
    new Descriptor(e_m.monastery_cellar, 9, 0, 17, 'CreatorOfWidows', true, '778876430&show_for_all=98b64dabbc', 'first'),
    new Descriptor(e_m.forest_keeper, 9, 0, 17, 'CreatorOfWidows', true, '778875290&show_for_all=898654ad3c', 'first'),
    new Descriptor(e_m.savage_treant, 9, 0, 17, 'CreatorOfWidows', true, '778857899&show_for_all=ff43f075b3', 'first'),
    new Descriptor(e_m.amphibian_hero, 9, 0, 17, 'CreatorOfWidows', true, '778854380&show_for_all=cd7fa317ea', 'first'),
    new Descriptor(e_m.dt_hero, 9, 0, 17, 'CreatorOfWidows', true, '778838710&show_for_all=1473b16728', 'first'),
    new Descriptor(e_m.knight_hero, 9, 0, 17, 'CreatorOfWidows', true, '778837814&show_for_all=c117249ffc', 'first'),
    new Descriptor(e_m.elven_hero, 9, 0, 17, 'CreatorOfWidows', true, '778836776&show_for_all=5582aa4eaa', 'first'),
    new Descriptor(e_m.last_fight, 7, 1, 17, 'CreatorOfWidows', true, '777950223&show_for_all=bd3b204f35', 'first'),
    new Descriptor(e_m.arsenal, 7, 1, 17, 'CreatorOfWidows', true, '777948785&show_for_all=a254b29bd2', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 1, 17, 'CreatorOfWidows', true, '777944954&show_for_all=8a8de757b8', 'first'),
    new Descriptor(e_m.two_heroes, 7, 1, 17, 'CreatorOfWidows', true, '777941044&show_for_all=693fa6e426', 'first'),
    new Descriptor(e_m.three_thieves, 7, 1, 17, 'CreatorOfWidows', true, '777939661&show_for_all=92a9558ec6', 'first'),
    new Descriptor(e_m.boarding, 7, 1, 17, 'CreatorOfWidows', true, '777938562&show_for_all=94f9fdab1e', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 17, 'CreatorOfWidows', false, '777863368&show_for_all=56cff73764', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 1, 17, 'CreatorOfWidows', true, '777862822&show_for_all=0e810b43bc', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 17, 'CreatorOfWidows', true, '777859176&show_for_all=d8749a3c2c', 'first'),
    new Descriptor(e_m.hermit, 7, 1, 17, 'CreatorOfWidows', false, '777858334&show_for_all=17388519c7', 'first'),
    new Descriptor(e_m.empire_guards, 7, 1, 17, 'CreatorOfWidows', true, '777856715&show_for_all=a207e038d4', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 1, 17, 'CreatorOfWidows', true, '777841855&show_for_all=ece97d7d61', 'first'),
    new Descriptor(e_m.hided_mages, 7, 1, 17, 'CreatorOfWidows', true, '777840593&show_for_all=fe53d7e466', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 1, 17, 'CreatorOfWidows', true, '777832651&show_for_all=54b8fe3bbc', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 1, 17, 'CreatorOfWidows', true, '777830950&show_for_all=a7c5bb3ed5', 'first'),
    new Descriptor(e_m.savage_treant, 7, 1, 17, 'CreatorOfWidows', true, '777821782&show_for_all=4a88349b10', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 1, 17, 'CreatorOfWidows', true, '777820789&show_for_all=72d4bb36c0', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 17, 'CreatorOfWidows', true, '777818819&show_for_all=be89e00542', 'first'),
    new Descriptor(e_m.dt_hero, 7, 1, 17, 'CreatorOfWidows', false, '777715755&show_for_all=af24adb503', 'first'),
    new Descriptor(e_m.knight_hero, 7, 1, 17, 'CreatorOfWidows', true, '777714836&show_for_all=0ba4f85f32', 'first'),
    new Descriptor(e_m.elven_hero, 7, 1, 17, 'CreatorOfWidows', true, '777708994&show_for_all=fed16644dd', 'first'),
    new Descriptor(e_m.last_fight, 7, 0, 17, 'CreatorOfWidows', true, '777428703&show_for_all=fa18ddd556', 'first'),
    new Descriptor(e_m.arsenal, 7, 0, 17, 'CreatorOfWidows', true, '777425501&show_for_all=84bdf78b25', 'first'),
    new Descriptor(e_m.robbers_leader, 7, 0, 17, 'CreatorOfWidows', true, '777423581&show_for_all=c22cfb469d', 'first'),
    new Descriptor(e_m.two_heroes, 7, 0, 17, 'CreatorOfWidows', true, '777416677&show_for_all=4818ca8e36', 'first'),
    new Descriptor(e_m.three_thieves, 7, 0, 17, 'CreatorOfWidows', true, '777415297&show_for_all=afc68f9c7c', 'first'),
    new Descriptor(e_m.boarding, 7, 0, 17, 'CreatorOfWidows', true, '777414088&show_for_all=a0586ca04f', 'first'),
    new Descriptor(e_m.fight_for_ship, 7, 0, 17, 'CreatorOfWidows', true, '777413715&show_for_all=9f808e6ed8', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 17, 'CreatorOfWidows', true, '777412991&show_for_all=bc007f594e', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 17, 'CreatorOfWidows', false, '777412817&show_for_all=733c3cd330', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 17, 'CreatorOfWidows', false, '777412213&show_for_all=713ac96cc8', 'first'),
    new Descriptor(e_m.hermit, 7, 0, 17, 'CreatorOfWidows', false, '777411000&show_for_all=f241282a46', 'first'),
    new Descriptor(e_m.empire_guards, 7, 0, 17, 'CreatorOfWidows', true, '777408310&show_for_all=24dae15702', 'first'),
    new Descriptor(e_m.hided_dragons, 7, 0, 17, 'CreatorOfWidows', true, '777406832&show_for_all=8424e15c85', 'first'),
    new Descriptor(e_m.hided_mages, 7, 0, 17, 'CreatorOfWidows', true, '777405837&show_for_all=54e27a4c1a', 'first'),
    new Descriptor(e_m.monastery_cellar, 7, 0, 17, 'CreatorOfWidows', true, '777404184&show_for_all=45395b235b', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 17, 'CreatorOfWidows', true, '777402124&show_for_all=a0eb92899e', 'first'),
    new Descriptor(e_m.forest_keeper, 7, 0, 17, 'CreatorOfWidows', false, '777400459&show_for_all=c293a50e12', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 17, 'CreatorOfWidows', true, '777398661&show_for_all=cd653c03ad', 'first'),
    new Descriptor(e_m.savage_treant, 7, 0, 17, 'CreatorOfWidows', false, '777397485&show_for_all=5033ce64ff', 'first'),
    new Descriptor(e_m.amphibian_hero, 7, 0, 17, 'CreatorOfWidows', true, '777394308&show_for_all=5183b3a9c8', 'first'),
    new Descriptor(e_m.dt_hero, 7, 0, 17, 'CreatorOfWidows', true, '777391875&show_for_all=7ff915de66', 'first'),
    new Descriptor(e_m.knight_hero, 7, 0, 17, 'CreatorOfWidows', true, '777377125&show_for_all=90b5a0ff10', 'first'),
    new Descriptor(e_m.elven_hero, 7, 0, 17, 'CreatorOfWidows', true, '777375741&show_for_all=2e0837dd59', 'first'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'CreatorOfWidows', true, '776980755&show_for_all=c01bd8ded9', 'first'),
    new Descriptor(e_m.arsenal, 1, 1, 17, 'CreatorOfWidows', true, '776979372&show_for_all=fb313eebf3', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 17, 'CreatorOfWidows', true, '776978236&show_for_all=9b5d30d88c', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 1, 17, 'CreatorOfWidows', false, '776977281&show_for_all=d5e3f321a2', 'first'),
    new Descriptor(e_m.two_heroes, 1, 1, 17, 'CreatorOfWidows', true, '776976526&show_for_all=370df6535d', 'first'),
    new Descriptor(e_m.three_thieves, 1, 1, 17, 'CreatorOfWidows', true, '776975408&show_for_all=46d9447a67', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 17, 'CreatorOfWidows', true, '776973792&show_for_all=ea98888e58', 'first'),
    new Descriptor(e_m.boarding, 1, 1, 17, 'CreatorOfWidows', false, '776971133&show_for_all=1788542c86', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 1, 17, 'CreatorOfWidows', true, '776943004&show_for_all=8de834ba15', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'CreatorOfWidows', true, '776942057&show_for_all=cf0b006c11', 'first'),
    new Descriptor(e_m.hermit, 1, 1, 17, 'CreatorOfWidows', false, '776941412&show_for_all=07205368f3', 'first'),
    new Descriptor(e_m.empire_guards, 1, 1, 17, 'CreatorOfWidows', true, '776940046&show_for_all=e4e87bc5bc', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 1, 17, 'CreatorOfWidows', true, '776939079&show_for_all=c0587b7f12', 'first'),
    new Descriptor(e_m.hided_mages, 1, 1, 17, 'CreatorOfWidows', true, '776938325&show_for_all=19b6ed6f3b', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 1, 17, 'CreatorOfWidows', true, '776937202&show_for_all=8351f92934', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 1, 17, 'CreatorOfWidows', true, '776936066&show_for_all=832bfaaa68', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'CreatorOfWidows', true, '776935495&show_for_all=dff81e7eab', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'CreatorOfWidows', false, '776934768&show_for_all=7182a8d153', 'first'),
    new Descriptor(e_m.savage_treant, 1, 1, 17, 'CreatorOfWidows', false, '776934406&show_for_all=2624f4d16f', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 1, 17, 'CreatorOfWidows', true, '776933443&show_for_all=3a2aee10c7', 'first'),
    new Descriptor(e_m.dt_hero, 1, 1, 17, 'CreatorOfWidows', true, '776932684&show_for_all=e0586a8be1', 'first'),
    new Descriptor(e_m.knight_hero, 1, 1, 17, 'CreatorOfWidows', true, '776931866&show_for_all=fadcb7cb16', 'first'),
    new Descriptor(e_m.elven_hero, 1, 1, 17, 'CreatorOfWidows', true, '776930903&show_for_all=5fa744e079', 'first'),
    new Descriptor(e_m.last_fight, 1, 0, 17, 'CreatorOfWidows', true, '776753893&show_for_all=f166ebf156', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 17, 'CreatorOfWidows', true, '776752858&show_for_all=a60f17d396', 'first'),
    new Descriptor(e_m.arsenal, 1, 0, 17, 'CreatorOfWidows', false, '776752519&show_for_all=2fe7455d85', 'first'),
    new Descriptor(e_m.robbers_leader, 1, 0, 17, 'CreatorOfWidows', true, '776751866&show_for_all=d3113f4789', 'first'),
    new Descriptor(e_m.two_heroes, 1, 0, 17, 'CreatorOfWidows', true, '776751113&show_for_all=9ca00073d7', 'first'),
    new Descriptor(e_m.three_thieves, 1, 0, 17, 'CreatorOfWidows', true, '776749837&show_for_all=a34b1edea2', 'first'),
    new Descriptor(e_m.boarding, 1, 0, 17, 'CreatorOfWidows', true, '776748863&show_for_all=22eb2ba9e0', 'first'),
    new Descriptor(e_m.fight_for_ship, 1, 0, 17, 'CreatorOfWidows', true, '776748169&show_for_all=8d8dc70f7a', 'first'),
    new Descriptor(e_m.hermit, 1, 0, 17, 'CreatorOfWidows', true, '776747412&show_for_all=17f60797e9', 'first'),
    new Descriptor(e_m.empire_guards, 1, 0, 17, 'CreatorOfWidows', true, '776746754&show_for_all=9f98486ca1', 'first'),
    new Descriptor(e_m.hided_dragons, 1, 0, 17, 'CreatorOfWidows', true, '776745827&show_for_all=550f8de857', 'first'),
    new Descriptor(e_m.hided_mages, 1, 0, 17, 'CreatorOfWidows', true, '776745151&show_for_all=fe05760fc5', 'first'),
    new Descriptor(e_m.monastery_cellar, 1, 0, 17, 'CreatorOfWidows', true, '776744573&show_for_all=3ec71f0e18', 'first'),
    new Descriptor(e_m.forest_keeper, 1, 0, 17, 'CreatorOfWidows', true, '776743465&show_for_all=ce70554d79', 'first'),
    new Descriptor(e_m.savage_treant, 1, 0, 17, 'CreatorOfWidows', true, '776742940&show_for_all=b330e2f6c4', 'first'),
    new Descriptor(e_m.amphibian_hero, 1, 0, 17, 'CreatorOfWidows', true, '776741826&show_for_all=3259aa9da2', 'first'),
    new Descriptor(e_m.dt_hero, 1, 0, 17, 'CreatorOfWidows', true, '776741255&show_for_all=0c83f4f593', 'first'),
    new Descriptor(e_m.knight_hero, 1, 0, 17, 'CreatorOfWidows', true, '776740641&show_for_all=df3bcc026e', 'first'),
    new Descriptor(e_m.elven_hero, 1, 0, 17, 'CreatorOfWidows', true, '776739517&show_for_all=9ef03a63bb', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'CreatorOfWidows', true, '776463011&show_for_all=85ae0fc222', 'first'),
    new Descriptor(e_m.arsenal, 5, 2, 17, 'CreatorOfWidows', true, '776462257&show_for_all=319f2a5c53', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 2, 17, 'CreatorOfWidows', true, '776461318&show_for_all=4f6dd39c3a', 'first'),
    new Descriptor(e_m.two_heroes, 5, 2, 17, 'CreatorOfWidows', true, '776460746&show_for_all=e6b116537a', 'first'),
    new Descriptor(e_m.three_thieves, 5, 2, 17, 'CreatorOfWidows', true, '776460111&show_for_all=7a12c902ba', 'first'),
    new Descriptor(e_m.boarding, 5, 2, 17, 'CreatorOfWidows', true, '776459272&show_for_all=be3af05ce3', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 2, 17, 'CreatorOfWidows', true, '776458822&show_for_all=ea15a79981', 'first'),
    new Descriptor(e_m.hermit, 5, 2, 17, 'CreatorOfWidows', true, '776458042&show_for_all=65d020b65f', 'first'),
    new Descriptor(e_m.empire_guards, 5, 2, 17, 'CreatorOfWidows', true, '776457201&show_for_all=fffea14458', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 2, 17, 'CreatorOfWidows', true, '776456653&show_for_all=cfc5db8379', 'first'),
    new Descriptor(e_m.hided_mages, 5, 2, 17, 'CreatorOfWidows', true, '776455740&show_for_all=305bcbb4c9', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 2, 17, 'CreatorOfWidows', true, '776454960&show_for_all=6dc8445c51', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 2, 17, 'CreatorOfWidows', true, '776454201&show_for_all=af3c7d04e3', 'first'),
    new Descriptor(e_m.savage_treant, 5, 2, 17, 'CreatorOfWidows', true, '776453583&show_for_all=532428290f', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 2, 17, 'CreatorOfWidows', true, '776452806&show_for_all=f944ee1c73', 'first'),
    new Descriptor(e_m.dt_hero, 5, 2, 17, 'CreatorOfWidows', true, '776450451&show_for_all=30841c7144', 'first'),
    new Descriptor(e_m.knight_hero, 5, 2, 17, 'CreatorOfWidows', true, '776450039&show_for_all=2ed4f92f62', 'first'),
    new Descriptor(e_m.elven_hero, 5, 2, 17, 'CreatorOfWidows', true, '776449424&show_for_all=a6cc1426ce', 'first'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', true, '776448445&show_for_all=5bf88dc548', 'first'),
    new Descriptor(e_m.arsenal, 5, 1, 17, 'CreatorOfWidows', true, '776447592&show_for_all=fdb5ada345', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 1, 17, 'CreatorOfWidows', true, '776446616&show_for_all=9ee8ae4246', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'CreatorOfWidows', true, '776446107&show_for_all=a89f5bc52c', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'CreatorOfWidows', false, '776445577&show_for_all=3e9c4e85cc', 'first'),
    new Descriptor(e_m.two_heroes, 5, 1, 17, 'CreatorOfWidows', false, '776444969&show_for_all=5a729967a4', 'first'),
    new Descriptor(e_m.three_thieves, 5, 1, 17, 'CreatorOfWidows', true, '776443871&show_for_all=f05bb9bef4', 'first'),
    new Descriptor(e_m.boarding, 5, 1, 17, 'CreatorOfWidows', true, '776443426&show_for_all=ce9bb50cf9', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 1, 17, 'CreatorOfWidows', true, '776443174&show_for_all=30f66448f5', 'first'),
    new Descriptor(e_m.hermit, 5, 1, 17, 'CreatorOfWidows', true, '776442314&show_for_all=7b3b126578', 'first'),
    new Descriptor(e_m.empire_guards, 5, 1, 17, 'CreatorOfWidows', true, '776441499&show_for_all=b10ed00ae6', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 1, 17, 'CreatorOfWidows', true, '776440315&show_for_all=667a90ed67', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 17, 'CreatorOfWidows', true, '776439190&show_for_all=3ff0c054f3', 'first'),
    new Descriptor(e_m.hided_mages, 5, 1, 17, 'CreatorOfWidows', false, '776438395&show_for_all=4cd70783c1', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 1, 17, 'CreatorOfWidows', true, '776437175&show_for_all=8718c34be7', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 1, 17, 'CreatorOfWidows', true, '776436395&show_for_all=2f679cf30f', 'first'),
    new Descriptor(e_m.savage_treant, 5, 1, 17, 'CreatorOfWidows', true, '776435389&show_for_all=105c002023', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'CreatorOfWidows', true, '776434601&show_for_all=f1ce605ad0', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'CreatorOfWidows', false, '776434045&show_for_all=f0c07d8295', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'CreatorOfWidows', false, '776433205&show_for_all=0c67d5f78b', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'CreatorOfWidows', false, '776432759&show_for_all=2400a52707', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'CreatorOfWidows', false, '776432349&show_for_all=db41394ca1', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 1, 17, 'CreatorOfWidows', false, '776431835&show_for_all=8e3ebd04e4', 'first'),
    new Descriptor(e_m.dt_hero, 5, 1, 17, 'CreatorOfWidows', true, '776431086&show_for_all=a4564b32cd', 'first'),
    new Descriptor(e_m.knight_hero, 5, 1, 17, 'CreatorOfWidows', true, '776430531&show_for_all=09cfe236d2', 'first'),
    new Descriptor(e_m.elven_hero, 5, 1, 17, 'CreatorOfWidows', true, '776429905&show_for_all=82cb91cea8', 'first'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'CreatorOfWidows', true, '775807522&show_for_all=c940e5be73', 'first'),
    new Descriptor(e_m.arsenal, 6, 0, 17, 'CreatorOfWidows', true, '775805368&show_for_all=d20a070d58', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'CreatorOfWidows', true, '775803953&show_for_all=3f3f741224', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'CreatorOfWidows', false, '775803179&show_for_all=6e518fede5', 'first'),
    new Descriptor(e_m.robbers_leader, 6, 0, 17, 'CreatorOfWidows', false, '775802874&show_for_all=4af2e493ff', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 17, 'CreatorOfWidows', true, '775801935&show_for_all=4b849779f5', 'first'),
    new Descriptor(e_m.two_heroes, 6, 0, 17, 'CreatorOfWidows', false, '775801134&show_for_all=2b3b1fcef9', 'first'),
    new Descriptor(e_m.three_thieves, 6, 0, 17, 'CreatorOfWidows', true, '775799069&show_for_all=ca02ed0f0b', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'CreatorOfWidows', true, '775791398&show_for_all=ac007e5f2c', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'CreatorOfWidows', false, '775790538&show_for_all=26585601b9', 'first'),
    new Descriptor(e_m.boarding, 6, 0, 17, 'CreatorOfWidows', false, '775790278&show_for_all=327cdce31b', 'first'),
    new Descriptor(e_m.fight_for_ship, 6, 0, 17, 'CreatorOfWidows', true, '775789482&show_for_all=c969586cd8', 'first'),
    new Descriptor(e_m.hermit, 6, 0, 17, 'CreatorOfWidows', true, '775788818&show_for_all=b3d4f1bcaf', 'first'),
    new Descriptor(e_m.empire_guards, 6, 0, 17, 'CreatorOfWidows', true, '775785691&show_for_all=46369d3972', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'CreatorOfWidows', true, '775784270&show_for_all=b4eba3c945', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'CreatorOfWidows', false, '775783180&show_for_all=bc8f2dc6c0', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'CreatorOfWidows', false, '775782622&show_for_all=7728368cd3', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'CreatorOfWidows', false, '775782030&show_for_all=8e80e0162b', 'first'),
    new Descriptor(e_m.hided_dragons, 6, 0, 17, 'CreatorOfWidows', false, '775775688&show_for_all=a42b0f766d', 'first'),
    new Descriptor(e_m.hided_mages, 6, 0, 17, 'CreatorOfWidows', true, '775774658&show_for_all=3d5a6037a8', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'CreatorOfWidows', true, '775773055&show_for_all=9754bea946', 'first'),
    new Descriptor(e_m.monastery_cellar, 6, 0, 17, 'CreatorOfWidows', false, '775772347&show_for_all=2e596b91dc', 'first'),
    new Descriptor(e_m.forest_keeper, 6, 0, 17, 'CreatorOfWidows', true, '775765373&show_for_all=adafc0114c', 'first'),
    new Descriptor(e_m.savage_treant, 6, 0, 17, 'CreatorOfWidows', true, '775764201&show_for_all=51e166e1e9', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'CreatorOfWidows', true, '775763052&show_for_all=ca1fddca98', 'first'),
    new Descriptor(e_m.amphibian_hero, 6, 0, 17, 'CreatorOfWidows', false, '775761901&show_for_all=995655f8fe', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'CreatorOfWidows', true, '775759804&show_for_all=4ce4032bd5', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'CreatorOfWidows', false, '775757762&show_for_all=56a6ab874d', 'first'),
    new Descriptor(e_m.dt_hero, 6, 0, 17, 'CreatorOfWidows', false, '775756319&show_for_all=7a81be6086', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 17, 'CreatorOfWidows', true, '775754882&show_for_all=02d255aa15', 'first'),
    new Descriptor(e_m.knight_hero, 6, 0, 17, 'CreatorOfWidows', false, '775754122&show_for_all=0a0ac60e51', 'first'),
    new Descriptor(e_m.elven_hero, 6, 0, 17, 'CreatorOfWidows', true, '775753414&show_for_all=fd66e4dd6b', 'first'),
    new Descriptor(e_m.last_fight, 4, 0, 17, 'CreatorOfWidows', true, '774437681&show_for_all=3f286dd2a9', 'first'),
    new Descriptor(e_m.arsenal, 4, 0, 17, 'CreatorOfWidows', true, '774436621&show_for_all=b86e39fe82', 'first'),
    new Descriptor(e_m.robbers_leader, 4, 0, 17, 'CreatorOfWidows', true, '774435733&show_for_all=242b77e7a9', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 17, 'CreatorOfWidows', true, '774434502&show_for_all=2cf8691fa4', 'first'),
    new Descriptor(e_m.two_heroes, 4, 0, 17, 'CreatorOfWidows', false, '774434030&show_for_all=622a5b10d0', 'first'),
    new Descriptor(e_m.three_thieves, 4, 0, 17, 'CreatorOfWidows', true, '774433043&show_for_all=a4eb29881a', 'first'),
    new Descriptor(e_m.boarding, 4, 0, 17, 'CreatorOfWidows', true, '774432084&show_for_all=3144826217', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 0, 17, 'CreatorOfWidows', true, '774431616&show_for_all=2d4485e3f8', 'first'),
    new Descriptor(e_m.hermit, 4, 0, 17, 'CreatorOfWidows', true, '774430759&show_for_all=364ca11514', 'first'),
    new Descriptor(e_m.empire_guards, 4, 0, 17, 'CreatorOfWidows', true, '774428263&show_for_all=4d76b977df', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 0, 17, 'CreatorOfWidows', true, '774427463&show_for_all=1687276b32', 'first'),
    new Descriptor(e_m.hided_mages, 4, 0, 17, 'CreatorOfWidows', true, '774426419&show_for_all=c6966f4ba5', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 0, 17, 'CreatorOfWidows', true, '774425218&show_for_all=f7fc3236c4', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 0, 17, 'CreatorOfWidows', true, '774424479&show_for_all=0cf910d297', 'first'),
    new Descriptor(e_m.savage_treant, 4, 0, 17, 'CreatorOfWidows', true, '774423557&show_for_all=0a69d8e9f5', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 0, 17, 'CreatorOfWidows', true, '774421545&show_for_all=2f83d53bbe', 'first'),
    new Descriptor(e_m.dt_hero, 4, 0, 17, 'CreatorOfWidows', true, '774420790&show_for_all=c2897dc4a7', 'first'),
    new Descriptor(e_m.knight_hero, 4, 0, 17, 'CreatorOfWidows', true, '774420200&show_for_all=472bd692f6', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 17, 'CreatorOfWidows', true, '774419545&show_for_all=0949f2803f', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 17, 'CreatorOfWidows', false, '774419288&show_for_all=d19fee6c03', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 17, 'CreatorOfWidows', false, '774418779&show_for_all=4ec3444c54', 'first'),
    new Descriptor(e_m.elven_hero, 4, 0, 17, 'CreatorOfWidows', false, '774418459&show_for_all=0614396850', 'first'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'CreatorOfWidows', true, '773022182&show_for_all=c7aec70ce7', 'first'),
    new Descriptor(e_m.arsenal, 4, 1, 17, 'CreatorOfWidows', true, '773020127&show_for_all=e9d9454ff1', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'CreatorOfWidows', true, '773019430&show_for_all=0d2cbb0db6', 'first'),
    new Descriptor(e_m.two_heroes, 4, 1, 17, 'CreatorOfWidows', true, '773018420&show_for_all=af515915f9', 'first'),
    new Descriptor(e_m.three_thieves, 4, 1, 17, 'CreatorOfWidows', true, '773017321&show_for_all=9f2d8145d0', 'first'),
    new Descriptor(e_m.boarding, 4, 1, 17, 'CreatorOfWidows', true, '773015995&show_for_all=3f020ad618', 'first'),
    new Descriptor(e_m.fight_for_ship, 4, 1, 17, 'CreatorOfWidows', true, '773015487&show_for_all=d15489fd01', 'first'),
    new Descriptor(e_m.hermit, 4, 1, 17, 'CreatorOfWidows', true, '773014507&show_for_all=af8bb9c9f8', 'first'),
    new Descriptor(e_m.empire_guards, 4, 1, 17, 'CreatorOfWidows', true, '773011809&show_for_all=c81eeeffb2', 'first'),
    new Descriptor(e_m.hided_dragons, 4, 1, 17, 'CreatorOfWidows', true, '773010625&show_for_all=f96b494c1e', 'first'),
    new Descriptor(e_m.hided_mages, 4, 1, 17, 'CreatorOfWidows', true, '773009817&show_for_all=9c6d2e5568', 'first'),
    new Descriptor(e_m.monastery_cellar, 4, 1, 17, 'CreatorOfWidows', true, '773006585&show_for_all=5da555ec46', 'first'),
    new Descriptor(e_m.forest_keeper, 4, 1, 17, 'CreatorOfWidows', true, '773005789&show_for_all=a6ea4bdae8', 'first'),
    new Descriptor(e_m.savage_treant, 4, 1, 17, 'CreatorOfWidows', true, '773003815&show_for_all=1f4c5631b2', 'first'),
    new Descriptor(e_m.amphibian_hero, 4, 1, 17, 'CreatorOfWidows', true, '773002694&show_for_all=09f24b6a8e', 'first'),
    new Descriptor(e_m.dt_hero, 4, 1, 17, 'CreatorOfWidows', true, '773002054&show_for_all=08f538b878', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'CreatorOfWidows', true, '773001428&show_for_all=82cf22a4fd', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'CreatorOfWidows', false, '772974383&show_for_all=17a0b548cb', 'first'),
    new Descriptor(e_m.elven_hero, 4, 1, 17, 'CreatorOfWidows', false, '772973793&show_for_all=cf56fa5297', 'first'),
    new Descriptor(e_m.knight_hero, 4, 1, 17, 'CreatorOfWidows', true, '772973336&show_for_all=f9971abf07', 'first'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'CreatorOfWidows', true, '762296772&show_for_all=19cd52f67a', 'first'),
    new Descriptor(e_m.arsenal, 5, 0, 17, 'CreatorOfWidows', true, '762294308&show_for_all=fd6428339f', 'first'),
    new Descriptor(e_m.robbers_leader, 5, 0, 17, 'CreatorOfWidows', true, '762292874&show_for_all=f5e852ccae', 'first'),
    new Descriptor(e_m.two_heroes, 5, 0, 17, 'CreatorOfWidows', true, '762291746&show_for_all=8ea227aa01', 'first'),
    new Descriptor(e_m.three_thieves, 5, 0, 17, 'CreatorOfWidows', true, '762290116&show_for_all=9ca86023c1', 'first'),
    new Descriptor(e_m.boarding, 5, 0, 17, 'CreatorOfWidows', true, '762287675&show_for_all=49b317aaf0', 'first'),
    new Descriptor(e_m.fight_for_ship, 5, 0, 17, 'CreatorOfWidows', true, '762286590&show_for_all=bae6aa5df8', 'first'),
    new Descriptor(e_m.hermit, 5, 0, 17, 'CreatorOfWidows', true, '762285190&show_for_all=d777264921', 'first'),
    new Descriptor(e_m.empire_guards, 5, 0, 17, 'CreatorOfWidows', true, '762269203&show_for_all=caaaa33b61', 'first'),
    new Descriptor(e_m.hided_dragons, 5, 0, 17, 'CreatorOfWidows', true, '762267692&show_for_all=d08256fe08', 'first'),
    new Descriptor(e_m.hided_mages, 5, 0, 17, 'CreatorOfWidows', true, '762266593&show_for_all=d65406153e', 'first'),
    new Descriptor(e_m.monastery_cellar, 5, 0, 17, 'CreatorOfWidows', true, '762265376&show_for_all=57db402d35', 'first'),
    new Descriptor(e_m.forest_keeper, 5, 0, 17, 'CreatorOfWidows', true, '762264814&show_for_all=77f8911da0', 'first'),
    new Descriptor(e_m.savage_treant, 5, 0, 17, 'CreatorOfWidows', true, '762263288&show_for_all=44ca606791', 'first'),
    new Descriptor(e_m.amphibian_hero, 5, 0, 17, 'CreatorOfWidows', true, '762262040&show_for_all=38013c5cf0', 'first'),
    new Descriptor(e_m.elven_hero, 5, 0, 17, 'CreatorOfWidows', true, '762261557&show_for_all=b5ff1840e7', 'first'),
    new Descriptor(e_m.knight_hero, 5, 0, 17, 'CreatorOfWidows', true, '762261051&show_for_all=0717b1984c', 'first'),
    new Descriptor(e_m.dt_hero, 5, 0, 17, 'CreatorOfWidows', true, '762260318&show_for_all=d979547e30', 'first'),
  ];
}
  
//----------------------------------------------------------------------------//
  
}());  // wrapper end

//----------------------------------------------------------------------------//