GN_SecondCampaignMarkers

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

// ==UserScript==
// @name        GN_SecondCampaignMarkers
// @namespace   Gradient
// @description ЧГК для второй кампании
// @include     http://heroes-guide.ru/images/upload/e0f3e09e.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 = {
  hungry_zombies : 1,
  ambush : 2,
  harpies : 3,
  son_ambush : 4,
  three_heroes : 5,
  spiders : 6,
  spider_lair : 7,
  furies : 8,
  witch : 9,
  first_undeads : 10,
  first_wisp: 11,
  nekr_hero : 12,
  disciple : 13,
  temple : 14,
  vampires : 15,
  second_undeads : 16,
  second_wisp : 17,
  third_undeads : 18,
  third_wisp : 19,
  tomb_hero : 20,
  undead_boss : 21,
  crypt_witch : 22,
  crypt_guards : 23,
  mummy_crypt : 24,
  pirate_crypt : 25,
  last_fight : 26
};
  
var descriptors = get_descriptors();

descriptors = descriptors.filter(function(current){
  return current.campaign == 'second';
});  
           
var markers = [
  new Marker(e_m.hungry_zombies, 860, 307, 'Окрестности кладбища', 'Тонны зомби'),
  new Marker(e_m.ambush, 645, 356, 'Засада', 'Герой на воровском поле (засада)'),
  new Marker(e_m.harpies, 494, 368, 'Гарпии', 'Тонны гарпий'),
  new Marker(e_m.son_ambush, 555, 328, 'Засада с сыном', 'Герой на воровском поле (засада)'),
  new Marker(e_m.three_heroes, 521, 227, 'Лагерь разбойников', 'Три героя - маг, воин, баф'),
  new Marker(e_m.spiders, 520, 580, 'Заброшенная деревня', 'Тонны пауков'),
  new Marker(e_m.spider_lair, 616, 632, 'Паучье логово', 'Тонны пауков, воровкое поле'),
  new Marker(e_m.furies, 455, 660, 'Таинственная пещера', 'Тонны фурий/ведьм, воровкое поле'),
  new Marker(e_m.witch, 750, 650, 'Ведьма', 'Герой-хаосит на дуэльном поле, набор армии - пауки, гарпии, энты'),
  new Marker(e_m.first_undeads, 1071, 306, 'Отряд нежити', 'Лучники, зомби, скеловоины'),
  new Marker(e_m.first_wisp, 1030, 400, 'Скелеты', 'Лучники, арбалетчики, огоньки'),
  new Marker(e_m.nekr_hero, 1030, 520, 'Некромант', 'Герой-некромант на дуэльном поле, деф+образ'),
  new Marker(e_m.disciple, 1100, 595, 'Ученик некроманта', 'Герой-НПС на дуэльном поле, тактика, набор зомби-скело(гидры-драки-ящеры)'),
  new Marker(e_m.temple, 1175, 540, 'Храм угасающего света', 'Воровское поле, тонна зомби-баньши-рыцарей'),
  new Marker(e_m.vampires, 1140, 460, 'Отряд вампиров', 'Тонна вампиров'),
  new Marker(e_m.second_undeads, 1238, 422, 'Отряд нежити', 'Личи и тонна скеловоинов-скелолуков'),
  new Marker(e_m.second_wisp, 1160, 370, 'Отряд нежити', 'Рыцари и тонна зомби'),
  new Marker(e_m.third_undeads, 1330, 480, 'Отряд нежити', 'Костяные драконы и тонна скеловоинов-скелетов'),
  new Marker(e_m.third_wisp, 1320, 570, 'Горгульи', 'Тонны горгулий, воровское поле'),
  new Marker(e_m.tomb_hero, 1330, 620, 'Раскопанная могила', 'Герой-НПС на воровском поле (засада)'),
  new Marker(e_m.undead_boss, 1420, 560, 'Главарь нежити', 'Тонна моба + босс'),
  new Marker(e_m.crypt_witch, 1458, 384, 'Склеп', 'Герой с тьмой на дуэльном поле'),
  new Marker(e_m.crypt_guards, 1330, 345, 'Стражи склепа', 'Тонна светлячков и горгулий'),
  new Marker(e_m.mummy_crypt, 1360, 271, 'Склеп', 'Воровское поле, тонна мумий и мелочи'),
  new Marker(e_m.pirate_crypt, 1258, 242, 'Склеп', 'Герой-пират некр на дуэльном поле, нападение+природа'),
  new Marker(e_m.last_fight, 1460, 540, 'Древний некромант', 'Герой с башней тьмы на дуэльном поле')
];                 
  
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    = '#FFFF00';
  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.hungry_zombies, 7, 0, 20, 'Gradient', true, '829349764&show_for_all=23941c3d3b', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 20, 'Gradient', true, '829350242&show_for_all=a4635e2486', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 20, 'Gradient', true, '829350514&show_for_all=846c43b673', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 20, 'Gradient', true, '829350906&show_for_all=9842857971', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 20, 'Gradient', true, '829351163&show_for_all=4b4d944a0f', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 20, 'Gradient', true, '829351517&show_for_all=c49d7e62cb', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 20, 'Gradient', true, '829351766&show_for_all=d941fdafea', 'second'),
    new Descriptor(e_m.furies, 7, 0, 20, 'Gradient', true, '829352122&show_for_all=225786e8b0', 'second'),
    new Descriptor(e_m.witch, 7, 0, 20, 'Gradient', true, '829352344&show_for_all=e1b27c4fc0', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 20, 'Gradient', true, '829353068&show_for_all=0a714a102a', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 20, 'Gradient', true, '829354088&show_for_all=33d8d15be4', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 20, 'Gradient', true, '829523004&show_for_all=60bda485eb', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 20, 'Gradient', true, '829523278&show_for_all=9d5fd7ae98', 'second'),
    new Descriptor(e_m.temple, 7, 0, 20, 'Gradient', true, '829523653&show_for_all=feb68ae1c3', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 20, 'Gradient', true, '829524063&show_for_all=dff3e3a125', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 20, 'Gradient', true, '829524368&show_for_all=98f8dfd113', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 20, 'Gradient', true, '829524764&show_for_all=b2e6509342', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 20, 'Gradient', true, '829525208&show_for_all=7f04306a4a', 'second'),
    new Descriptor(e_m.third_wisp, 7, 0, 20, 'Gradient', true, '829525762&show_for_all=c96d68f679', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 20, 'Gradient', true, '829526057&show_for_all=4720fe7dbe', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 20, 'Gradient', true, '829526215&show_for_all=a188be6758', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 20, 'Gradient', true, '829526607&show_for_all=dcff4fba25', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 20, 'Gradient', true, '829526843&show_for_all=68b7317851', 'second'),
    new Descriptor(e_m.mummy_crypt, 7, 0, 20, 'Gradient', true, '829527000&show_for_all=44fd60f584', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 20, 'Gradient', true, '829527185&show_for_all=254962dae3', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 20, 'Gradient', true, '829527434&show_for_all=c96e290dce', 'second'), 
    new Descriptor(e_m.last_fight, 7, 0, 20, 'Gradient', true, '829527434&show_for_all=c96e290dce', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 20, 'Gradient', true, '829527185&show_for_all=254962dae3', 'second'),
    new Descriptor(e_m.mummy_crypt, 7, 0, 20, 'Gradient', true, '829527000&show_for_all=44fd60f584', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 20, 'Gradient', true, '829526843&show_for_all=68b7317851', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 20, 'Gradient', true, '829526607&show_for_all=dcff4fba25', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 20, 'Gradient', true, '829526215&show_for_all=a188be6758', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 20, 'Gradient', true, '829526057&show_for_all=4720fe7dbe', 'second'),
    new Descriptor(e_m.third_wisp, 7, 0, 20, 'Gradient', true, '829525762&show_for_all=c96d68f679', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 20, 'Gradient', true, '829525208&show_for_all=7f04306a4a', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 20, 'Gradient', true, '829524764&show_for_all=b2e6509342', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 20, 'Gradient', true, '829524368&show_for_all=98f8dfd113', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 20, 'Gradient', true, '829524063&show_for_all=dff3e3a125', 'second'),
    new Descriptor(e_m.temple, 7, 0, 20, 'Gradient', true, '829523653&show_for_all=feb68ae1c3', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 20, 'Gradient', true, '829523278&show_for_all=9d5fd7ae98', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 20, 'Gradient', true, '829523004&show_for_all=60bda485eb', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 20, 'Gradient', true, '829354088&show_for_all=33d8d15be4', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 20, 'Gradient', true, '829353068&show_for_all=0a714a102a', 'second'),
    new Descriptor(e_m.witch, 7, 0, 20, 'Gradient', true, '829352344&show_for_all=e1b27c4fc0', 'second'),
    new Descriptor(e_m.furies, 7, 0, 20, 'Gradient', true, '829352122&show_for_all=225786e8b0', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 20, 'Gradient', true, '829351766&show_for_all=d941fdafea', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 20, 'Gradient', true, '829351517&show_for_all=c49d7e62cb', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 20, 'Gradient', true, '829351163&show_for_all=4b4d944a0f', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 20, 'Gradient', true, '829350906&show_for_all=9842857971', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 20, 'Gradient', true, '829350514&show_for_all=846c43b673', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 20, 'Gradient', true, '829350242&show_for_all=a4635e2486', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 20, 'Gradient', true, '829349764&show_for_all=23941c3d3b', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Gradient', true, '788023596&show_for_all=1806d76e6a', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Gradient', true, '788023448&show_for_all=eedb0d1a82', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Gradient', true, '788023358&show_for_all=13d2513328', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 19, 'Gradient', true, '788023262&show_for_all=86f2b5396c', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Gradient', true, '788023161&show_for_all=3638c0df0c', 'second'),
    new Descriptor(e_m.temple, 4, 0, 19, 'Gradient', true, '788023065&show_for_all=2ac2173805', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Gradient', true, '788022957&show_for_all=ef0fc78388', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Gradient', true, '788022870&show_for_all=116d309244', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Gradient', true, '788022770&show_for_all=5b5bc6e88d', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Gradient', true, '788022650&show_for_all=8bc065e38c', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Gradient', true, '788022530&show_for_all=5d89719bec', 'second'),
    new Descriptor(e_m.third_wisp, 4, 0, 19, 'Gradient', true, '788022388&show_for_all=e252c1e1de', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Gradient', true, '788022275&show_for_all=e1b2c41f32', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Gradient', true, '788022158&show_for_all=fc52589ee4', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Gradient', true, '788022007&show_for_all=807ed2b870', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Gradient', true, '788021831&show_for_all=a04d4b5b49', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Gradient', true, '788021715&show_for_all=2588077c1d', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Gradient', true, '788021591&show_for_all=277e40c0cf', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Gradient', true, '788021397&show_for_all=34374219e1', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Gradient', false, '788020956&show_for_all=3a17a712cd', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Gradient', true, '788020828&show_for_all=4100447afe', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Gradient', false, '788020377&show_for_all=773cd5522e', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Gradient', true, '788020245&show_for_all=d7bf2af74d', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Gradient', true, '787421495&show_for_all=1a09f7aeaa', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Gradient', true, '787421229&show_for_all=d367ba3850', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Gradient', true, '787420600&show_for_all=04c82a8499', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Gradient', true, '787419730&show_for_all=c5cae549b5', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Gradient', true, '787408192&show_for_all=e1dc6b0643', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Gradient', true, '785614943&show_for_all=d8b9e68b95', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Gradient', true, '785614422&show_for_all=12c3339add', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 19, 'Gradient', true, '785613889&show_for_all=c412507889', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Gradient', true, '785613339&show_for_all=1bcf0683f1', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Gradient', true, '785612684&show_for_all=6377be8e59', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Gradient', true, '785609331&show_for_all=419a00d194', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Gradient', true, '784634432&show_for_all=a3511524d5', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 19, 'Gradient', true, '784628819&show_for_all=cbf95873ee', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 19, 'Gradient', false, '784617677&show_for_all=1a3a332bf8', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Gradient', true, '784616981&show_for_all=11d7da6b50', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Gradient', true, '784616412&show_for_all=b8edb46132', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Gradient', true, '784615919&show_for_all=2acfffd4d0', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Gradient', true, '784615274&show_for_all=04d48f6821', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 19, 'Gradient', true, '784614687&show_for_all=5adc82f013', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Gradient', true, '784613987&show_for_all=ec44ce51a8', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Gradient', true, '784613500&show_for_all=4ed9d849fa', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Gradient', true, '784612107&show_for_all=8383ccb206', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Gradient', true, '784609205&show_for_all=5952984175', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Gradient', true, '784608391&show_for_all=624eeec87d', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Gradient', true, '784607652&show_for_all=5fb0120d08', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Gradient', true, '784606644&show_for_all=1099ebc7f6', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Gradient', true, '784605906&show_for_all=5ac06745a9', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Gradient', false, '784603253&show_for_all=521e99fd7c', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Gradient', true, '784602766&show_for_all=054d9a96be', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Gradient', true, '784602066&show_for_all=144b793089', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Gradient', true, '784515052&show_for_all=e11bb2e074', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Gradient', true, '784514440&show_for_all=255cc8dcf1', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Gradient', true, '784513184&show_for_all=c694adc4ff', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Gradient', true, '776021253&show_for_all=7d0b592096', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Gradient', true, '776021185&show_for_all=196c7233c0', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Gradient', true, '776021117&show_for_all=73a93325e9', 'second'),
    new Descriptor(e_m.temple, 4, 1, 19, 'Gradient', true, '776021017&show_for_all=543eafe4e0', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Gradient', true, '776020904&show_for_all=c74ea1c30b', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Gradient', true, '776020784&show_for_all=4b51d2791b', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Gradient', false, '776020661&show_for_all=4110c8a458', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Gradient', false, '776020314&show_for_all=ccef4d09f3', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Gradient', true, '776020197&show_for_all=15c8ee7a74', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 19, 'Gradient', true, '776020089&show_for_all=2c7090a412', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Gradient', true, '776019981&show_for_all=21ca658f30', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Gradient', true, '776019860&show_for_all=b489f41685', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Gradient', true, '776019738&show_for_all=f21aefb70f', 'second'),
    new Descriptor(e_m.temple, 4, 1, 19, 'Gradient', true, '776019595&show_for_all=19c39bf46e', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Gradient', true, '776019441&show_for_all=08a9f767b6', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Gradient', true, '776019249&show_for_all=f951d16482', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Gradient', true, '776019033&show_for_all=24bbfde50d', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Gradient', true, '776018872&show_for_all=255843d4eb', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Gradient', true, '776018652&show_for_all=2d1ff9f40f', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Gradient', true, '776018518&show_for_all=2db870cebf', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Gradient', true, '776018270&show_for_all=e4b8dfe209', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Gradient', true, '776018132&show_for_all=23c2ef1d30', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Gradient', true, '776017880&show_for_all=ec093eb4c6', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Gradient', true, '776017567&show_for_all=01cd811821', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Gradient', true, '776017381&show_for_all=b6922265aa', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Gradient', true, '776017059&show_for_all=0044cdcada', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Gradient', true, '776016625&show_for_all=9202fedb12', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Gradient', true, '776016290&show_for_all=a90a3f08f4', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'sanek_92', true, '814915515&show_for_all=934d468478', 'second'),
    new Descriptor(e_m.temple, 5, 1, 18, 'sanek_92', true, '814913319&show_for_all=8a26dbdd72', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 18, 'sanek_92', true, '814910461&show_for_all=e6b1cb6e7c', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 18, 'sanek_92', true, '814908295&show_for_all=a006e84a05', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 18, 'sanek_92', true, '814905962&show_for_all=38461c603e', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 18, 'sanek_92', true, '814904367&show_for_all=22a52dbe7f', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 18, 'sanek_92', true, '814901914&show_for_all=7ac749ea13', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 18, 'sanek_92', true, '814856010&show_for_all=60ecf84b86', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 18, 'sanek_92', true, '814854218&show_for_all=25e1e193da', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 18, 'sanek_92', true, '814853043&show_for_all=562b825bb4', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 18, 'sanek_92', true, '814851087&show_for_all=4d62beefd9', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 18, 'sanek_92', true, '814832691&show_for_all=90e9da8744', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 18, 'sanek_92', true, '814830416&show_for_all=85b2a0eaad', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 18, 'sanek_92', true, '814828367&show_for_all=e58d255391', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 18, 'sanek_92', false, '814824943&show_for_all=05fa012b27', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 18, 'sanek_92', true, '814822636&show_for_all=bf00699867', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 18, 'sanek_92', true, '814819842&show_for_all=a2717f6e48', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 18, 'sanek_92', true, '814811185&show_for_all=9b4110bb2a', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 18, 'sanek_92', true, '814806082&show_for_all=76e9472acc', 'second'),
    new Descriptor(e_m.witch, 5, 1, 18, 'sanek_92', true, '814803207&show_for_all=5488147479', 'second'),
    new Descriptor(e_m.furies, 5, 1, 18, 'sanek_92', true, '814799472&show_for_all=70095d0485', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 18, 'sanek_92', true, '814789800&show_for_all=2a75322df4', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 18, 'sanek_92', true, '814787460&show_for_all=f07410c837', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 18, 'sanek_92', true, '814783579&show_for_all=579c0574ea', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 18, 'sanek_92', true, '814780930&show_for_all=1251d1dd9c', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 18, 'sanek_92', true, '814778801&show_for_all=a782280ad1', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 18, 'sanek_92', true, '814777159&show_for_all=b6d5130a92', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'sanek_92', true, '814504212&show_for_all=1ce88dc739', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 18, 'sanek_92', true, '814502438&show_for_all=efb57dc255', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 18, 'sanek_92', true, '814500646&show_for_all=5e280a62e8', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 18, 'sanek_92', true, '814497305&show_for_all=1cce187378', 'second'),
    new Descriptor(e_m.temple, 5, 0, 18, 'sanek_92', true, '814495573&show_for_all=d6470dfe6a', 'second'),
    new Descriptor(e_m.temple, 5, 0, 18, 'sanek_92', false, '814491931&show_for_all=8e3333aca1', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 18, 'sanek_92', true, '814489810&show_for_all=faf9d44bf5', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 18, 'sanek_92', true, '814487023&show_for_all=055b319a78', 'second'),
    new Descriptor(e_m.third_wisp, 5, 0, 18, 'sanek_92', true, '814484911&show_for_all=f78f56db52', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 18, 'sanek_92', true, '814481249&show_for_all=47a580fef1', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 18, 'sanek_92', true, '814479015&show_for_all=7188a4fe3c', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 18, 'sanek_92', true, '814477354&show_for_all=dd53bfec02', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 0, 18, 'sanek_92', true, '814472752&show_for_all=19284f4e1c', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 18, 'sanek_92', true, '814465177&show_for_all=38bb855721', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 18, 'sanek_92', true, '814461822&show_for_all=cc66ec048d', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 18, 'sanek_92', true, '814454936&show_for_all=0f8994d255', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 18, 'sanek_92', true, '814452496&show_for_all=20eb5b6af8', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 18, 'sanek_92', true, '814448895&show_for_all=ec79359f14', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 18, 'sanek_92', true, '814437739&show_for_all=ca7ba1f2d1', 'second'),
    new Descriptor(e_m.furies, 5, 0, 18, 'sanek_92', true, '814433193&show_for_all=a24848ade5', 'second'),
    new Descriptor(e_m.witch, 5, 0, 18, 'sanek_92', true, '814427755&show_for_all=c5866f902b', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 18, 'sanek_92', true, '814425650&show_for_all=40ba848fc9', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 18, 'sanek_92', false, '814422319&show_for_all=76c946f638', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 18, 'sanek_92', true, '814420092&show_for_all=61ad873e43', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 18, 'sanek_92', true, '814318102&show_for_all=5b251da9a1', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 18, 'sanek_92', true, '814316406&show_for_all=af78869304', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 18, 'sanek_92', true, '814277653&show_for_all=85198ceae1', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 18, 'sanek_92', true, '814276317&show_for_all=9bd0ebf00a', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'sanek_92', true, '804836851&show_for_all=dd7d518154', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 18, 'sanek_92', true, '804835872&show_for_all=461ccbc0b0', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 18, 'sanek_92', true, '804834915&show_for_all=3a11832655', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 18, 'sanek_92', true, '804834181&show_for_all=a5b5c958cb', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 18, 'sanek_92', false, '804830808&show_for_all=5d655bf698', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 18, 'sanek_92', true, '804829738&show_for_all=ca1d52eb6a', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 18, 'sanek_92', true, '804828571&show_for_all=ec9878a85e', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 18, 'sanek_92', true, '804827490&show_for_all=89aed53077', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 18, 'sanek_92', true, '804827006&show_for_all=fe82895ef7', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 18, 'sanek_92', true, '804825893&show_for_all=c1ee557bde', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 18, 'sanek_92', true, '804708536&show_for_all=3b79f150b5', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 18, 'sanek_92', true, '804707532&show_for_all=017dbc30b3', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 18, 'sanek_92', true, '804566150&show_for_all=6a08c7462d', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 18, 'sanek_92', true, '804565494&show_for_all=243218dca2', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 18, 'sanek_92', true, '804544781&show_for_all=b8ea6debd6', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 18, 'sanek_92', true, '804543435&show_for_all=6872d04a52', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 18, 'sanek_92', true, '804538569&show_for_all=19de223ccb', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 18, 'sanek_92', true, '804535819&show_for_all=3f04135ab1', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'sanek_92', true, '804427627&show_for_all=e01d83af89', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'sanek_92', false, '804423957&show_for_all=44da6ff6be', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'sanek_92', false, '804421135&show_for_all=c5186edc02', 'second'),
    new Descriptor(e_m.witch, 6, 1, 18, 'sanek_92', true, '804420666&show_for_all=8c3a30434c', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 18, 'sanek_92', true, '804420063&show_for_all=123041fb3c', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 18, 'sanek_92', true, '804419461&show_for_all=c5ba8b8997', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 18, 'sanek_92', true, '804413238&show_for_all=6621ddf35a', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 18, 'sanek_92', true, '804411955&show_for_all=3826062fdc', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 18, 'sanek_92', true, '804410022&show_for_all=c0e606c7fa', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 18, 'sanek_92', true, '804408513&show_for_all=672a34f485', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 18, 'sanek_92', true, '804405254&show_for_all=8b821f11b1', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'sanek_92', true, '804388359&show_for_all=14cd2644aa', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 18, 'sanek_92', true, '804387326&show_for_all=b277d9249c', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 18, 'sanek_92', true, '804386802&show_for_all=c01c115e69', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 18, 'sanek_92', false, '804383931&show_for_all=dca84fb0ba', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 18, 'sanek_92', true, '804382125&show_for_all=3e9d439e33', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 18, 'sanek_92', false, '804379084&show_for_all=3b7b8f8749', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 18, 'sanek_92', true, '804378211&show_for_all=c1537ae9fc', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 18, 'sanek_92', true, '804376877&show_for_all=7fa5214b7a', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 18, 'sanek_92', false, '804373885&show_for_all=a5950402b6', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 18, 'sanek_92', false, '804370614&show_for_all=e65bc2fae2', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 18, 'sanek_92', true, '804279808&show_for_all=6ae487ad20', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 18, 'sanek_92', true, '804279100&show_for_all=7554db2962', 'second'),
    new Descriptor(e_m.third_wisp, 6, 0, 18, 'sanek_92', true, '804278457&show_for_all=19ed6a5814', 'second'),
    new Descriptor(e_m.third_wisp, 6, 0, 18, 'sanek_92', false, '804275759&show_for_all=23b8f5be31', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 18, 'sanek_92', true, '804274834&show_for_all=d0c3024a5f', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 18, 'sanek_92', true, '804273810&show_for_all=8191c55aad', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 18, 'sanek_92', false, '804270780&show_for_all=9a1d71a64c', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 18, 'sanek_92', true, '804269806&show_for_all=0e345e4d00', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 18, 'sanek_92', true, '804260368&show_for_all=792d15221c', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 18, 'sanek_92', true, '804259229&show_for_all=0460691ae3', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 18, 'sanek_92', true, '804257933&show_for_all=5a30637da7', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 18, 'sanek_92', false, '804254324&show_for_all=7dc3fe34ce', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 18, 'sanek_92', true, '804252102&show_for_all=0df914195f', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 18, 'sanek_92', true, '804249924&show_for_all=4d7980396a', 'second'),
    new Descriptor(e_m.furies, 6, 0, 18, 'sanek_92', true, '804246743&show_for_all=96ccbfff43', 'second'),
    new Descriptor(e_m.furies, 6, 0, 18, 'sanek_92', false, '804243524&show_for_all=bbb3626ed8', 'second'),
    new Descriptor(e_m.witch, 6, 0, 18, 'sanek_92', true, '804242577&show_for_all=56b2b3b78b', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 18, 'sanek_92', true, '804241097&show_for_all=6b9665334a', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 18, 'sanek_92', true, '804239806&show_for_all=2dfcd7b9ff', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 18, 'sanek_92', true, '804236791&show_for_all=789e3213f5', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 18, 'sanek_92', false, '804230659&show_for_all=84fca102be', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 18, 'sanek_92', true, '804230098&show_for_all=b52fb7c247', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 18, 'sanek_92', true, '804228471&show_for_all=04f860fbe9', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 18, 'sanek_92', false, '804224960&show_for_all=3e03748d74', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 18, 'sanek_92', true, '804223225&show_for_all=07e0a320d6', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 18, 'sanek_92', true, '804220630&show_for_all=6042f14d6d', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'sanek_92', true, '800396568&show_for_all=eb8c09765e', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 18, 'sanek_92', true, '800395504&show_for_all=3fdd68d77a', 'second'),
    new Descriptor(e_m.mummy_crypt, 8, 0, 18, 'sanek_92', true, '800394363&show_for_all=88f18ed55f', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'sanek_92', true, '800393405&show_for_all=4ae5d136fb', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'sanek_92', false, '800391412&show_for_all=e8fd9cf192', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'sanek_92', true, '800389908&show_for_all=dafbae9cf0', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'sanek_92', false, '800386727&show_for_all=108114d756', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 18, 'sanek_92', true, '800384708&show_for_all=ddfe66225f', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 18, 'sanek_92', true, '800379098&show_for_all=368aa55353', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 18, 'sanek_92', false, '800375584&show_for_all=b2991f2f16', 'second'),
    new Descriptor(e_m.mummy_crypt, 8, 0, 18, 'sanek_92', true, '800371133&show_for_all=775d9fe974', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 18, 'sanek_92', true, '800369000&show_for_all=dc68b3d0cc', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'sanek_92', true, '800367912&show_for_all=42614273a6', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'sanek_92', false, '800363862&show_for_all=04b916704c', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'sanek_92', false, '800360562&show_for_all=e5baf4588c', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'sanek_92', false, '800358048&show_for_all=999181af90', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'sanek_92', false, '800353414&show_for_all=9bcfe60e73', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'sanek_92', false, '800350372&show_for_all=a83cb8ff74', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 18, 'sanek_92', true, '800246830&show_for_all=2c302c5d91', 'second'),
    new Descriptor(e_m.third_wisp, 8, 0, 18, 'sanek_92', true, '800245858&show_for_all=2038c5ffdf', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'sanek_92', true, '800244598&show_for_all=dab3612b06', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'sanek_92', false, '800243444&show_for_all=f6648c8f2e', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 18, 'sanek_92', true, '800242617&show_for_all=47c2200ff0', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'sanek_92', true, '800240820&show_for_all=d16cf797db', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 18, 'sanek_92', true, '800238064&show_for_all=630292f9c6', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 18, 'sanek_92', false, '800235818&show_for_all=dffc190fee', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 18, 'sanek_92', true, '800234328&show_for_all=223615c30e', 'second'),
    new Descriptor(e_m.furies, 8, 0, 18, 'sanek_92', true, '800232982&show_for_all=1d89d3a4b8', 'second'),
    new Descriptor(e_m.witch, 8, 0, 18, 'sanek_92', true, '800232377&show_for_all=52f97968ac', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 18, 'sanek_92', true, '800230849&show_for_all=f9ef2aa102', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'sanek_92', true, '800229156&show_for_all=0f4368e0f7', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'sanek_92', false, '800227107&show_for_all=f3184f08eb', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'sanek_92', false, '800225099&show_for_all=be23557280', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'sanek_92', false, '800222986&show_for_all=fd4fbc3427', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 18, 'sanek_92', true, '800221593&show_for_all=aa6a7edc70', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 18, 'sanek_92', true, '800219973&show_for_all=0ed7313f01', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 18, 'sanek_92', false, '800206376&show_for_all=0b0ce93af5', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 18, 'sanek_92', false, '800204263&show_for_all=e98bfc4223', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'sanek_92', true, '800191302&show_for_all=fc631117a5', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'sanek_92', false, '800189280&show_for_all=12cafb7cd2', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'sanek_92', false, '800144056&show_for_all=9b66faaba0', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'sanek_92', false, '800140792&show_for_all=ccdde85292', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 18, 'sanek_92', true, '800138298&show_for_all=e222e412c6', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 18, 'sanek_92', true, '800134035&show_for_all=6b596d38da', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 18, 'sanek_92', true, '773800406&show_for_all=3f4cdc1a64', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 18, 'sanek_92', true, '773798579&show_for_all=a7319ca182', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 18, 'sanek_92', true, '773792569&show_for_all=a32d951ae4', 'second'),
    new Descriptor(e_m.witch, 4, 0, 18, 'sanek_92', true, '773786968&show_for_all=118f49d382', 'second'),
    new Descriptor(e_m.furies, 4, 0, 18, 'sanek_92', true, '773785965&show_for_all=89ad341a2e', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 18, 'sanek_92', true, '773784939&show_for_all=51acc81e1a', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 18, 'sanek_92', true, '773781958&show_for_all=9abfcffff5', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 18, 'sanek_92', true, '773741108&show_for_all=b7e40438b9', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 18, 'sanek_92', true, '773738910&show_for_all=5d22898a71', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 18, 'sanek_92', true, '773679446&show_for_all=7ab695c03b', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 18, 'sanek_92', true, '773676523&show_for_all=36f67e7615', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'sanek_92', true, '772814803&show_for_all=2944b34311', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 18, 'sanek_92', true, '772814306&show_for_all=3bfd92414d', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 18, 'sanek_92', true, '772812079&show_for_all=a367a7c357', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 18, 'sanek_92', true, '772809325&show_for_all=54d5c8f770', 'second'),
    new Descriptor(e_m.mummy_crypt, 9, 0, 18, 'sanek_92', true, '772808459&show_for_all=d2d854db71', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 18, 'sanek_92', true, '772807694&show_for_all=f1a1124446', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 18, 'sanek_92', true, '772806697&show_for_all=c8b8d5a96b', 'second'),
    new Descriptor(e_m.third_wisp, 9, 0, 18, 'sanek_92', true, '772806000&show_for_all=c49086b8b4', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 18, 'sanek_92', true, '772805285&show_for_all=8053a3d28f', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 18, 'sanek_92', true, '772803990&show_for_all=451705f730', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 18, 'sanek_92', true, '772801988&show_for_all=0e5399e935', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 18, 'sanek_92', true, '772801184&show_for_all=c36305ca38', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 18, 'sanek_92', true, '772799762&show_for_all=6c2dcb7ba9', 'second'),
    new Descriptor(e_m.temple, 9, 0, 18, 'sanek_92', true, '772798174&show_for_all=a82d4df5d9', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 18, 'sanek_92', true, '772740447&show_for_all=12f353fc6a', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 18, 'sanek_92', true, '772739558&show_for_all=6c80292346', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 18, 'sanek_92', true, '772738559&show_for_all=289835c873', 'second'),
    new Descriptor(e_m.witch, 9, 0, 18, 'sanek_92', true, '772738018&show_for_all=6014a771c0', 'second'),
    new Descriptor(e_m.furies, 9, 0, 18, 'sanek_92', true, '772737425&show_for_all=dfa6250de0', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 18, 'sanek_92', true, '772736909&show_for_all=ab0ae45e34', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 18, 'sanek_92', true, '772736050&show_for_all=1f129fb8b8', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 18, 'sanek_92', true, '772734351&show_for_all=90f3544528', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 18, 'sanek_92', true, '772733641&show_for_all=e3ab46bbe5', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 18, 'sanek_92', true, '772732747&show_for_all=76bc53835c', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 18, 'sanek_92', false, '772729707&show_for_all=311ede82c3', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 18, 'sanek_92', true, '772728586&show_for_all=f721153118', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 18, 'sanek_92', false, '772724533&show_for_all=776a63c2ef', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 18, 'sanek_92', true, '772723341&show_for_all=fcdae5565e', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 20, 'Gradient', true, '829527434&show_for_all=c96e290dce', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 20, 'Gradient', true, '829527185&show_for_all=254962dae3', 'second'),
    new Descriptor(e_m.mummy_crypt, 7, 0, 20, 'Gradient', true, '829527000&show_for_all=44fd60f584', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 20, 'Gradient', true, '829526843&show_for_all=68b7317851', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 20, 'Gradient', true, '829526607&show_for_all=dcff4fba25', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 20, 'Gradient', true, '829526215&show_for_all=a188be6758', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 20, 'Gradient', true, '829526057&show_for_all=4720fe7dbe', 'second'),
    new Descriptor(e_m.third_wisp, 7, 0, 20, 'Gradient', true, '829525762&show_for_all=c96d68f679', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 20, 'Gradient', true, '829525208&show_for_all=7f04306a4a', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 20, 'Gradient', true, '829524764&show_for_all=b2e6509342', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 20, 'Gradient', true, '829524368&show_for_all=98f8dfd113', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 20, 'Gradient', true, '829524063&show_for_all=dff3e3a125', 'second'),
    new Descriptor(e_m.temple, 7, 0, 20, 'Gradient', true, '829523653&show_for_all=feb68ae1c3', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 20, 'Gradient', true, '829523278&show_for_all=9d5fd7ae98', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 20, 'Gradient', true, '829523004&show_for_all=60bda485eb', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 20, 'Gradient', true, '829354088&show_for_all=33d8d15be4', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 20, 'Gradient', true, '829353068&show_for_all=0a714a102a', 'second'),
    new Descriptor(e_m.witch, 7, 0, 20, 'Gradient', true, '829352344&show_for_all=e1b27c4fc0', 'second'),
    new Descriptor(e_m.furies, 7, 0, 20, 'Gradient', true, '829352122&show_for_all=225786e8b0', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 20, 'Gradient', true, '829351766&show_for_all=d941fdafea', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 20, 'Gradient', true, '829351517&show_for_all=c49d7e62cb', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 20, 'Gradient', true, '829351163&show_for_all=4b4d944a0f', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 20, 'Gradient', true, '829350906&show_for_all=9842857971', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 20, 'Gradient', true, '829350514&show_for_all=846c43b673', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 20, 'Gradient', true, '829350242&show_for_all=a4635e2486', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 20, 'Gradient', true, '829349764&show_for_all=23941c3d3b', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Gradient', true, '788023596&show_for_all=1806d76e6a', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Gradient', true, '788023448&show_for_all=eedb0d1a82', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Gradient', true, '788023358&show_for_all=13d2513328', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 19, 'Gradient', true, '788023262&show_for_all=86f2b5396c', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Gradient', true, '788023161&show_for_all=3638c0df0c', 'second'),
    new Descriptor(e_m.temple, 4, 0, 19, 'Gradient', true, '788023065&show_for_all=2ac2173805', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Gradient', true, '788022957&show_for_all=ef0fc78388', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Gradient', true, '788022870&show_for_all=116d309244', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Gradient', true, '788022770&show_for_all=5b5bc6e88d', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Gradient', true, '788022650&show_for_all=8bc065e38c', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Gradient', true, '788022530&show_for_all=5d89719bec', 'second'),
    new Descriptor(e_m.third_wisp, 4, 0, 19, 'Gradient', true, '788022388&show_for_all=e252c1e1de', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Gradient', true, '788022275&show_for_all=e1b2c41f32', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Gradient', true, '788022158&show_for_all=fc52589ee4', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Gradient', true, '788022007&show_for_all=807ed2b870', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Gradient', true, '788021831&show_for_all=a04d4b5b49', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Gradient', true, '788021715&show_for_all=2588077c1d', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Gradient', true, '788021591&show_for_all=277e40c0cf', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Gradient', true, '788021397&show_for_all=34374219e1', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Gradient', false, '788020956&show_for_all=3a17a712cd', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Gradient', true, '788020828&show_for_all=4100447afe', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Gradient', false, '788020377&show_for_all=773cd5522e', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Gradient', true, '788020245&show_for_all=d7bf2af74d', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Gradient', true, '787421495&show_for_all=1a09f7aeaa', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Gradient', true, '787421229&show_for_all=d367ba3850', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Gradient', true, '787420600&show_for_all=04c82a8499', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Gradient', true, '787419730&show_for_all=c5cae549b5', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Gradient', true, '787408192&show_for_all=e1dc6b0643', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Gradient', true, '785614943&show_for_all=d8b9e68b95', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Gradient', true, '785614422&show_for_all=12c3339add', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 19, 'Gradient', true, '785613889&show_for_all=c412507889', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Gradient', true, '785613339&show_for_all=1bcf0683f1', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Gradient', true, '785612684&show_for_all=6377be8e59', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Gradient', true, '785609331&show_for_all=419a00d194', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Gradient', true, '784634432&show_for_all=a3511524d5', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 19, 'Gradient', true, '784628819&show_for_all=cbf95873ee', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 19, 'Gradient', false, '784617677&show_for_all=1a3a332bf8', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Gradient', true, '784616981&show_for_all=11d7da6b50', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Gradient', true, '784616412&show_for_all=b8edb46132', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Gradient', true, '784615919&show_for_all=2acfffd4d0', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Gradient', true, '784615274&show_for_all=04d48f6821', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 19, 'Gradient', true, '784614687&show_for_all=5adc82f013', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Gradient', true, '784613987&show_for_all=ec44ce51a8', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Gradient', true, '784613500&show_for_all=4ed9d849fa', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Gradient', true, '784612107&show_for_all=8383ccb206', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Gradient', true, '784609205&show_for_all=5952984175', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Gradient', true, '784608391&show_for_all=624eeec87d', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Gradient', true, '784607652&show_for_all=5fb0120d08', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Gradient', true, '784606644&show_for_all=1099ebc7f6', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Gradient', true, '784605906&show_for_all=5ac06745a9', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Gradient', false, '784603253&show_for_all=521e99fd7c', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Gradient', true, '784602766&show_for_all=054d9a96be', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Gradient', true, '784602066&show_for_all=144b793089', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Gradient', true, '784515052&show_for_all=e11bb2e074', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Gradient', true, '784514440&show_for_all=255cc8dcf1', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Gradient', true, '784513184&show_for_all=c694adc4ff', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Gradient', true, '776021253&show_for_all=7d0b592096', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Gradient', true, '776021185&show_for_all=196c7233c0', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Gradient', true, '776021117&show_for_all=73a93325e9', 'second'),
    new Descriptor(e_m.temple, 4, 1, 19, 'Gradient', true, '776021017&show_for_all=543eafe4e0', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Gradient', true, '776020904&show_for_all=c74ea1c30b', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Gradient', true, '776020784&show_for_all=4b51d2791b', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Gradient', false, '776020661&show_for_all=4110c8a458', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Gradient', false, '776020314&show_for_all=ccef4d09f3', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Gradient', true, '776020197&show_for_all=15c8ee7a74', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 19, 'Gradient', true, '776020089&show_for_all=2c7090a412', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Gradient', true, '776019981&show_for_all=21ca658f30', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Gradient', true, '776019860&show_for_all=b489f41685', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Gradient', true, '776019738&show_for_all=f21aefb70f', 'second'),
    new Descriptor(e_m.temple, 4, 1, 19, 'Gradient', true, '776019595&show_for_all=19c39bf46e', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Gradient', true, '776019441&show_for_all=08a9f767b6', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Gradient', true, '776019249&show_for_all=f951d16482', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Gradient', true, '776019033&show_for_all=24bbfde50d', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Gradient', true, '776018872&show_for_all=255843d4eb', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Gradient', true, '776018652&show_for_all=2d1ff9f40f', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Gradient', true, '776018518&show_for_all=2db870cebf', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Gradient', true, '776018270&show_for_all=e4b8dfe209', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Gradient', true, '776018132&show_for_all=23c2ef1d30', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Gradient', true, '776017880&show_for_all=ec093eb4c6', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Gradient', true, '776017567&show_for_all=01cd811821', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Gradient', true, '776017381&show_for_all=b6922265aa', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Gradient', true, '776017059&show_for_all=0044cdcada', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Gradient', true, '776016625&show_for_all=9202fedb12', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Gradient', true, '776016290&show_for_all=a90a3f08f4', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'Asmadeuss', true, '792342986&show_for_all=4a63861889', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 18, 'Asmadeuss', true, '792342121&show_for_all=16e99e8916', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 18, 'Asmadeuss', true, '792341188&show_for_all=c677a848ad', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 18, 'Asmadeuss', true, '792340444&show_for_all=2c413f1eac', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 18, 'Asmadeuss', true, '792339226&show_for_all=ffe779dc92', 'second'),
    new Descriptor(e_m.temple, 4, 0, 18, 'Asmadeuss', true, '792338579&show_for_all=24aed46923', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 18, 'Asmadeuss', true, '792337972&show_for_all=8f2dbcfb23', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 18, 'Asmadeuss', true, '792336914&show_for_all=5a57febd50', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 18, 'Asmadeuss', true, '792335855&show_for_all=88eb4e7212', 'second'),
    new Descriptor(e_m.third_wisp, 4, 0, 18, 'Asmadeuss', true, '792334935&show_for_all=7a0f1f0c18', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 18, 'Asmadeuss', true, '792334164&show_for_all=28b7fc534f', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 18, 'Asmadeuss', true, '792333521&show_for_all=daf9d22002', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 18, 'Asmadeuss', false, '792332970&show_for_all=d3465bad4d', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 18, 'Asmadeuss', true, '792331634&show_for_all=0f667fd3b3', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 18, 'Asmadeuss', true, '792330782&show_for_all=d20e5c3db4', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 18, 'Asmadeuss', true, '792330217&show_for_all=3eb6f4c197', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 18, 'Asmadeuss', true, '792328981&show_for_all=e56f91abf8', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 18, 'Asmadeuss', false, '792328357&show_for_all=e549dadb95', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 18, 'Asmadeuss', true, '792326664&show_for_all=8afc9fa838', 'second'),
    new Descriptor(e_m.witch, 4, 0, 18, 'Asmadeuss', true, '792326113&show_for_all=9a4a33a38e', 'second'),
    new Descriptor(e_m.furies, 4, 0, 18, 'Asmadeuss', true, '792325733&show_for_all=dce4c893ac', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 18, 'Asmadeuss', true, '792325036&show_for_all=ae10807695', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 18, 'Asmadeuss', true, '792322394&show_for_all=53f940c87a', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 18, 'Asmadeuss', true, '792321119&show_for_all=db2101ff46', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 18, 'Asmadeuss', false, '792320638&show_for_all=d2d64d89ea', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 18, 'Asmadeuss', true, '792318440&show_for_all=3d6fcb8335', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 18, 'Asmadeuss', true, '792317373&show_for_all=40a5adaff7', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 18, 'Asmadeuss', true, '792315905&show_for_all=8029ef66f2', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 18, 'Asmadeuss', false, '792315580&show_for_all=ffb5743c5a', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 18, 'Asmadeuss', true, '792280937&show_for_all=ea6735969e', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 18, 'Asmadeuss', false, '792277475&show_for_all=8cb2edc0dd', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 18, 'Asmadeuss', true, '792227058&show_for_all=0baa050751', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 18, 'Asmadeuss', true, '792226509&show_for_all=b360b2f048', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 18, 'Asmadeuss', false, '792225862&show_for_all=3909570005', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 18, 'Asmadeuss', true, '792224310&show_for_all=6d8ead2c78', 'second'),
    new Descriptor(e_m.mummy_crypt, 7, 1, 18, 'Asmadeuss', true, '792223783&show_for_all=1f587da58f', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 18, 'Asmadeuss', true, '792223226&show_for_all=e698c57722', 'second'),
    new Descriptor(e_m.temple, 7, 1, 18, 'Asmadeuss', true, '792222516&show_for_all=58fd23b22d', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 18, 'Asmadeuss', true, '792221370&show_for_all=2a62da0a50', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 18, 'Asmadeuss', true, '792220766&show_for_all=881f5e659f', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 18, 'Asmadeuss', true, '792220315&show_for_all=27fc421665', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 18, 'Asmadeuss', true, '792219814&show_for_all=92849ff55f', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 18, 'Asmadeuss', true, '792219300&show_for_all=77682e6c67', 'second'),
    new Descriptor(e_m.third_wisp, 7, 1, 18, 'Asmadeuss', true, '792218857&show_for_all=5118c1cec7', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 18, 'Asmadeuss', true, '792218444&show_for_all=17540614ab', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 18, 'Asmadeuss', true, '792217867&show_for_all=7c19fd46a0', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 18, 'Asmadeuss', true, '792213884&show_for_all=c3438dd3d5', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 18, 'Asmadeuss', true, '792213281&show_for_all=1b8baa24ef', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 18, 'Asmadeuss', true, '792212365&show_for_all=7cd41fe7ff', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 18, 'Asmadeuss', true, '792211303&show_for_all=abefe9ccae', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 18, 'Asmadeuss', true, '792209456&show_for_all=0860d94af4', 'second'),
    new Descriptor(e_m.witch, 7, 1, 18, 'Asmadeuss', true, '792208732&show_for_all=0c7bf1b7b6', 'second'),
    new Descriptor(e_m.witch, 7, 1, 18, 'Asmadeuss', false, '792208384&show_for_all=79a85cedf8', 'second'),
    new Descriptor(e_m.furies, 7, 1, 18, 'Asmadeuss', true, '792207250&show_for_all=eb8ddbf951', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 18, 'Asmadeuss', true, '792203586&show_for_all=e6cbeb1e3a', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 18, 'Asmadeuss', false, '792203298&show_for_all=7c030f07f6', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 18, 'Asmadeuss', true, '792202582&show_for_all=a5783189f9', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 18, 'Asmadeuss', true, '792201284&show_for_all=b0bf783827', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 18, 'Asmadeuss', true, '792200449&show_for_all=8e83f2271f', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 18, 'Asmadeuss', true, '792199911&show_for_all=e2b10bb407', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'Asmadeuss', true, '788306727&show_for_all=7cbc882b5f', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 18, 'Asmadeuss', true, '788305581&show_for_all=e2839ba6e7', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 18, 'Asmadeuss', true, '788304890&show_for_all=22e33b8e52', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 18, 'Asmadeuss', true, '788304223&show_for_all=18bf64ba04', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 18, 'Asmadeuss', true, '788303830&show_for_all=2d1cb0468d', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 18, 'Asmadeuss', true, '788303359&show_for_all=8eb20bfcf0', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 18, 'Asmadeuss', true, '788302771&show_for_all=664577b276', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 18, 'Asmadeuss', true, '788302233&show_for_all=0847791de7', 'second'),
    new Descriptor(e_m.third_wisp, 6, 0, 18, 'Asmadeuss', true, '788301891&show_for_all=88c8be9ca3', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 18, 'Asmadeuss', true, '788301366&show_for_all=6d54cd4823', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 18, 'Asmadeuss', true, '788300790&show_for_all=b83484ef54', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 18, 'Asmadeuss', true, '788292481&show_for_all=cf520bf5fe', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 18, 'Asmadeuss', true, '788292013&show_for_all=362989b1cf', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 18, 'Asmadeuss', true, '788291438&show_for_all=1d30d85f7a', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 18, 'Asmadeuss', true, '788291160&show_for_all=dbbddb88ed', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 18, 'Asmadeuss', true, '788290401&show_for_all=e0989aa539', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 18, 'Asmadeuss', true, '788288596&show_for_all=6fec31a5cb', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 18, 'Asmadeuss', true, '788287431&show_for_all=cc8532a050', 'second'),
    new Descriptor(e_m.furies, 6, 0, 18, 'Asmadeuss', true, '788286891&show_for_all=97e17d3313', 'second'),
    new Descriptor(e_m.furies, 6, 0, 18, 'Asmadeuss', false, '788285702&show_for_all=3fb3b42b4c', 'second'),
    new Descriptor(e_m.witch, 6, 0, 18, 'Asmadeuss', true, '788285350&show_for_all=d625056aa3', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 18, 'Asmadeuss', true, '788284858&show_for_all=883ef0bd22', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 18, 'Asmadeuss', true, '788284268&show_for_all=b7a32b4bae', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 18, 'Asmadeuss', true, '788283373&show_for_all=6cff6d5538', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 18, 'Asmadeuss', false, '788283016&show_for_all=b650cd788a', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 18, 'Asmadeuss', true, '788281966&show_for_all=1e7545f564', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 18, 'Asmadeuss', true, '788281495&show_for_all=89d2c07f8a', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 18, 'Asmadeuss', true, '788280913&show_for_all=a65ff1a1d2', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'Asmadeuss', true, '787741427&show_for_all=4a1ac09348', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 18, 'Asmadeuss', true, '787741228&show_for_all=fb7ca616e2', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 18, 'Asmadeuss', true, '787741083&show_for_all=48314feb5b', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 18, 'Asmadeuss', true, '787740964&show_for_all=c5c1c602f5', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 18, 'Asmadeuss', true, '787740762&show_for_all=97a4a51c1d', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 18, 'Asmadeuss', true, '787740575&show_for_all=8a874cb39a', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 18, 'Asmadeuss', true, '787740341&show_for_all=71223b90b1', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 18, 'Asmadeuss', true, '787740223&show_for_all=9bba50c841', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 18, 'Asmadeuss', true, '787740100&show_for_all=87a78c2646', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 18, 'Asmadeuss', true, '787739956&show_for_all=74a2a9f20d', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 18, 'Asmadeuss', true, '787739832&show_for_all=84db5411c0', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 18, 'Asmadeuss', true, '787739575&show_for_all=e22f9f0f7b', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 18, 'Asmadeuss', true, '787739308&show_for_all=f85dd49b0f', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 18, 'Asmadeuss', true, '787739102&show_for_all=934927d718', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 18, 'Asmadeuss', true, '787738900&show_for_all=6671229995', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 18, 'Asmadeuss', true, '787738654&show_for_all=cf350fa7eb', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 18, 'Asmadeuss', true, '787658645&show_for_all=85126c9d80', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 18, 'Asmadeuss', true, '787654421&show_for_all=35cecbddb1', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'Asmadeuss', true, '787589316&show_for_all=fcfd4496a1', 'second'),
    new Descriptor(e_m.witch, 6, 1, 18, 'Asmadeuss', true, '787589002&show_for_all=aba509fb57', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 18, 'Asmadeuss', true, '787588787&show_for_all=5ee4e64020', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 18, 'Asmadeuss', true, '787588470&show_for_all=ba69c569c2', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 18, 'Asmadeuss', true, '787559734&show_for_all=3d18c2d7c2', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 18, 'Asmadeuss', true, '787557486&show_for_all=71ce096a79', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 18, 'Asmadeuss', true, '787555805&show_for_all=583b3bf72d', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 18, 'Asmadeuss', true, '787524899&show_for_all=ca5ae160e6', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 18, 'Asmadeuss', true, '787440767&show_for_all=c2ead0f9ed', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 18, 'Asmadeuss', true, '787440539&show_for_all=46a9d4399e', 'second'),
    new Descriptor(e_m.mummy_crypt, 1, 1, 18, 'Asmadeuss', true, '787440280&show_for_all=3f086f4e7e', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 18, 'Asmadeuss', true, '787439855&show_for_all=b42fe16336', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 18, 'Asmadeuss', true, '787439329&show_for_all=7869c6e0c4', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 18, 'Asmadeuss', true, '787438970&show_for_all=cfe2d4d2c6', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 18, 'Asmadeuss', true, '787438595&show_for_all=7ce25d5b8c', 'second'),
    new Descriptor(e_m.mummy_crypt, 1, 1, 18, 'Asmadeuss', true, '787438255&show_for_all=3f978a6d67', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 18, 'Asmadeuss', true, '787437833&show_for_all=9ec573d27a', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 18, 'Asmadeuss', true, '787437363&show_for_all=db6fcbf3b1', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 18, 'Asmadeuss', false, '787436954&show_for_all=66ecbcfd4d', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 18, 'Asmadeuss', false, '787436752&show_for_all=d284b1f5e6', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 18, 'Asmadeuss', true, '787436452&show_for_all=16fefbebbd', 'second'),
    new Descriptor(e_m.third_wisp, 1, 1, 18, 'Asmadeuss', true, '787436178&show_for_all=40e8efc833', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 18, 'Asmadeuss', true, '787435746&show_for_all=64b11a39d8', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 18, 'Asmadeuss', true, '787435491&show_for_all=288fe82e40', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 18, 'Asmadeuss', true, '787435147&show_for_all=5c2d40b6d6', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 18, 'Asmadeuss', true, '787434716&show_for_all=ae036a33b9', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 18, 'Asmadeuss', true, '787434165&show_for_all=1a94936ef4', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 18, 'Asmadeuss', true, '787433621&show_for_all=c82246c818', 'second'),
    new Descriptor(e_m.witch, 1, 1, 18, 'Asmadeuss', true, '787426083&show_for_all=9d49198eb9', 'second'),
    new Descriptor(e_m.furies, 1, 1, 18, 'Asmadeuss', true, '787425532&show_for_all=c503dd7815', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 18, 'Asmadeuss', true, '787425252&show_for_all=8e1258b166', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 18, 'Asmadeuss', true, '787424949&show_for_all=869ac1d592', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 18, 'Asmadeuss', true, '787424605&show_for_all=99bd73a5b0', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 18, 'Asmadeuss', true, '787423584&show_for_all=f9055c5e59', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 18, 'Asmadeuss', true, '787423063&show_for_all=541a8d0ffb', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 18, 'Asmadeuss', true, '787422796&show_for_all=9d2f3bb795', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 18, 'Asmadeuss', true, '782816709&show_for_all=11c4fb1c67', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 18, 'Asmadeuss', true, '782816590&show_for_all=c402e0454f', 'second'),
    new Descriptor(e_m.temple, 2, 0, 18, 'Asmadeuss', true, '782816395&show_for_all=3582cc7f87', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 18, 'Asmadeuss', true, '782816150&show_for_all=ba6d382974', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 18, 'Asmadeuss', true, '782815760&show_for_all=74fd341806', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 0, 18, 'Asmadeuss', true, '782814988&show_for_all=0019dd3048', 'second'),
    new Descriptor(e_m.third_wisp, 2, 0, 18, 'Asmadeuss', true, '782814600&show_for_all=8e1181bf31', 'second'),
    new Descriptor(e_m.undead_boss, 2, 0, 18, 'Asmadeuss', true, '782814392&show_for_all=06d28b5b32', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 18, 'Asmadeuss', true, '782814056&show_for_all=aeca704755', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 18, 'Asmadeuss', true, '782813809&show_for_all=060da7581e', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 18, 'Asmadeuss', true, '782813513&show_for_all=9768bd807c', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 18, 'Asmadeuss', true, '782795504&show_for_all=4c3cfea22b', 'second'),
    new Descriptor(e_m.mummy_crypt, 2, 0, 18, 'Asmadeuss', true, '782793803&show_for_all=b65dd6d8e8', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 18, 'Asmadeuss', true, '782759057&show_for_all=f3fd017671', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 18, 'Asmadeuss', false, '782758416&show_for_all=52c2d81dd8', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 18, 'Asmadeuss', true, '782757546&show_for_all=035e50d2a7', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 18, 'Asmadeuss', true, '782750745&show_for_all=4a594a2534', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 18, 'Asmadeuss', true, '782749553&show_for_all=f74fa08f61', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 18, 'Asmadeuss', true, '782746910&show_for_all=381f18dd61', 'second'),
    new Descriptor(e_m.witch, 2, 0, 18, 'Asmadeuss', true, '782746409&show_for_all=9e4bca375b', 'second'),
    new Descriptor(e_m.furies, 2, 0, 18, 'Asmadeuss', true, '782745596&show_for_all=544553da44', 'second'),
    new Descriptor(e_m.furies, 2, 0, 18, 'Asmadeuss', false, '782745161&show_for_all=0b34db5fe0', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 18, 'Asmadeuss', true, '782743979&show_for_all=24063efa0b', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 18, 'Asmadeuss', true, '782743492&show_for_all=adeae9e052', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 18, 'Asmadeuss', true, '782742813&show_for_all=fff10495c9', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 18, 'Asmadeuss', false, '782742080&show_for_all=70c939c216', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 18, 'Asmadeuss', true, '782741284&show_for_all=e0b876df80', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 18, 'Asmadeuss', true, '782740867&show_for_all=6d9d785e69', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 18, 'Asmadeuss', true, '782740416&show_for_all=894a1ba46f', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 18, 'Asmadeuss', true, '782320925&show_for_all=be0d38f513', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 18, 'Asmadeuss', true, '782318981&show_for_all=f520e7cb8e', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 18, 'Asmadeuss', true, '782317696&show_for_all=7735586429', 'second'),
    new Descriptor(e_m.temple, 2, 1, 18, 'Asmadeuss', true, '782317081&show_for_all=b2e9eb84db', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 18, 'Asmadeuss', true, '782316407&show_for_all=7cade64dd8', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 18, 'Asmadeuss', true, '782315941&show_for_all=6eb40c3991', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 18, 'Asmadeuss', true, '782313755&show_for_all=c399c41af6', 'second'),
    new Descriptor(e_m.third_wisp, 2, 1, 18, 'Asmadeuss', true, '782313192&show_for_all=96b7e97fb3', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 18, 'Asmadeuss', true, '782312452&show_for_all=efb89f60bf', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 18, 'Asmadeuss', true, '782311654&show_for_all=2e068cadaf', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 18, 'Asmadeuss', true, '782310622&show_for_all=9d841f7cca', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 18, 'Asmadeuss', true, '782309721&show_for_all=c475f2d721', 'second'),
    new Descriptor(e_m.mummy_crypt, 2, 1, 18, 'Asmadeuss', true, '782308644&show_for_all=5f8e9dd4a4', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 18, 'Asmadeuss', true, '782307349&show_for_all=61e325acf2', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 18, 'Asmadeuss', true, '782304905&show_for_all=969f575a50', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 18, 'Asmadeuss', true, '782303146&show_for_all=7e679cee4f', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 18, 'Asmadeuss', true, '782300806&show_for_all=e1a88a1dbc', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 18, 'Asmadeuss', true, '782299602&show_for_all=c951a87975', 'second'),
    new Descriptor(e_m.witch, 2, 1, 18, 'Asmadeuss', true, '781864843&show_for_all=947c747f8a', 'second'),
    new Descriptor(e_m.furies, 2, 1, 18, 'Asmadeuss', true, '781863409&show_for_all=e4d11eed6f', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 18, 'Asmadeuss', true, '781861446&show_for_all=bb64840991', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 18, 'Asmadeuss', true, '781860454&show_for_all=87743109f7', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 18, 'Asmadeuss', false, '781859630&show_for_all=4e16272e24', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 18, 'Asmadeuss', true, '781857558&show_for_all=119fdb115a', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 18, 'Asmadeuss', false, '781856003&show_for_all=4e1c6944c5', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 18, 'Asmadeuss', false, '781853929&show_for_all=72718c9501', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 18, 'Asmadeuss', true, '781853321&show_for_all=90bdeac8d8', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 18, 'Asmadeuss', true, '781851608&show_for_all=07a1b10f24', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 18, 'Asmadeuss', true, '781851025&show_for_all=3dc16e309a', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'Asmadeuss', true, '779544794&show_for_all=bce75ddf34', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 18, 'Asmadeuss', true, '779544390&show_for_all=48ff9492a5', 'second'),
    new Descriptor(e_m.mummy_crypt, 8, 0, 18, 'Asmadeuss', true, '779543811&show_for_all=3a339de4d7', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Asmadeuss', true, '779543295&show_for_all=bfab6b9f06', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'Asmadeuss', true, '779542721&show_for_all=7c8dfacff0', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 18, 'Asmadeuss', true, '779542326&show_for_all=d0046f4fc3', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 18, 'Asmadeuss', true, '779541918&show_for_all=f4f3480855', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 18, 'Asmadeuss', true, '779541199&show_for_all=4a613a29fe', 'second'),
    new Descriptor(e_m.mummy_crypt, 8, 0, 18, 'Asmadeuss', true, '779540394&show_for_all=05fee62cc2', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 18, 'Asmadeuss', true, '779539732&show_for_all=0a4985b22e', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'Asmadeuss', true, '779539137&show_for_all=77b8b5788e', 'second'),
    new Descriptor(e_m.third_wisp, 8, 0, 18, 'Asmadeuss', true, '779506013&show_for_all=673720940d', 'second'),
    new Descriptor(e_m.third_wisp, 8, 0, 18, 'Asmadeuss', false, '779505197&show_for_all=4a0dcad5b5', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Asmadeuss', true, '779504125&show_for_all=b4fa429cd1', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Asmadeuss', false, '779503193&show_for_all=9c2c245d7d', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 18, 'Asmadeuss', true, '779502163&show_for_all=ba52fd4559', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'Asmadeuss', true, '779498862&show_for_all=aa2cde1292', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 18, 'Asmadeuss', true, '779496954&show_for_all=da85f4aa7c', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 18, 'Asmadeuss', true, '779494510&show_for_all=14db0561cd', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 18, 'Asmadeuss', true, '779492663&show_for_all=9a614c83f0', 'second'),
    new Descriptor(e_m.furies, 8, 0, 18, 'Asmadeuss', true, '779491516&show_for_all=070b36228c', 'second'),
    new Descriptor(e_m.witch, 8, 0, 18, 'Asmadeuss', true, '779490819&show_for_all=7d0aad3cb6', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 18, 'Asmadeuss', true, '779490315&show_for_all=d43a4db7b6', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'Asmadeuss', true, '779489326&show_for_all=1b8c5ece2a', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'Asmadeuss', true, '779488284&show_for_all=7f565cdea3', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'Asmadeuss', false, '779487421&show_for_all=52e6d4f599', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 18, 'Asmadeuss', true, '779486205&show_for_all=3c2fb88a76', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 18, 'Asmadeuss', true, '779485545&show_for_all=c42f58a104', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 18, 'Asmadeuss', true, '779484823&show_for_all=6d9e466b31', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'Asmadeuss', true, '776854536&show_for_all=e3af659637', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 18, 'Asmadeuss', true, '776854061&show_for_all=81f815a91f', 'second'),
    new Descriptor(e_m.temple, 9, 0, 18, 'Asmadeuss', true, '776853787&show_for_all=deaf1b4ece', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 18, 'Asmadeuss', true, '776853220&show_for_all=57107d9d2b', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 18, 'Asmadeuss', true, '776852575&show_for_all=eaa1af84fe', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 18, 'Asmadeuss', true, '776852201&show_for_all=7c44180594', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 18, 'Asmadeuss', true, '776851717&show_for_all=365a302e3b', 'second'),
    new Descriptor(e_m.third_wisp, 9, 0, 18, 'Asmadeuss', true, '776851358&show_for_all=85dbc333fc', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 18, 'Asmadeuss', true, '776850691&show_for_all=0cfbb6f734', 'second'),
    new Descriptor(e_m.mummy_crypt, 9, 0, 18, 'Asmadeuss', true, '776850117&show_for_all=4e6494dfa9', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 18, 'Asmadeuss', true, '776849087&show_for_all=ae4e2ad9b0', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 18, 'Asmadeuss', true, '776848528&show_for_all=035d395e36', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 18, 'Asmadeuss', true, '776847478&show_for_all=663e4abef0', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 18, 'Asmadeuss', true, '776846896&show_for_all=b447040f08', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 18, 'Asmadeuss', true, '776846197&show_for_all=35a981b64f', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 18, 'Asmadeuss', true, '776844851&show_for_all=05f7e2defb', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 18, 'Asmadeuss', true, '776843944&show_for_all=89ac057816', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 18, 'Asmadeuss', true, '776841802&show_for_all=0ef512bf8b', 'second'),
    new Descriptor(e_m.furies, 9, 0, 18, 'Asmadeuss', true, '776841136&show_for_all=cbf63dae9d', 'second'),
    new Descriptor(e_m.witch, 9, 0, 18, 'Asmadeuss', true, '776840764&show_for_all=cdcbe80db3', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 18, 'Asmadeuss', true, '776839748&show_for_all=480a84ff75', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 18, 'Asmadeuss', true, '776839279&show_for_all=fd7a57a9ff', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 18, 'Asmadeuss', true, '776838048&show_for_all=c8daf8d1a2', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 18, 'Asmadeuss', true, '776837449&show_for_all=57dbb1003c', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 18, 'Asmadeuss', true, '776836717&show_for_all=f155eb5582', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 18, 'Asmadeuss', true, '776836070&show_for_all=21183f79e1', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 18, 'Asmadeuss', true, '776833157&show_for_all=6b87d9d13c', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 18, 'Asmadeuss', true, '776832554&show_for_all=2e6eded4f2', 'second'),
    new Descriptor(e_m.temple, 1, 0, 18, 'Asmadeuss', true, '776832208&show_for_all=f854c1de5c', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 18, 'Asmadeuss', true, '776831808&show_for_all=ef953b0381', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 18, 'Asmadeuss', true, '776830780&show_for_all=0ddf7c8f1c', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 18, 'Asmadeuss', true, '776829154&show_for_all=240f84bad2', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 18, 'Asmadeuss', true, '776828737&show_for_all=cfd9ba98de', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 18, 'Asmadeuss', true, '776828280&show_for_all=d622ca8a5a', 'second'),
    new Descriptor(e_m.third_wisp, 1, 0, 18, 'Asmadeuss', true, '776828002&show_for_all=52d50aa895', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 18, 'Asmadeuss', true, '776827345&show_for_all=4b8de901ba', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 18, 'Asmadeuss', true, '776826740&show_for_all=45f6f4a381', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 18, 'Asmadeuss', true, '776826011&show_for_all=7ad5202a61', 'second'),
    new Descriptor(e_m.mummy_crypt, 1, 0, 18, 'Asmadeuss', true, '776825036&show_for_all=b7538e3b1e', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 18, 'Asmadeuss', true, '776824232&show_for_all=95567d97f8', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 18, 'Asmadeuss', true, '776823028&show_for_all=937e9eb9ef', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 18, 'Asmadeuss', true, '776822148&show_for_all=384bea1dcc', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 18, 'Asmadeuss', false, '776821157&show_for_all=297c70a9c4', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 18, 'Asmadeuss', true, '776758098&show_for_all=805ab745ba', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 18, 'Asmadeuss', true, '776756768&show_for_all=b37c70d3cc', 'second'),
    new Descriptor(e_m.furies, 1, 0, 18, 'Asmadeuss', true, '776755904&show_for_all=e6c6d0abf2', 'second'),
    new Descriptor(e_m.witch, 1, 0, 18, 'Asmadeuss', true, '776755656&show_for_all=9c34fe9636', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'Asmadeuss', true, '776754175&show_for_all=cc4eb200f2', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'Asmadeuss', false, '776753783&show_for_all=94c75cfdfe', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'Asmadeuss', false, '776753600&show_for_all=faf17b8777', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'Asmadeuss', false, '776752699&show_for_all=b6af4bf474', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'Asmadeuss', false, '776752067&show_for_all=2d69184e23', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'Asmadeuss', false, '776751670&show_for_all=aa1b61b8dc', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 18, 'Asmadeuss', true, '776751050&show_for_all=d5eab652e7', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 18, 'Asmadeuss', true, '776750414&show_for_all=fc834b1db9', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 18, 'Asmadeuss', true, '776749827&show_for_all=b13646d070', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 18, 'Asmadeuss', true, '776749261&show_for_all=146aa74a28', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 18, 'Asmadeuss', true, '776748718&show_for_all=d08797f4b7', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Asmadeuss', true, '776460148&show_for_all=6ddc273819', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 18, 'Asmadeuss', true, '776459764&show_for_all=dea632ff64', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 18, 'Asmadeuss', true, '776459016&show_for_all=bcb9909676', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 2, 18, 'Asmadeuss', true, '776458640&show_for_all=905fda149c', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 18, 'Asmadeuss', true, '776458240&show_for_all=20350665bf', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 18, 'Asmadeuss', true, '776457519&show_for_all=51879e6b87', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 18, 'Asmadeuss', true, '776457287&show_for_all=12dda9226d', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 18, 'Asmadeuss', true, '776456932&show_for_all=9d59a6151c', 'second'),
    new Descriptor(e_m.third_wisp, 5, 2, 18, 'Asmadeuss', true, '776456497&show_for_all=7e6e2f5170', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 18, 'Asmadeuss', true, '776456084&show_for_all=cd446db9f2', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 18, 'Asmadeuss', true, '776455656&show_for_all=9aeb502410', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 18, 'Asmadeuss', true, '776455208&show_for_all=24b63a7e10', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 2, 18, 'Asmadeuss', true, '776454738&show_for_all=b83b1b0b86', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 18, 'Asmadeuss', true, '776454102&show_for_all=c6a2947045', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 18, 'Asmadeuss', true, '776453300&show_for_all=86eabb579e', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 18, 'Asmadeuss', true, '776452581&show_for_all=d6e87ea488', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 18, 'Asmadeuss', true, '776451861&show_for_all=691da5d391', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 18, 'Asmadeuss', true, '776451198&show_for_all=a7c676ef30', 'second'),
    new Descriptor(e_m.furies, 5, 2, 18, 'Asmadeuss', true, '776450606&show_for_all=caa544556d', 'second'),
    new Descriptor(e_m.witch, 5, 2, 18, 'Asmadeuss', true, '776450311&show_for_all=f6dc2ff7ef', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 18, 'Asmadeuss', true, '776306437&show_for_all=6bde806b5c', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 18, 'Asmadeuss', true, '776306167&show_for_all=0b89ff6c76', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 18, 'Asmadeuss', true, '776299122&show_for_all=5a7184cede', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 18, 'Asmadeuss', true, '776298152&show_for_all=e0e6da1b01', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 18, 'Asmadeuss', true, '776296470&show_for_all=455c3967cb', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 18, 'Asmadeuss', false, '776295406&show_for_all=d70e58b4eb', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 18, 'Asmadeuss', true, '776293999&show_for_all=9a96db35f3', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Asmadeuss', true, '776164791&show_for_all=55b624b2bc', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'Asmadeuss', false, '776164608&show_for_all=63bab2211e', 'second'),
    new Descriptor(e_m.temple, 5, 1, 18, 'Asmadeuss', true, '776164425&show_for_all=b4d208a9e8', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 18, 'Asmadeuss', true, '776164300&show_for_all=68ec4daef8', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 18, 'Asmadeuss', true, '776164134&show_for_all=147db704eb', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 18, 'Asmadeuss', true, '776163914&show_for_all=36ca5a2707', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 18, 'Asmadeuss', true, '776163713&show_for_all=787a32e2b0', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 18, 'Asmadeuss', true, '776163408&show_for_all=4bfd21caa0', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 18, 'Asmadeuss', true, '776163246&show_for_all=6d90b01c2b', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 18, 'Asmadeuss', true, '776163080&show_for_all=02df4c9f0d', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 18, 'Asmadeuss', true, '776162948&show_for_all=b3ddfaf34f', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 18, 'Asmadeuss', true, '776162735&show_for_all=0da40b54d3', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 18, 'Asmadeuss', true, '776162439&show_for_all=3b5bd81e50', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 18, 'Asmadeuss', true, '776161691&show_for_all=9cb255d7aa', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 18, 'Asmadeuss', true, '776161411&show_for_all=cac6f746fe', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 18, 'Asmadeuss', true, '776161065&show_for_all=60929f530a', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 18, 'Asmadeuss', true, '776160520&show_for_all=03132d6a49', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 18, 'Asmadeuss', true, '776159785&show_for_all=fde635d171', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 18, 'Asmadeuss', true, '776159001&show_for_all=ae45a1a33b', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 18, 'Asmadeuss', false, '776158586&show_for_all=a678fa5ea9', 'second'),
    new Descriptor(e_m.witch, 5, 1, 18, 'Asmadeuss', true, '776158111&show_for_all=31099b7d9c', 'second'),
    new Descriptor(e_m.furies, 5, 1, 18, 'Asmadeuss', true, '776157876&show_for_all=523fffad46', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 18, 'Asmadeuss', true, '776157645&show_for_all=c8431ded38', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 18, 'Asmadeuss', false, '776157259&show_for_all=5e7f656490', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 18, 'Asmadeuss', true, '776156870&show_for_all=44fe089169', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 18, 'Asmadeuss', true, '776156271&show_for_all=fd22690497', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 18, 'Asmadeuss', true, '776155967&show_for_all=b038e1e259', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 18, 'Asmadeuss', true, '776155575&show_for_all=59be943f3c', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 18, 'Asmadeuss', true, '776155195&show_for_all=ebb56fbe43', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'Asmadeuss', true, '776135667&show_for_all=8082f0fc24', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 18, 'Asmadeuss', true, '776135090&show_for_all=d22b134885', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 18, 'Asmadeuss', true, '776134669&show_for_all=3ba65e7187', 'second'),
    new Descriptor(e_m.temple, 5, 0, 18, 'Asmadeuss', true, '776134145&show_for_all=749d7a116c', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 18, 'Asmadeuss', true, '776133416&show_for_all=105ef6936b', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 18, 'Asmadeuss', true, '776132815&show_for_all=9a5503166c', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 18, 'Asmadeuss', false, '776132147&show_for_all=72f2c0dce2', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 18, 'Asmadeuss', true, '776131806&show_for_all=7f5ba6d034', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 18, 'Asmadeuss', true, '776131509&show_for_all=f0b255daa7', 'second'),
    new Descriptor(e_m.third_wisp, 5, 0, 18, 'Asmadeuss', true, '776131202&show_for_all=9fb89ee85e', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 18, 'Asmadeuss', true, '776130825&show_for_all=571bdea1c9', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 18, 'Asmadeuss', true, '776130350&show_for_all=e4cf53ef65', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 18, 'Asmadeuss', true, '776129867&show_for_all=61c26c858e', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 0, 18, 'Asmadeuss', true, '776129360&show_for_all=d57e8727c7', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 18, 'Asmadeuss', true, '776128497&show_for_all=c091e9dd1a', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 18, 'Asmadeuss', true, '776128018&show_for_all=966ba28070', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 18, 'Asmadeuss', true, '776127316&show_for_all=73f03608db', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 18, 'Asmadeuss', true, '776126679&show_for_all=780e35fe9d', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 18, 'Asmadeuss', true, '776125852&show_for_all=fec98998e8', 'second'),
    new Descriptor(e_m.furies, 5, 0, 18, 'Asmadeuss', true, '776125410&show_for_all=364ad40fbc', 'second'),
    new Descriptor(e_m.witch, 5, 0, 18, 'Asmadeuss', true, '776125010&show_for_all=79efa9d105', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 18, 'Asmadeuss', true, '776124562&show_for_all=4ae2fd1bd1', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 18, 'Asmadeuss', false, '776124165&show_for_all=ebb136031e', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 18, 'Asmadeuss', true, '776123692&show_for_all=948660a79f', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 18, 'Asmadeuss', true, '776122815&show_for_all=55bb2b11e5', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 18, 'Asmadeuss', true, '776122136&show_for_all=5b056ef3c4', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 18, 'Asmadeuss', true, '776121463&show_for_all=2844bda238', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 18, 'Asmadeuss', true, '776120200&show_for_all=b62fea6f41', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 18, 'Asmadeuss', true, '775811559&show_for_all=c884fa7f4a', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 18, 'Asmadeuss', false, '775810588&show_for_all=5723b5a2e9', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 18, 'Asmadeuss', true, '775809772&show_for_all=cee0768511', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 18, 'Asmadeuss', true, '775809331&show_for_all=77df47f7da', 'second'),
    new Descriptor(e_m.mummy_crypt, 3, 0, 18, 'Asmadeuss', true, '775808335&show_for_all=84d95da666', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 18, 'Asmadeuss', true, '775807779&show_for_all=d9d37a4b51', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 18, 'Asmadeuss', true, '775806947&show_for_all=18b6bbcc13', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 18, 'Asmadeuss', true, '775806122&show_for_all=ce0dca1223', 'second'),
    new Descriptor(e_m.third_wisp, 3, 0, 18, 'Asmadeuss', true, '775805195&show_for_all=98bc3c4940', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 18, 'Asmadeuss', true, '775803841&show_for_all=e24341f013', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 18, 'Asmadeuss', true, '775803285&show_for_all=ccb658ca70', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 18, 'Asmadeuss', false, '775802280&show_for_all=1285fd2dd2', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 18, 'Asmadeuss', true, '775801795&show_for_all=a691410c13', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 18, 'Asmadeuss', true, '775799765&show_for_all=ef51d91e26', 'second'),
    new Descriptor(e_m.temple, 3, 0, 18, 'Asmadeuss', true, '775799291&show_for_all=5978faa098', 'second'),
    new Descriptor(e_m.temple, 3, 0, 18, 'Asmadeuss', false, '775794306&show_for_all=07c4b7c820', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 18, 'Asmadeuss', true, '775792939&show_for_all=ccfa61ad35', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 18, 'Asmadeuss', true, '775792326&show_for_all=59091f874c', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 18, 'Asmadeuss', true, '775791584&show_for_all=7e5251ea5d', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 18, 'Asmadeuss', false, '775784407&show_for_all=b5cd3fe328', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 18, 'Asmadeuss', true, '775783717&show_for_all=8c7669bfea', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 18, 'Asmadeuss', true, '775783029&show_for_all=1df6565841', 'second'),
    new Descriptor(e_m.witch, 3, 0, 18, 'Asmadeuss', true, '775774512&show_for_all=538b6363bb', 'second'),
    new Descriptor(e_m.furies, 3, 0, 18, 'Asmadeuss', true, '775773947&show_for_all=7231e543ea', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 18, 'Asmadeuss', true, '775773627&show_for_all=b9e5febd12', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 18, 'Asmadeuss', true, '775773021&show_for_all=e26b71848d', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 18, 'Asmadeuss', true, '775764445&show_for_all=db6c9ab41f', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 18, 'Asmadeuss', true, '775763510&show_for_all=1b1cbebd7c', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 18, 'Asmadeuss', true, '775762661&show_for_all=9e07d8777f', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 18, 'Asmadeuss', false, '775762082&show_for_all=086008f472', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 18, 'Asmadeuss', false, '775760794&show_for_all=e74fc6843b', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 18, 'Asmadeuss', true, '775758766&show_for_all=7f5f341c67', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'Asmadeuss', true, '775711431&show_for_all=c4be55dad5', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 18, 'Asmadeuss', true, '775711178&show_for_all=98773c99cd', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 18, 'Asmadeuss', true, '775710936&show_for_all=3b0efd5468', 'second'),
    new Descriptor(e_m.mummy_crypt, 3, 1, 18, 'Asmadeuss', true, '775710815&show_for_all=c350b40f48', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 18, 'Asmadeuss', true, '775710691&show_for_all=2bebf63292', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 18, 'Asmadeuss', true, '775710581&show_for_all=9523e9dd35', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 18, 'Asmadeuss', true, '775710473&show_for_all=2f7d13f72f', 'second'),
    new Descriptor(e_m.third_wisp, 3, 1, 18, 'Asmadeuss', true, '775710349&show_for_all=68c3e78c8c', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 18, 'Asmadeuss', true, '775710238&show_for_all=7a196128a0', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 18, 'Asmadeuss', true, '775710122&show_for_all=c1c2651139', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 18, 'Asmadeuss', true, '775710002&show_for_all=1e2aa5cc37', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 18, 'Asmadeuss', true, '775709817&show_for_all=6270e09016', 'second'),
    new Descriptor(e_m.mummy_crypt, 3, 1, 18, 'Asmadeuss', true, '775709665&show_for_all=28f1314bdc', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 18, 'Asmadeuss', true, '775709422&show_for_all=0867573bb4', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 18, 'Asmadeuss', true, '775709294&show_for_all=2b10624757', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 18, 'Asmadeuss', true, '775709103&show_for_all=dd0f0433d4', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 18, 'Asmadeuss', true, '775708747&show_for_all=96add692f0', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 18, 'Asmadeuss', true, '775708438&show_for_all=457375d3f1', 'second'),
    new Descriptor(e_m.witch, 3, 1, 18, 'Asmadeuss', true, '775708248&show_for_all=68062e3c52', 'second'),
    new Descriptor(e_m.furies, 3, 1, 18, 'Asmadeuss', true, '775708055&show_for_all=2f9018ce1b', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 18, 'Asmadeuss', true, '775707917&show_for_all=454bddba8d', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 18, 'Asmadeuss', true, '775707783&show_for_all=78938a78cb', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 18, 'Asmadeuss', false, '775706881&show_for_all=5abc6bf88c', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 18, 'Asmadeuss', true, '775706504&show_for_all=4f7e4fc708', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 18, 'Asmadeuss', true, '775706310&show_for_all=6794cc0c9e', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 18, 'Asmadeuss', true, '775705994&show_for_all=527ff2fb22', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 18, 'Asmadeuss', false, '775705073&show_for_all=75aa888b0b', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 18, 'Asmadeuss', true, '775704753&show_for_all=9900c31f9c', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Asmadeuss', true, '772869057&show_for_all=848922e116', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Asmadeuss', true, '772868234&show_for_all=251683fbbc', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 18, 'Asmadeuss', true, '772867192&show_for_all=f836daff8a', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 18, 'Asmadeuss', true, '772866776&show_for_all=55b67668d7', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 18, 'Asmadeuss', true, '772866300&show_for_all=7f27cbd479', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 18, 'Asmadeuss', true, '772866012&show_for_all=3a463d98e6', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 18, 'Asmadeuss', true, '772865294&show_for_all=f48bd83e07', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 18, 'Asmadeuss', true, '772863388&show_for_all=adc107d6cb', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 18, 'Asmadeuss', true, '772862118&show_for_all=e7ce2b9038', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 18, 'Asmadeuss', true, '772861175&show_for_all=7aef43ac68', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 18, 'Asmadeuss', true, '772860402&show_for_all=a35a8ab2f5', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 18, 'Asmadeuss', true, '772859888&show_for_all=59b8c08475', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 18, 'Asmadeuss', true, '772859260&show_for_all=f5d3866d36', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 18, 'Asmadeuss', true, '772858666&show_for_all=0f579328bc', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'Asmadeuss', true, '772857784&show_for_all=8504eb0b9d', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 18, 'Asmadeuss', true, '772857221&show_for_all=986435c20b', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 18, 'Asmadeuss', true, '772856425&show_for_all=ee0de5b3d0', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 18, 'Asmadeuss', true, '772855214&show_for_all=b1a1546a90', 'second'),
    new Descriptor(e_m.witch, 4, 1, 18, 'Asmadeuss', true, '772854759&show_for_all=bb1698c11c', 'second'),
    new Descriptor(e_m.furies, 4, 1, 18, 'Asmadeuss', true, '772853946&show_for_all=06a7ac4de2', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'Asmadeuss', true, '772853604&show_for_all=ce92027c2f', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'Asmadeuss', true, '772853207&show_for_all=a272c78978', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 18, 'Asmadeuss', true, '772852120&show_for_all=76d1fe3d8c', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 18, 'Asmadeuss', true, '772851628&show_for_all=e298ad7e22', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 18, 'Asmadeuss', true, '772850810&show_for_all=b9806e887a', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 18, 'Asmadeuss', true, '772850167&show_for_all=9402b4ede8', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Asmadeuss', true, '772841662&show_for_all=d38524d57b', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 18, 'Asmadeuss', true, '772840834&show_for_all=19de140edf', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 18, 'Asmadeuss', true, '772840540&show_for_all=c8bf2bb0c5', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 18, 'Asmadeuss', true, '772840130&show_for_all=5fa4492dee', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Asmadeuss', true, '772839586&show_for_all=7cbe76344e', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 18, 'Asmadeuss', true, '772838827&show_for_all=7b09af509d', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 18, 'Asmadeuss', true, '772838402&show_for_all=55852baa9a', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 18, 'Asmadeuss', true, '772837977&show_for_all=9391229763', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 18, 'Asmadeuss', true, '772837659&show_for_all=e4ea77bf53', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 18, 'Asmadeuss', true, '772837268&show_for_all=0a5122f0fd', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 18, 'Asmadeuss', true, '772836702&show_for_all=3c77a5f65d', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 18, 'Asmadeuss', true, '772836004&show_for_all=32106d8934', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 18, 'Asmadeuss', true, '772835180&show_for_all=fb4c78ec49', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Asmadeuss', false, '772833324&show_for_all=2e57aca1db', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Asmadeuss', false, '772831147&show_for_all=7a51993dfc', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 18, 'Asmadeuss', true, '772830664&show_for_all=166d13d81d', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'Asmadeuss', true, '772829491&show_for_all=2294ee6e42', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'Asmadeuss', false, '772826347&show_for_all=fbda12ca40', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 18, 'Asmadeuss', true, '772825669&show_for_all=290c29ffda', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 18, 'Asmadeuss', true, '772824903&show_for_all=489adb1870', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 18, 'Asmadeuss', true, '772824094&show_for_all=d3a3a033a0', 'second'),
    new Descriptor(e_m.witch, 4, 1, 18, 'Asmadeuss', true, '772823687&show_for_all=aa30f2db1b', 'second'),
    new Descriptor(e_m.furies, 4, 1, 18, 'Asmadeuss', true, '772823152&show_for_all=680b76b9c7', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 18, 'Asmadeuss', true, '772822313&show_for_all=a6f40b621e', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'Asmadeuss', true, '772822028&show_for_all=de54d6df87', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 18, 'Asmadeuss', true, '772821079&show_for_all=26e4ab9c0c', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 18, 'Asmadeuss', false, '772818854&show_for_all=3e23270248', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 18, 'Asmadeuss', true, '772818475&show_for_all=3dfa18dbdc', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 18, 'Asmadeuss', true, '772817941&show_for_all=0db9973415', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 18, 'Asmadeuss', true, '772817150&show_for_all=faaaea1ab3', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Asmadeuss', true, '772794366&show_for_all=a4ad7225f6', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 18, 'Asmadeuss', true, '772793738&show_for_all=460a496a7e', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 18, 'Asmadeuss', true, '772793306&show_for_all=e17b573e31', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 18, 'Asmadeuss', true, '772792853&show_for_all=6c2df5afdc', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 18, 'Asmadeuss', true, '772792470&show_for_all=e36ba96793', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Asmadeuss', false, '772790232&show_for_all=8a1a280aa6', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 18, 'Asmadeuss', true, '772789718&show_for_all=29b8bada91', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 18, 'Asmadeuss', true, '772788824&show_for_all=4530d6e297', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 18, 'Asmadeuss', true, '772788417&show_for_all=c551c188a9', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 18, 'Asmadeuss', true, '772786374&show_for_all=0c533910af', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Asmadeuss', true, '772785919&show_for_all=812640311d', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 18, 'Asmadeuss', true, '772785385&show_for_all=5cca456291', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 18, 'Asmadeuss', true, '772784301&show_for_all=8c2f19de74', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 18, 'Asmadeuss', true, '772783805&show_for_all=a18eb1ce0f', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 18, 'Asmadeuss', false, '772781351&show_for_all=59b0c5788f', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 18, 'Asmadeuss', true, '772780756&show_for_all=97bd2773e2', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'Asmadeuss', true, '772780137&show_for_all=fa34b1fde4', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 18, 'Asmadeuss', true, '772779556&show_for_all=10f8362f25', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 18, 'Asmadeuss', true, '772778877&show_for_all=d3381e7801', 'second'),
    new Descriptor(e_m.witch, 4, 1, 18, 'Asmadeuss', true, '772778367&show_for_all=ca4ce80a0e', 'second'),
    new Descriptor(e_m.furies, 4, 1, 18, 'Asmadeuss', true, '772777716&show_for_all=a6617534fc', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 18, 'Asmadeuss', true, '772777385&show_for_all=c526cf1efc', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'Asmadeuss', true, '772777025&show_for_all=dc07028734', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 18, 'Asmadeuss', true, '772775793&show_for_all=5e2f33d2ae', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 18, 'Asmadeuss', true, '772775333&show_for_all=bc289e6c99', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 18, 'Asmadeuss', true, '772774772&show_for_all=e10531a2a2', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 18, 'Asmadeuss', true, '772774348&show_for_all=a661304c4c', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 18, 'Asmadeuss', true, '772773578&show_for_all=bac0b66e1b', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'Александеръ', true, '835442027&show_for_all=b858d78fdf', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 18, 'Александеръ', true, '835440272&show_for_all=c3329bd419', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 18, 'Александеръ', true, '835438924&show_for_all=e5373cd8fa', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 18, 'Александеръ', true, '835436854&show_for_all=57a93ccd81', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 18, 'Александеръ', true, '835435741&show_for_all=197ef36232', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 18, 'Александеръ', true, '835434722&show_for_all=ffa6040124', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 18, 'Александеръ', true, '835433639&show_for_all=343fffce08', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 18, 'Александеръ', true, '835430592&show_for_all=ed2ebc3235', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 18, 'Александеръ', true, '835429334&show_for_all=9f58cbe15a', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 18, 'Александеръ', true, '835427523&show_for_all=56b5f36a94', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 18, 'Александеръ', true, '835424864&show_for_all=f60f571f3e', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 18, 'Александеръ', true, '835423740&show_for_all=fb58b575ee', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 18, 'Александеръ', true, '835421802&show_for_all=b58be18952', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 18, 'Александеръ', true, '835377232&show_for_all=5a3e5aae75', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 18, 'Александеръ', false, '835376603&show_for_all=0519447aa6', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 18, 'Александеръ', true, '835376097&show_for_all=bad83c85e9', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 18, 'Александеръ', true, '835375419&show_for_all=0212eb57a8', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 18, 'Александеръ', true, '835374640&show_for_all=12f4935fa3', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 18, 'Александеръ', true, '835357581&show_for_all=01ebf66ca7', 'second'),
    new Descriptor(e_m.witch, 6, 1, 18, 'Александеръ', true, '835356091&show_for_all=39d7ebfab2', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'Александеръ', true, '835352552&show_for_all=52cf51b25d', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'Александеръ', false, '835349952&show_for_all=b665a68ad5', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 18, 'Александеръ', true, '835347086&show_for_all=f74f20df08', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 18, 'Александеръ', false, '835345130&show_for_all=deb7c71b86', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 18, 'Александеръ', true, '835342602&show_for_all=33a77f497e', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 18, 'Александеръ', true, '835340752&show_for_all=4be6e81b08', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 18, 'Александеръ', true, '835338845&show_for_all=07ac965982', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 18, 'Александеръ', true, '835337715&show_for_all=32af35b986', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 18, 'Александеръ', true, '835245748&show_for_all=dfc0c48d47', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'Александеръ', true, '835103979&show_for_all=b6ce1bdb13', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'Александеръ', false, '835101784&show_for_all=27e5cd2152', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 18, 'Александеръ', true, '835099830&show_for_all=c277b98949', 'second'),
    new Descriptor(e_m.mummy_crypt, 3, 1, 18, 'Александеръ', true, '835097617&show_for_all=4e2dc121e9', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 18, 'Александеръ', true, '835096408&show_for_all=2a1cbb90fe', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 18, 'Александеръ', true, '835093354&show_for_all=1e4d616722', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 18, 'Александеръ', false, '835090856&show_for_all=ae4ba98e91', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 18, 'Александеръ', true, '835089954&show_for_all=e5bf5d986a', 'second'),
    new Descriptor(e_m.third_wisp, 3, 1, 18, 'Александеръ', true, '835010093&show_for_all=4a70ce2577', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 18, 'Александеръ', true, '835009630&show_for_all=6c8b58051e', 'second'),
    new Descriptor(e_m.mummy_crypt, 3, 1, 18, 'Александеръ', true, '835009127&show_for_all=3970f02fb9', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 18, 'Александеръ', true, '835008816&show_for_all=6d03f9e52f', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 18, 'Александеръ', true, '835007453&show_for_all=519d63191c', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 18, 'Александеръ', true, '835006774&show_for_all=7f608da194', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 18, 'Александеръ', true, '835006425&show_for_all=d96a2a0edf', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 18, 'Александеръ', true, '835005993&show_for_all=1f66317afb', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 18, 'Александеръ', false, '834991866&show_for_all=f9c87f3af4', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 18, 'Александеръ', true, '834990291&show_for_all=9e122d9899', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 18, 'Александеръ', true, '834988027&show_for_all=dfe8b50364', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 18, 'Александеръ', true, '834985688&show_for_all=6e46d2b0d2', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 18, 'Александеръ', true, '834981685&show_for_all=612b0c40f5', 'second'),
    new Descriptor(e_m.witch, 3, 1, 18, 'Александеръ', true, '834752092&show_for_all=b0dcc2d558', 'second'),
    new Descriptor(e_m.furies, 3, 1, 18, 'Александеръ', true, '834747006&show_for_all=60b2c72eeb', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 18, 'Александеръ', true, '834746379&show_for_all=95035c17f5', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 18, 'Александеръ', true, '834745291&show_for_all=7a3cb2b711', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 18, 'Александеръ', true, '834742808&show_for_all=6f4b93e863', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 18, 'Александеръ', true, '834741659&show_for_all=a079330a50', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 18, 'Александеръ', false, '834737184&show_for_all=0c638f7d3a', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 18, 'Александеръ', true, '834735670&show_for_all=675a64d678', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 18, 'Александеръ', true, '834734260&show_for_all=8c3d4ef0b1', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 18, 'Александеръ', true, '833063929&show_for_all=2389f25713', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'Александеръ', true, '831385217&show_for_all=3921421574', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 18, 'Александеръ', true, '831384091&show_for_all=0f23bb797f', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 18, 'Александеръ', true, '831382460&show_for_all=1e5d1467eb', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 18, 'Александеръ', true, '831381350&show_for_all=68bd0ae434', 'second'),
    new Descriptor(e_m.temple, 9, 0, 18, 'Александеръ', true, '831380157&show_for_all=095c409f53', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 18, 'Александеръ', true, '831378272&show_for_all=5662638ae4', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 18, 'Александеръ', false, '831374871&show_for_all=92f169536d', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 18, 'Александеръ', true, '830150239&show_for_all=51ed829176', 'second'),
    new Descriptor(e_m.third_wisp, 9, 0, 18, 'Александеръ', true, '830148858&show_for_all=c43cb1eb55', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 18, 'Александеръ', true, '830147649&show_for_all=ebaa332292', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 18, 'Александеръ', true, '830142915&show_for_all=46631709ab', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 18, 'Александеръ', true, '829995318&show_for_all=b6d7e488a3', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 18, 'Александеръ', true, '829993875&show_for_all=d4af112f68', 'second'),
    new Descriptor(e_m.mummy_crypt, 9, 0, 18, 'Александеръ', true, '829992273&show_for_all=4b36961209', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 18, 'Александеръ', true, '829990781&show_for_all=71405e8e23', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 18, 'Александеръ', true, '829989409&show_for_all=cb7ac5d9a8', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 18, 'Александеръ', false, '829896104&show_for_all=0d2c2f568a', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 18, 'Александеръ', true, '829892760&show_for_all=9ec61ee671', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 18, 'Александеръ', true, '829848719&show_for_all=0ad7903556', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 18, 'Александеръ', true, '829847999&show_for_all=77a97e4cea', 'second'),
    new Descriptor(e_m.furies, 9, 0, 18, 'Александеръ', true, '829847584&show_for_all=279d194019', 'second'),
    new Descriptor(e_m.witch, 9, 0, 18, 'Александеръ', true, '829847127&show_for_all=ae6b3c42fe', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 18, 'Александеръ', true, '829846600&show_for_all=e135b06610', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 18, 'Александеръ', true, '829846223&show_for_all=93220baa31', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 18, 'Александеръ', true, '829844549&show_for_all=334d365549', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 18, 'Александеръ', true, '829844043&show_for_all=37626bca10', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 18, 'Александеръ', true, '829511742&show_for_all=92fcd339bb', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 18, 'Александеръ', true, '829510268&show_for_all=36356594c6', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'Александеръ', true, '776600423&show_for_all=e00eace1ff', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'Александеръ', false, '776597649&show_for_all=d6694a5366', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 17, 'Александеръ', true, '776596535&show_for_all=3ee0ae70e3', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'Александеръ', true, '776595161&show_for_all=be4a482fbb', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 17, 'Александеръ', true, '776592075&show_for_all=80eef046eb', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 17, 'Александеръ', true, '776459836&show_for_all=c9b399571a', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'Александеръ', true, '776458758&show_for_all=ac90d0a981', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'Александеръ', false, '774145152&show_for_all=d0c874245d', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'Александеръ', false, '774141642&show_for_all=f051d3f6f4', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'Александеръ', false, '774140846&show_for_all=83b3334233', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 17, 'Александеръ', true, '774140290&show_for_all=7f944ab878', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 17, 'Александеръ', false, '774139656&show_for_all=ef32bbb55a', 'second'),
    new Descriptor(e_m.third_wisp, 6, 0, 17, 'Александеръ', true, '774138959&show_for_all=cc0c18b733', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 17, 'Александеръ', false, '773775402&show_for_all=e7f015a655', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 17, 'Александеръ', true, '773774483&show_for_all=91c2e7eb8d', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 17, 'Александеръ', true, '773773406&show_for_all=060807917d', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 17, 'Александеръ', true, '773772255&show_for_all=0845d9abcb', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 17, 'Александеръ', true, '773771283&show_for_all=0607c5f620', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 17, 'Александеръ', true, '773041842&show_for_all=26d6ae6140', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 17, 'Александеръ', true, '773040389&show_for_all=cb2de31e5e', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 17, 'Александеръ', true, '773038948&show_for_all=64aed36404', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 17, 'Александеръ', true, '773037353&show_for_all=f0c0213f8b', 'second'),
    new Descriptor(e_m.furies, 6, 0, 17, 'Александеръ', true, '773036148&show_for_all=4134520344', 'second'),
    new Descriptor(e_m.witch, 6, 0, 17, 'Александеръ', true, '773035378&show_for_all=2ba775d534', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 17, 'Александеръ', true, '773028118&show_for_all=18413a4f98', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 17, 'Александеръ', true, '773027410&show_for_all=5eb586c384', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'Александеръ', true, '772736281&show_for_all=2d91ee79c2', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 17, 'Александеръ', true, '772735568&show_for_all=887d5d3d5d', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 17, 'Александеръ', true, '772734666&show_for_all=1b8aac91ab', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 17, 'Александеръ', true, '772733455&show_for_all=711726075e', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 17, 'Александеръ', true, '772732001&show_for_all=c7df3e476f', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 16, 'Газкул', true, '829167549&show_for_all=6cfb3c19ce', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 16, 'Газкул', true, '829167066&show_for_all=9b0814d6f5', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 16, 'Газкул', true, '829166583&show_for_all=b61b2c8007', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 16, 'Газкул', true, '829166266&show_for_all=2de93129e5', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 16, 'Газкул', true, '829165857&show_for_all=9490c41f6b', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 16, 'Газкул', true, '829165580&show_for_all=29856e1dfd', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 16, 'Газкул', true, '829165254&show_for_all=c9a96c78ee', 'second'),
    new Descriptor(e_m.third_wisp, 6, 0, 16, 'Газкул', true, '829164933&show_for_all=fe40e84c69', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 16, 'Газкул', true, '829164347&show_for_all=83c4d28f96', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 16, 'Газкул', true, '829164005&show_for_all=3f68cd9699', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 16, 'Газкул', true, '829163518&show_for_all=f728a3cee5', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 16, 'Газкул', true, '829163224&show_for_all=98f2ffb0d7', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 16, 'Газкул', true, '829162901&show_for_all=4e55d93d1d', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 16, 'Газкул', true, '829162301&show_for_all=fe3bc6e599', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 16, 'Газкул', true, '829162058&show_for_all=7a507a65b2', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 16, 'Газкул', true, '829161573&show_for_all=92f0a053df', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 16, 'Газкул', true, '829161058&show_for_all=8e60ca3e06', 'second'),
    new Descriptor(e_m.witch, 6, 0, 16, 'Газкул', true, '829160658&show_for_all=712ba39395', 'second'),
    new Descriptor(e_m.furies, 6, 0, 16, 'Газкул', true, '829160154&show_for_all=480d7fbb7e', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 16, 'Газкул', true, '829159698&show_for_all=ca163e5c05', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 16, 'Газкул', true, '829159334&show_for_all=1b05ad6b68', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 16, 'Газкул', false, '829158355&show_for_all=d8832cf557', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 16, 'Газкул', true, '829157812&show_for_all=e7af0c21df', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 16, 'Газкул', true, '829156397&show_for_all=27f0c65012', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 16, 'Газкул', true, '829155783&show_for_all=96cf8d787f', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 16, 'Газкул', true, '829155081&show_for_all=a08dbc1bac', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 16, 'Газкул', true, '829153288&show_for_all=e088b5730f', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 16, 'Газкул', true, '828870110&show_for_all=2a61feb530', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 16, 'Газкул', true, '828866687&show_for_all=34509434aa', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 16, 'Газкул', true, '828864132&show_for_all=5be3dd5e44', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 16, 'Газкул', true, '828861412&show_for_all=56d5961c0d', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 16, 'Газкул', true, '828836385&show_for_all=1d3591bb19', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 16, 'Газкул', true, '828833665&show_for_all=d63fca3713', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 16, 'Газкул', true, '828831712&show_for_all=239e61be16', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 16, 'Газкул', true, '828828480&show_for_all=ae6792d74c', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 16, 'Газкул', true, '828826335&show_for_all=ca136ab52d', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 16, 'Газкул', true, '828824623&show_for_all=f147a33dfe', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 16, 'Газкул', true, '828747373&show_for_all=4cbfde9f65', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 16, 'Газкул', true, '828746789&show_for_all=8e58d036bc', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 16, 'Газкул', true, '828746241&show_for_all=0e92859b24', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 16, 'Газкул', true, '828745422&show_for_all=e703765292', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 16, 'Газкул', true, '828744676&show_for_all=31e2bc017f', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 16, 'Газкул', true, '828744107&show_for_all=1ba7040524', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 16, 'Газкул', true, '828743364&show_for_all=0fd0560c6d', 'second'),
    new Descriptor(e_m.furies, 6, 1, 16, 'Газкул', true, '828742506&show_for_all=6cc2bf33bc', 'second'),
    new Descriptor(e_m.witch, 6, 1, 16, 'Газкул', true, '828741995&show_for_all=fb9070be7d', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 16, 'Газкул', true, '828741414&show_for_all=fe74613eca', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 16, 'Газкул', true, '828740691&show_for_all=54a3d4ffd1', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 16, 'Газкул', true, '828739696&show_for_all=b2fdc28e04', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 16, 'Газкул', true, '828738950&show_for_all=8587658b33', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 16, 'Газкул', true, '828715878&show_for_all=074e5ff4ba', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 16, 'Газкул', true, '828712219&show_for_all=930359e3c3', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 16, 'Газкул', true, '828573109&show_for_all=d901b8f4a5', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'Газкул', true, '801469977&show_for_all=c8c7c3518d', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 16, 'Газкул', true, '801469604&show_for_all=e7d81834fd', 'second'),
    new Descriptor(e_m.mummy_crypt, 2, 1, 16, 'Газкул', true, '801469140&show_for_all=fea37cfd86', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 16, 'Газкул', true, '801468942&show_for_all=d2be00bc29', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 16, 'Газкул', true, '801468674&show_for_all=6de124b889', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 16, 'Газкул', true, '801468279&show_for_all=6c383cbf60', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 16, 'Газкул', true, '801467974&show_for_all=c8133c8add', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 16, 'Газкул', true, '801467171&show_for_all=234b198286', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 16, 'Газкул', true, '801466718&show_for_all=9ff3d3464d', 'second'),
    new Descriptor(e_m.third_wisp, 2, 1, 16, 'Газкул', true, '801466166&show_for_all=ece92bf041', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 16, 'Газкул', true, '801465693&show_for_all=0c09a2f91c', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 16, 'Газкул', true, '801465273&show_for_all=7eaa41e20b', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 16, 'Газкул', true, '801464928&show_for_all=a6cb58ba76', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 16, 'Газкул', true, '801464493&show_for_all=d622b5f464', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 16, 'Газкул', true, '801324196&show_for_all=c7d3b04e1c', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 16, 'Газкул', true, '801323728&show_for_all=85272caa02', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 16, 'Газкул', true, '801321966&show_for_all=6d62c66c37', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 16, 'Газкул', true, '801321420&show_for_all=b66708c43d', 'second'),
    new Descriptor(e_m.witch, 2, 1, 16, 'Газкул', true, '800717560&show_for_all=20ed953935', 'second'),
    new Descriptor(e_m.furies, 2, 1, 16, 'Газкул', true, '800717216&show_for_all=941940329e', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 16, 'Газкул', true, '800716842&show_for_all=7a968acd63', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 16, 'Газкул', true, '800716574&show_for_all=0120cc1cd2', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 16, 'Газкул', false, '800716090&show_for_all=70e7e2d03e', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 16, 'Газкул', true, '800715797&show_for_all=493f5857fb', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 16, 'Газкул', true, '800715514&show_for_all=3c2540708a', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 16, 'Газкул', true, '800715213&show_for_all=72d04b8eaf', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 16, 'Газкул', true, '800714912&show_for_all=0ec6f068e9', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 16, 'Газкул', true, '795059068&show_for_all=3faa752cc2', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 16, 'Газкул', true, '794741888&show_for_all=4e9a9390d8', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 16, 'Газкул', true, '794741259&show_for_all=531ba49906', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 16, 'Газкул', true, '794740317&show_for_all=b29d08b849', 'second'),
    new Descriptor(e_m.undead_boss, 2, 0, 16, 'Газкул', true, '794739379&show_for_all=696fa361ce', 'second'),
    new Descriptor(e_m.mummy_crypt, 2, 0, 16, 'Газкул', true, '794738038&show_for_all=03b214a68e', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'Газкул', true, '794737001&show_for_all=bebbec7ae0', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'Газкул', true, '794735972&show_for_all=f40f69a48f', 'second'),
    new Descriptor(e_m.third_wisp, 2, 0, 16, 'Газкул', true, '794680765&show_for_all=4d182d4153', 'second'),
    new Descriptor(e_m.temple, 2, 0, 16, 'Газкул', true, '794679621&show_for_all=4c4f66ed68', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 16, 'Газкул', true, '794678239&show_for_all=7e25688856', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 16, 'Газкул', true, '794677380&show_for_all=e81f7d1ebe', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 16, 'Газкул', true, '794674725&show_for_all=c9508b17f1', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 16, 'Газкул', true, '794673418&show_for_all=333bd189b5', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 16, 'Газкул', true, '794671939&show_for_all=b19ccb666b', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 16, 'Газкул', true, '794669739&show_for_all=c86c946f2a', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 16, 'Газкул', true, '794664442&show_for_all=13ec955b49', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 16, 'Газкул', false, '794661355&show_for_all=09cd2cceaa', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 16, 'Газкул', true, '794658239&show_for_all=bd3e271efe', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 16, 'Газкул', true, '794655767&show_for_all=1a59c4514e', 'second'),
    new Descriptor(e_m.furies, 2, 0, 16, 'Газкул', true, '794653217&show_for_all=98f3ff887e', 'second'),
    new Descriptor(e_m.witch, 2, 0, 16, 'Газкул', true, '794652263&show_for_all=ff1e8df7fb', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 16, 'Газкул', true, '794650933&show_for_all=6852e9e04e', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 16, 'Газкул', true, '794650068&show_for_all=a9fe276a0a', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 16, 'Газкул', true, '794646928&show_for_all=56edb5aefb', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 16, 'Газкул', true, '794645840&show_for_all=58724f5363', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 16, 'Газкул', true, '794644467&show_for_all=bd6166abc2', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'Газкул', true, '794642934&show_for_all=c0fd9cb9dc', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'Газкул', false, '794641116&show_for_all=ed4bcf8a7b', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'Газкул', false, '794639005&show_for_all=bebafe7dfe', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'Газкул', false, '794637109&show_for_all=0a3c169e33', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'Газкул', false, '794635162&show_for_all=44dd2b7801', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 16, 'Газкул', true, '791277604&show_for_all=e07d3c2952', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 16, 'Газкул', true, '791275714&show_for_all=6a669072f5', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 16, 'Газкул', true, '791274454&show_for_all=22eef54fee', 'second'),
    new Descriptor(e_m.temple, 8, 0, 16, 'Газкул', true, '791272427&show_for_all=e85d0ceb53', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 16, 'Газкул', true, '791270330&show_for_all=bc5f00722c', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 16, 'Газкул', true, '791269121&show_for_all=60d8638a5f', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 16, 'Газкул', true, '791267072&show_for_all=53a84a7098', 'second'),
    new Descriptor(e_m.third_wisp, 8, 0, 16, 'Газкул', true, '791265254&show_for_all=6c477ff8cc', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 16, 'Газкул', true, '791262788&show_for_all=015ed02326', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 16, 'Газкул', true, '791259942&show_for_all=1b27176661', 'second'),
    new Descriptor(e_m.mummy_crypt, 8, 0, 16, 'Газкул', true, '791257609&show_for_all=f733e0d5be', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 16, 'Газкул', true, '791255370&show_for_all=cfa5a9095d', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 16, 'Газкул', false, '791252049&show_for_all=4ba2417490', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 16, 'Газкул', false, '791249350&show_for_all=f74a47d9c6', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 16, 'Газкул', false, '791247192&show_for_all=b6f984830c', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 16, 'Газкул', false, '791242747&show_for_all=8ca35510f4', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 16, 'Газкул', true, '791238597&show_for_all=16a94916a4', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 16, 'Газкул', true, '791236715&show_for_all=1705afbd79', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 16, 'Газкул', true, '791234896&show_for_all=6aeb8212c0', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 16, 'Газкул', true, '791231795&show_for_all=a72badba1e', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 16, 'Газкул', true, '791228756&show_for_all=c45795b370', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 16, 'Газкул', true, '791226033&show_for_all=123c11c939', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 16, 'Газкул', false, '791219154&show_for_all=160d225e9f', 'second'),
    new Descriptor(e_m.witch, 8, 0, 16, 'Газкул', true, '791217911&show_for_all=043a496c5c', 'second'),
    new Descriptor(e_m.furies, 8, 0, 16, 'Газкул', true, '791216357&show_for_all=19f4224c6b', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 16, 'Газкул', true, '791214753&show_for_all=d7052d223b', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 16, 'Газкул', false, '791210491&show_for_all=6969830f09', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 16, 'Газкул', true, '791208299&show_for_all=fc3654cfa9', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 16, 'Газкул', true, '791203934&show_for_all=ea0daa4951', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 16, 'Газкул', false, '791199854&show_for_all=15d645b52c', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 16, 'Газкул', true, '791196461&show_for_all=f0f78c9f5c', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 16, 'Газкул', true, '791194005&show_for_all=f40c0d467e', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 16, 'Газкул', true, '791192033&show_for_all=d821998fc5', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 15, 'Газкул', true, '784084509&show_for_all=2e444f5b6b', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 15, 'Газкул', true, '784084275&show_for_all=f6bbbbc6c9', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 15, 'Газкул', true, '784084112&show_for_all=9aee22dfc3', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 15, 'Газкул', true, '784083921&show_for_all=9934acb506', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 15, 'Газкул', true, '784083786&show_for_all=adc27503f5', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 15, 'Газкул', true, '784083610&show_for_all=3661dc9c3d', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 15, 'Газкул', true, '784083452&show_for_all=2274077873', 'second'),
    new Descriptor(e_m.third_wisp, 4, 0, 15, 'Газкул', true, '784083250&show_for_all=4102b47d66', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 15, 'Газкул', true, '784082998&show_for_all=0fb8968665', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 15, 'Газкул', true, '784082499&show_for_all=b26103edd7', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 15, 'Газкул', true, '784082240&show_for_all=1b3b8a9d89', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 15, 'Газкул', true, '784082037&show_for_all=26cd7745ac', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 15, 'Газкул', true, '784081859&show_for_all=eca41c0613', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 15, 'Газкул', true, '784081553&show_for_all=b64436565d', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 15, 'Газкул', true, '784081131&show_for_all=20e5400d90', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 15, 'Газкул', true, '784080721&show_for_all=b393c9172c', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 15, 'Газкул', true, '784080378&show_for_all=ac8b9f8ceb', 'second'),
    new Descriptor(e_m.furies, 4, 0, 15, 'Газкул', true, '784079769&show_for_all=d57edb5931', 'second'),
    new Descriptor(e_m.witch, 4, 0, 15, 'Газкул', true, '784079587&show_for_all=f81ae75130', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 15, 'Газкул', true, '784079329&show_for_all=61fbc9f97e', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 15, 'Газкул', true, '784079035&show_for_all=e33a20a361', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 15, 'Газкул', true, '784078609&show_for_all=cb9db9c3a2', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 15, 'Газкул', true, '784078277&show_for_all=edd1cd7bc5', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 15, 'Газкул', true, '784077426&show_for_all=68517498b4', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 15, 'Газкул', true, '784076805&show_for_all=ca3d284f16', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 15, 'Газкул', true, '784075882&show_for_all=7383b79d1f', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 15, 'Газкул', true, '782509415&show_for_all=ffa2693e5a', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 15, 'Газкул', true, '782508715&show_for_all=52936c0ac1', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 15, 'Газкул', true, '782507651&show_for_all=9e219063bf', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 15, 'Газкул', true, '782506656&show_for_all=7fae62a5e5', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 15, 'Газкул', true, '782506094&show_for_all=c37500ac5a', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 15, 'Газкул', true, '782505526&show_for_all=47232690c1', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 15, 'Газкул', true, '782504913&show_for_all=3b2bd2f866', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 15, 'Газкул', true, '782504517&show_for_all=d52ece6004', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 15, 'Газкул', true, '782503366&show_for_all=81ad03d275', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 15, 'Газкул', true, '782502587&show_for_all=40c05aa6be', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 15, 'Газкул', true, '782501953&show_for_all=2d2db6708e', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 15, 'Газкул', true, '782501389&show_for_all=b29a30c329', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 15, 'Газкул', true, '782500952&show_for_all=fc490ad747', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 15, 'Газкул', true, '782497827&show_for_all=b7eff81a41', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 15, 'Газкул', true, '782496784&show_for_all=f6dfb03009', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 15, 'Газкул', true, '782494825&show_for_all=9de364524c', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 15, 'Газкул', true, '782493520&show_for_all=0d542416fb', 'second'),
    new Descriptor(e_m.furies, 4, 1, 15, 'Газкул', true, '782492404&show_for_all=ec9ec4e7bc', 'second'),
    new Descriptor(e_m.witch, 4, 1, 15, 'Газкул', true, '782491532&show_for_all=8afe1b67e0', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 15, 'Газкул', true, '782491049&show_for_all=e534e73b08', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 15, 'Газкул', true, '782490197&show_for_all=22327b716e', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 15, 'Газкул', true, '782488006&show_for_all=e97935f4f6', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 15, 'Газкул', true, '782487694&show_for_all=63f2ca05da', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 15, 'Газкул', true, '782463460&show_for_all=ab385c363c', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 15, 'Газкул', true, '782462841&show_for_all=6a7f05b1e2', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 15, 'Газкул', true, '782460116&show_for_all=00c40ee820', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 15, 'Газкул', true, '782351856&show_for_all=4b116a4984', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 15, 'Газкул', true, '782351263&show_for_all=5b0926a118', 'second'),
    new Descriptor(e_m.temple, 4, 1, 15, 'Газкул', true, '782350534&show_for_all=50a11cc42e', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 15, 'Газкул', true, '782350008&show_for_all=56c04d8a9e', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 15, 'Газкул', true, '782349549&show_for_all=35ff888f3f', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 15, 'Газкул', true, '782349127&show_for_all=c38a0fc167', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 15, 'Газкул', true, '782348643&show_for_all=2305d74cc1', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 15, 'Газкул', true, '782346025&show_for_all=89f63a9ebe', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 15, 'Газкул', true, '782345409&show_for_all=a426db28b5', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 15, 'Газкул', true, '782344782&show_for_all=82304a69ec', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 15, 'Газкул', true, '782343996&show_for_all=4323245a5a', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 15, 'Газкул', true, '782343430&show_for_all=8507cf1ff4', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 15, 'Газкул', true, '782342857&show_for_all=ef090d7d9a', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 15, 'Газкул', true, '782341046&show_for_all=ba66e571c2', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 15, 'Газкул', true, '782340188&show_for_all=4a0cc385d7', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 15, 'Газкул', false, '782336871&show_for_all=3d16d4c5e4', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 15, 'Газкул', false, '782328006&show_for_all=62e636d423', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 15, 'Газкул', true, '782327037&show_for_all=c2cffd6ad5', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 15, 'Газкул', true, '782325444&show_for_all=640e1c5d6e', 'second'),
    new Descriptor(e_m.furies, 4, 1, 15, 'Газкул', true, '782324853&show_for_all=9147c6d29a', 'second'),
    new Descriptor(e_m.witch, 4, 1, 15, 'Газкул', true, '782324572&show_for_all=862a48e792', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 15, 'Газкул', true, '782324037&show_for_all=b835ee723d', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 15, 'Газкул', true, '782323636&show_for_all=c4c1ecd256', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 15, 'Газкул', true, '782321378&show_for_all=0e92c6def0', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 15, 'Газкул', true, '782321086&show_for_all=2e131000e7', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 15, 'Газкул', true, '782320371&show_for_all=71f50fe4cc', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 15, 'Газкул', true, '782319789&show_for_all=653db4aa57', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 15, 'Газкул', true, '782318831&show_for_all=d813e0a534', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'IceZorro', true, '838192137&show_for_all=55373e3c73', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 17, 'IceZorro', true, '838191081&show_for_all=ee149fba5c', 'second'),
    new Descriptor(e_m.mummy_crypt, 1, 1, 17, 'IceZorro', true, '838188886&show_for_all=065ba15210', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 17, 'IceZorro', true, '838187779&show_for_all=3a0b88890f', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 17, 'IceZorro', true, '838186153&show_for_all=e839496d7f', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 17, 'IceZorro', true, '838185586&show_for_all=d9bac2e879', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 17, 'IceZorro', true, '838184805&show_for_all=1c6b79346b', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 17, 'IceZorro', false, '838168879&show_for_all=8a1e258e70', 'second'),
    new Descriptor(e_m.third_wisp, 1, 1, 17, 'IceZorro', true, '838167532&show_for_all=c334aa1440', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 17, 'IceZorro', true, '838166362&show_for_all=a1c13179cd', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 17, 'IceZorro', true, '838165290&show_for_all=acc604c900', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 17, 'IceZorro', true, '838163025&show_for_all=53059e87ba', 'second'),
    new Descriptor(e_m.mummy_crypt, 1, 1, 17, 'IceZorro', true, '838158154&show_for_all=5c22ee6037', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 17, 'IceZorro', true, '838157527&show_for_all=2be8785715', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 17, 'IceZorro', true, '838156602&show_for_all=0025dbc786', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 17, 'IceZorro', true, '838155484&show_for_all=4126c6a689', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 17, 'IceZorro', true, '838154166&show_for_all=a1eb1cd69e', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 17, 'IceZorro', true, '838152433&show_for_all=338e50a7de', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 17, 'IceZorro', true, '838149044&show_for_all=19b7be5960', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 17, 'IceZorro', false, '838144022&show_for_all=45f744fb4c', 'second'),
    new Descriptor(e_m.witch, 1, 1, 17, 'IceZorro', true, '838143245&show_for_all=0dd8fbaacd', 'second'),
    new Descriptor(e_m.furies, 1, 1, 17, 'IceZorro', true, '838142273&show_for_all=f797fdc4ce', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 17, 'IceZorro', true, '838141325&show_for_all=298269b919', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 17, 'IceZorro', true, '838139926&show_for_all=490f19a396', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 17, 'IceZorro', false, '838133456&show_for_all=59043d24d9', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 17, 'IceZorro', true, '838131445&show_for_all=d21ab23fdb', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 17, 'IceZorro', true, '835110607&show_for_all=5ce407acf8', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 17, 'IceZorro', false, '835109358&show_for_all=3030c4f292', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 17, 'IceZorro', true, '835108873&show_for_all=8f85b05f7e', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 17, 'IceZorro', true, '835108612&show_for_all=d5c9d090e0', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 17, 'IceZorro', true, '833351425&show_for_all=6545364394', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 17, 'IceZorro', true, '833351017&show_for_all=0fcd5e90fd', 'second'),
    new Descriptor(e_m.mummy_crypt, 1, 0, 17, 'IceZorro', true, '833350530&show_for_all=ba03abb5d2', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'IceZorro', true, '833350153&show_for_all=aa75759877', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 17, 'IceZorro', true, '833349452&show_for_all=2d2d159742', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 17, 'IceZorro', true, '833349097&show_for_all=2918df927d', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 17, 'IceZorro', true, '833348654&show_for_all=43b4841f53', 'second'),
    new Descriptor(e_m.third_wisp, 1, 0, 17, 'IceZorro', true, '833348360&show_for_all=9d908f91cf', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 17, 'IceZorro', true, '833347746&show_for_all=ab836730e1', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 17, 'IceZorro', false, '833346554&show_for_all=8cc389079a', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 17, 'IceZorro', false, '833345481&show_for_all=e28030983f', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 17, 'IceZorro', false, '833343345&show_for_all=4a0a5c1041', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 17, 'IceZorro', true, '833339454&show_for_all=1bbac60965', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 17, 'IceZorro', false, '833334363&show_for_all=23e0f25a71', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 17, 'IceZorro', true, '833333702&show_for_all=8de7fd9e86', 'second'),
    new Descriptor(e_m.temple, 1, 0, 17, 'IceZorro', true, '833333098&show_for_all=3f25108c06', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 17, 'IceZorro', true, '833332777&show_for_all=41fd9094d6', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 17, 'IceZorro', true, '833331717&show_for_all=6a357da4fa', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 17, 'IceZorro', true, '833330839&show_for_all=940f6cc7bb', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 17, 'IceZorro', true, '833327392&show_for_all=af2466563e', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 17, 'IceZorro', false, '833322608&show_for_all=48a3a53b38', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 17, 'IceZorro', true, '833320077&show_for_all=1839440c4c', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 17, 'IceZorro', true, '833318258&show_for_all=2faa513d69', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 17, 'IceZorro', true, '833316604&show_for_all=42578d1f71', 'second'),
    new Descriptor(e_m.furies, 1, 0, 17, 'IceZorro', true, '833306052&show_for_all=87de93ce3d', 'second'),
    new Descriptor(e_m.furies, 1, 0, 17, 'IceZorro', false, '832886996&show_for_all=e1e1ed2df6', 'second'),
    new Descriptor(e_m.witch, 1, 0, 17, 'IceZorro', true, '832879787&show_for_all=ac6bf382e0', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 17, 'IceZorro', true, '832877467&show_for_all=efe6d7792d', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 17, 'IceZorro', false, '832875654&show_for_all=253bb63c1b', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 17, 'IceZorro', true, '832875212&show_for_all=ba82abdc4a', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 17, 'IceZorro', true, '832874338&show_for_all=a51e11a253', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 17, 'IceZorro', true, '832874033&show_for_all=b18c42286b', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 17, 'IceZorro', true, '832873364&show_for_all=d5ee51ff54', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 17, 'IceZorro', true, '820643470&show_for_all=afc2da2b3a', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 17, 'IceZorro', true, '820642719&show_for_all=9846638981', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 17, 'IceZorro', true, '820638521&show_for_all=57ba57903e', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'IceZorro', true, '820638020&show_for_all=a847d05447', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 17, 'IceZorro', true, '820637626&show_for_all=0f41a86a01', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 17, 'IceZorro', true, '820637316&show_for_all=38498a24b7', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 17, 'IceZorro', true, '820636631&show_for_all=88bdc9833e', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 17, 'IceZorro', true, '820635948&show_for_all=fb3ea43cea', 'second'),
    new Descriptor(e_m.third_wisp, 4, 0, 17, 'IceZorro', true, '820635503&show_for_all=5c1c376b7e', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 17, 'IceZorro', true, '820634649&show_for_all=ddf54d8a66', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 17, 'IceZorro', true, '820634021&show_for_all=c74fa79186', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 17, 'IceZorro', true, '820632816&show_for_all=494a73eefc', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 17, 'IceZorro', true, '820631965&show_for_all=12603e40fe', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 17, 'IceZorro', true, '820631436&show_for_all=00484a76a3', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 17, 'IceZorro', true, '820631068&show_for_all=cfd7665bc5', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 17, 'IceZorro', true, '820630248&show_for_all=18d9fe9780', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 17, 'IceZorro', true, '820629400&show_for_all=5bfafb6c46', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 17, 'IceZorro', true, '820627351&show_for_all=251ec593a9', 'second'),
    new Descriptor(e_m.furies, 4, 0, 17, 'IceZorro', true, '820626076&show_for_all=449af1f872', 'second'),
    new Descriptor(e_m.witch, 4, 0, 17, 'IceZorro', true, '820625593&show_for_all=062336eedb', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 17, 'IceZorro', true, '820624520&show_for_all=0ab6a769f6', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 17, 'IceZorro', true, '820624013&show_for_all=79308384a0', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 17, 'IceZorro', true, '820623193&show_for_all=c24738003e', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 17, 'IceZorro', true, '820622712&show_for_all=ccb94e54da', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 17, 'IceZorro', true, '820622037&show_for_all=4f15b4d3db', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 17, 'IceZorro', true, '820621549&show_for_all=63191c0365', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'IceZorro', true, '820540976&show_for_all=7a3977b6d2', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 17, 'IceZorro', true, '820540255&show_for_all=5149995e86', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 17, 'IceZorro', true, '820539195&show_for_all=a48d9ed524', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'IceZorro', true, '820538511&show_for_all=9bb87f6621', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 17, 'IceZorro', true, '820538050&show_for_all=676619ecdc', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 17, 'IceZorro', true, '820537235&show_for_all=d0da29ae9d', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 17, 'IceZorro', true, '820536503&show_for_all=822a7624a4', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 17, 'IceZorro', true, '820535429&show_for_all=0c28ed826e', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 17, 'IceZorro', true, '820534909&show_for_all=1784c80339', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 17, 'IceZorro', true, '820534125&show_for_all=f7fec33e82', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 17, 'IceZorro', true, '820533223&show_for_all=44267c5dcb', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'IceZorro', true, '819085591&show_for_all=78887b54c1', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 17, 'IceZorro', true, '819085003&show_for_all=2630f59ae7', 'second'),
    new Descriptor(e_m.temple, 4, 1, 17, 'IceZorro', true, '819084451&show_for_all=0c527f6e8c', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 17, 'IceZorro', true, '819084098&show_for_all=35d46b367f', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 17, 'IceZorro', true, '819083473&show_for_all=f6ef2c4593', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 17, 'IceZorro', true, '819083156&show_for_all=e4869a4e93', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 17, 'IceZorro', true, '819082696&show_for_all=da663487e1', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 17, 'IceZorro', true, '819082027&show_for_all=6529d127a3', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 17, 'IceZorro', true, '819081111&show_for_all=3ece7bd5bd', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 17, 'IceZorro', true, '819080507&show_for_all=c7e4d4c210', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'IceZorro', true, '819079944&show_for_all=4adfed9323', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'IceZorro', true, '819079359&show_for_all=8cc387bc24', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'IceZorro', false, '819002174&show_for_all=501e6d5fc4', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'IceZorro', false, '818999778&show_for_all=78c2421e07', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 17, 'IceZorro', true, '818998478&show_for_all=990787ada6', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 17, 'IceZorro', true, '818997752&show_for_all=70b463e675', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 17, 'IceZorro', false, '818993173&show_for_all=a945f18c38', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 17, 'IceZorro', true, '818914702&show_for_all=d04e7a5f36', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 17, 'IceZorro', true, '818913477&show_for_all=fdc6b58cac', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 17, 'IceZorro', true, '818911822&show_for_all=4b10062f5c', 'second'),
    new Descriptor(e_m.witch, 4, 1, 17, 'IceZorro', true, '818880463&show_for_all=9c5ccc10db', 'second'),
    new Descriptor(e_m.furies, 4, 1, 17, 'IceZorro', true, '818880123&show_for_all=b4b80ace68', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 17, 'IceZorro', true, '818879923&show_for_all=24b57980cb', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 17, 'IceZorro', true, '818879642&show_for_all=cccd3e1f4a', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 17, 'IceZorro', true, '818878582&show_for_all=5531de26d1', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 17, 'IceZorro', true, '818878156&show_for_all=47b0ac4652', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 17, 'IceZorro', false, '808884737&show_for_all=11ce3dfbaa', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 17, 'IceZorro', false, '808881733&show_for_all=e5d0956c01', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 17, 'IceZorro', true, '808880825&show_for_all=eae0d6be14', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 17, 'IceZorro', true, '808878412&show_for_all=89409011f2', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 17, 'IceZorro', true, '808877667&show_for_all=2d70ca0a1d', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 17, 'IceZorro', false, '808865134&show_for_all=002ce532e8', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 17, 'IceZorro', false, '805275343&show_for_all=8cd886c026', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 17, 'IceZorro', true, '805273331&show_for_all=1c63a15154', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 17, 'IceZorro', false, '805236256&show_for_all=8c6fcb8a75', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 17, 'IceZorro', true, '805235068&show_for_all=c389c884bc', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 17, 'IceZorro', false, '805232810&show_for_all=5a071dead3', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 17, 'IceZorro', false, '796864738&show_for_all=981537e160', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 17, 'IceZorro', true, '796860874&show_for_all=4b013a8b1a', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 17, 'IceZorro', true, '796860262&show_for_all=07bf81f69e', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 17, 'IceZorro', true, '796852973&show_for_all=87afeae274', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 17, 'IceZorro', true, '796851031&show_for_all=fded6c4e19', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'IceZorro', true, '796834807&show_for_all=7e9f27c7c4', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'IceZorro', false, '796817768&show_for_all=66981629c1', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'IceZorro', false, '796813212&show_for_all=55ab854e62', 'second'),
    new Descriptor(e_m.furies, 6, 1, 17, 'IceZorro', true, '796812142&show_for_all=e942d0dfac', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 17, 'IceZorro', true, '796811450&show_for_all=544118b4bc', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 17, 'IceZorro', true, '796810714&show_for_all=32c08f9fb8', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 17, 'IceZorro', false, '796807428&show_for_all=fffc8c6d33', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 17, 'IceZorro', true, '796741221&show_for_all=8e9c3dca2d', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 17, 'IceZorro', true, '796738275&show_for_all=2c075790e6', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'IceZorro', true, '796736982&show_for_all=44941261ad', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 17, 'IceZorro', true, '796359542&show_for_all=317846fe0b', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 17, 'IceZorro', true, '796358386&show_for_all=55ac1dbc80', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'IceZorro', true, '795054841&show_for_all=40791f802e', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'IceZorro', false, '795052382&show_for_all=af06ed6c73', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 17, 'IceZorro', true, '795052053&show_for_all=02a5e94529', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 17, 'IceZorro', true, '795051799&show_for_all=4b590cea5d', 'second'),
    new Descriptor(e_m.temple, 5, 0, 17, 'IceZorro', true, '795051457&show_for_all=3dfb96a9ba', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 17, 'IceZorro', true, '795050895&show_for_all=fec105f005', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 17, 'IceZorro', true, '795050290&show_for_all=52c4177db2', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 0, 17, 'IceZorro', true, '795049526&show_for_all=e3fe6f644b', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 17, 'IceZorro', true, '794980212&show_for_all=39cecd58cd', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 17, 'IceZorro', true, '794979557&show_for_all=9a3d15851f', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 17, 'IceZorro', true, '794978439&show_for_all=273d254190', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 17, 'IceZorro', true, '794974667&show_for_all=f5be23155e', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 17, 'IceZorro', true, '794973940&show_for_all=f265e53d94', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 17, 'IceZorro', false, '794956773&show_for_all=a012e61fbe', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 17, 'IceZorro', false, '794953910&show_for_all=3afe6689ed', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 17, 'IceZorro', false, '794946291&show_for_all=652924d33e', 'second'),
    new Descriptor(e_m.third_wisp, 5, 0, 17, 'IceZorro', true, '794945903&show_for_all=ee51518e9d', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 17, 'IceZorro', true, '794935720&show_for_all=51bd8d92ea', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 17, 'IceZorro', false, '794932598&show_for_all=bec344a505', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 17, 'IceZorro', true, '794932095&show_for_all=012fc29542', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 17, 'IceZorro', true, '794930773&show_for_all=455b626f16', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 17, 'IceZorro', true, '794930041&show_for_all=bc76a7f840', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 17, 'IceZorro', true, '794929140&show_for_all=19282e1212', 'second'),
    new Descriptor(e_m.furies, 5, 0, 17, 'IceZorro', true, '794928465&show_for_all=e0809fbf0a', 'second'),
    new Descriptor(e_m.furies, 5, 0, 17, 'IceZorro', false, '794912991&show_for_all=0606a16692', 'second'),
    new Descriptor(e_m.witch, 5, 0, 17, 'IceZorro', true, '794912628&show_for_all=a9f3e25d6a', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 17, 'IceZorro', true, '794912153&show_for_all=387c267c19', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 17, 'IceZorro', false, '794908744&show_for_all=f2f8d94b9b', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 17, 'IceZorro', true, '794908053&show_for_all=aeed04766b', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'IceZorro', true, '794906911&show_for_all=c5e969af20', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'IceZorro', false, '794849793&show_for_all=670829c1b6', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'IceZorro', false, '794847416&show_for_all=109ab3b8a9', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'IceZorro', false, '794840592&show_for_all=0138aba137', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 17, 'IceZorro', true, '794840343&show_for_all=24d4c812cd', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'IceZorro', true, '794792603&show_for_all=c9dc5fc764', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'IceZorro', false, '794791401&show_for_all=a2a50acac0', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'IceZorro', false, '794789755&show_for_all=9fe290aa27', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'IceZorro', false, '794768839&show_for_all=1b110af51c', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 17, 'IceZorro', true, '794750346&show_for_all=5cb96cec28', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 17, 'IceZorro', false, '794749323&show_for_all=40b98e15c6', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 17, 'IceZorro', true, '794714175&show_for_all=67fae5f776', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 17, 'IceZorro', true, '794713819&show_for_all=6f2819dd5a', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 17, 'IceZorro', true, '794713338&show_for_all=1bd387c7a2', 'second'),
    new Descriptor(e_m.temple, 5, 2, 17, 'IceZorro', true, '794712917&show_for_all=0984b26486', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 17, 'IceZorro', true, '794712353&show_for_all=d849d3fea2', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 17, 'IceZorro', true, '794711955&show_for_all=ebd5327d15', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 17, 'IceZorro', true, '794711073&show_for_all=ce11ad733a', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 17, 'IceZorro', false, '794709127&show_for_all=c64d77321b', 'second'),
    new Descriptor(e_m.third_wisp, 5, 2, 17, 'IceZorro', true, '794708489&show_for_all=a886861cb9', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 17, 'IceZorro', true, '794707806&show_for_all=171428bc9f', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 17, 'IceZorro', true, '794707088&show_for_all=33e3a96749', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 17, 'IceZorro', true, '794704888&show_for_all=75b4e6288c', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 17, 'IceZorro', false, '794702711&show_for_all=5622944bd2', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 17, 'IceZorro', true, '794700266&show_for_all=efa888ce94', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 2, 17, 'IceZorro', true, '794699437&show_for_all=6b542878f7', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 17, 'IceZorro', true, '794698969&show_for_all=6707ca1f81', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 17, 'IceZorro', true, '794698357&show_for_all=87c738ce94', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 17, 'IceZorro', true, '794697650&show_for_all=392c537187', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 17, 'IceZorro', false, '794695688&show_for_all=5d14ef1cf4', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 17, 'IceZorro', false, '794693987&show_for_all=3eff2e8d69', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 17, 'IceZorro', true, '794692847&show_for_all=2990d180b1', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 17, 'IceZorro', false, '794676547&show_for_all=3c41d46107', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 17, 'IceZorro', false, '794666336&show_for_all=61ef526d59', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 17, 'IceZorro', true, '794665333&show_for_all=813c8d71da', 'second'),
    new Descriptor(e_m.witch, 5, 2, 17, 'IceZorro', true, '794665016&show_for_all=a09d18395a', 'second'),
    new Descriptor(e_m.furies, 5, 2, 17, 'IceZorro', true, '794664527&show_for_all=9f207aec92', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 17, 'IceZorro', true, '794664158&show_for_all=6c6e478beb', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 17, 'IceZorro', true, '794661936&show_for_all=7ac3c8dfa1', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 17, 'IceZorro', false, '794654808&show_for_all=bd86dba16e', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 17, 'IceZorro', false, '794646850&show_for_all=71c3d97f5b', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 17, 'IceZorro', false, '794643199&show_for_all=0d9cd9a6b7', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 17, 'IceZorro', true, '794631360&show_for_all=9b38886d18', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 17, 'IceZorro', true, '794630881&show_for_all=28d3eb6812', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 17, 'IceZorro', true, '794630351&show_for_all=ed14c3c748', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 17, 'IceZorro', false, '794167363&show_for_all=ce8061803b', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 17, 'IceZorro', false, '794165566&show_for_all=37c9ad9fd2', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 17, 'IceZorro', false, '794163948&show_for_all=83633fd80c', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 17, 'IceZorro', true, '794163345&show_for_all=3d30e44d19', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 16, 'IceZorro', true, '775840146&show_for_all=919414e13d', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 16, 'IceZorro', true, '775839620&show_for_all=0b5d99d094', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 16, 'IceZorro', true, '775839222&show_for_all=6ef0a62976', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 16, 'IceZorro', false, '775836746&show_for_all=fcda6b22a4', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 16, 'IceZorro', true, '775836280&show_for_all=789fd07b7f', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 16, 'IceZorro', true, '775835833&show_for_all=266a5afa06', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 16, 'IceZorro', false, '775834146&show_for_all=53c52f9629', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 16, 'IceZorro', true, '775833638&show_for_all=6256c80b9a', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 16, 'IceZorro', true, '775833298&show_for_all=f07a165c65', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 16, 'IceZorro', false, '775831468&show_for_all=2582a97dcf', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 16, 'IceZorro', false, '775829684&show_for_all=95a126e5a8', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 16, 'IceZorro', false, '775828247&show_for_all=71abea224b', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 16, 'IceZorro', true, '775827812&show_for_all=a89965afcd', 'second'),
    new Descriptor(e_m.temple, 5, 1, 16, 'IceZorro', true, '775826958&show_for_all=651a3734d3', 'second'),
    new Descriptor(e_m.temple, 5, 1, 16, 'IceZorro', false, '775825098&show_for_all=b63d49201a', 'second'),
    new Descriptor(e_m.temple, 5, 1, 16, 'IceZorro', false, '775823430&show_for_all=aa4ef3ff5e', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 16, 'IceZorro', true, '775822987&show_for_all=5a21b7f99e', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 16, 'IceZorro', true, '775822555&show_for_all=6684a53238', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 16, 'IceZorro', true, '775821225&show_for_all=3eaaa42847', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 16, 'IceZorro', false, '775813252&show_for_all=309dffb0d4', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 16, 'IceZorro', false, '775811626&show_for_all=fe8d58b017', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 16, 'IceZorro', false, '775809831&show_for_all=6e0863d363', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 16, 'IceZorro', false, '775807394&show_for_all=064e78dec3', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 16, 'IceZorro', true, '775806931&show_for_all=7734121aa2', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 16, 'IceZorro', true, '775805943&show_for_all=e50f5185c5', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 16, 'IceZorro', true, '775805211&show_for_all=acaebaad5c', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 16, 'IceZorro', true, '775804682&show_for_all=2c60796d0d', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 16, 'IceZorro', true, '775802740&show_for_all=e5430698f9', 'second'),
    new Descriptor(e_m.furies, 5, 1, 16, 'IceZorro', true, '775791773&show_for_all=c30ed455f5', 'second'),
    new Descriptor(e_m.furies, 5, 1, 16, 'IceZorro', false, '775532654&show_for_all=cb23739403', 'second'),
    new Descriptor(e_m.witch, 5, 1, 16, 'IceZorro', true, '775531875&show_for_all=d4266a7123', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 16, 'IceZorro', true, '775531466&show_for_all=459c9839e4', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 16, 'IceZorro', true, '775531106&show_for_all=f8d9893a4c', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 16, 'IceZorro', true, '775526976&show_for_all=a1ad01cdae', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 16, 'IceZorro', true, '775525902&show_for_all=217e91af62', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 16, 'IceZorro', true, '775525426&show_for_all=7a205f6b30', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 16, 'IceZorro', true, '775524726&show_for_all=5cbe5b458e', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 16, 'IceZorro', true, '775523905&show_for_all=fc3793d4ba', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 20, 'Starshina214', true, '838539354&show_for_all=b6ec5d88fc', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 20, 'Starshina214', true, '838538881&show_for_all=682a0dc15e', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 20, 'Starshina214', true, '838538207&show_for_all=1c9c15383f', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 20, 'Starshina214', true, '838537462&show_for_all=1f676caf5e', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 20, 'Starshina214', true, '838536792&show_for_all=3b025d147f', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 20, 'Starshina214', true, '838536262&show_for_all=e8d73e3f86', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 20, 'Starshina214', false, '838534967&show_for_all=bf4d25bb73', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 20, 'Starshina214', true, '838534236&show_for_all=0199b8960c', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 20, 'Starshina214', false, '838532750&show_for_all=02a9915e8c', 'second'),
    new Descriptor(e_m.third_wisp, 4, 0, 20, 'Starshina214', true, '838532343&show_for_all=94b5c1840f', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 20, 'Starshina214', true, '838531421&show_for_all=fe31b015f5', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 20, 'Starshina214', true, '838530675&show_for_all=bc6dbe174a', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 20, 'Starshina214', true, '838529682&show_for_all=d4486eafd3', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 20, 'Starshina214', false, '838529092&show_for_all=b4ba213b34', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 20, 'Starshina214', true, '838507867&show_for_all=755b87658f', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 20, 'Starshina214', false, '838507636&show_for_all=1cface0d33', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 0, 20, 'Starshina214', false, '838507290&show_for_all=9d2cf8a220', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 20, 'Starshina214', true, '838506891&show_for_all=845730bf53', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 20, 'Starshina214', true, '838506583&show_for_all=a3ab828b51', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 20, 'Starshina214', false, '838506223&show_for_all=2a95e6eba6', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 20, 'Starshina214', false, '838505928&show_for_all=c8173ff851', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 20, 'Starshina214', true, '838505360&show_for_all=0f62ced299', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 20, 'Starshina214', false, '838505066&show_for_all=849b6aac56', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 20, 'Starshina214', true, '838504302&show_for_all=0d6ec06570', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 20, 'Starshina214', true, '838503494&show_for_all=94536bc134', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 20, 'Starshina214', false, '838500918&show_for_all=29d89f32b0', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 20, 'Starshina214', true, '838499199&show_for_all=e20a9cfea6', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 20, 'Starshina214', false, '838493129&show_for_all=0d5de705bc', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 20, 'Starshina214', false, '838490401&show_for_all=f33d1c7943', 'second'),
    new Descriptor(e_m.witch, 4, 0, 20, 'Starshina214', true, '838489484&show_for_all=a3a84c0014', 'second'),
    new Descriptor(e_m.furies, 4, 0, 20, 'Starshina214', true, '838488815&show_for_all=f7859edc1a', 'second'),
    new Descriptor(e_m.furies, 4, 0, 20, 'Starshina214', false, '838486868&show_for_all=93dd90d6cb', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 20, 'Starshina214', true, '838486424&show_for_all=d741eee295', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 20, 'Starshina214', true, '838485443&show_for_all=a799fc571d', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 20, 'Starshina214', true, '838484249&show_for_all=7221d0e34d', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 20, 'Starshina214', false, '838482207&show_for_all=11fc352d31', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 20, 'Starshina214', false, '838480297&show_for_all=dfee6cea66', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 20, 'Starshina214', true, '838479547&show_for_all=6b1039f767', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 20, 'Starshina214', true, '838479052&show_for_all=7d1dc50579', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 20, 'Starshina214', false, '838478243&show_for_all=bf4a24751a', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 20, 'Starshina214', true, '838472299&show_for_all=7133186f9d', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 20, 'Starshina214', true, '838469247&show_for_all=47fbe3a267', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 20, 'Starshina214', false, '838467724&show_for_all=245c938c38', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 20, 'Starshina214', true, '838466378&show_for_all=1b64aeb5f6', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 20, 'Starshina214', true, '838465666&show_for_all=cac3b15b3a', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 20, 'Starshina214', true, '838465189&show_for_all=557d94a98e', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 20, 'Starshina214', true, '838464563&show_for_all=bcb1e29f2c', 'second'),
    new Descriptor(e_m.mummy_crypt, 4, 1, 20, 'Starshina214', true, '838463023&show_for_all=7dcdbb6ef8', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 20, 'Starshina214', true, '838453716&show_for_all=5852619071', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 20, 'Starshina214', true, '838452947&show_for_all=cf10596406', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 20, 'Starshina214', true, '838452142&show_for_all=97a8fa4edf', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 20, 'Starshina214', true, '838451463&show_for_all=3b9b4a8fb4', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 20, 'Starshina214', false, '838449321&show_for_all=8b6d2fb6ae', 'second'),
    new Descriptor(e_m.third_wisp, 4, 1, 20, 'Starshina214', true, '838448687&show_for_all=75c4962852', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 20, 'Starshina214', true, '838447577&show_for_all=97f5020e78', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 20, 'Starshina214', true, '838446602&show_for_all=0787bb2b89', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 20, 'Starshina214', true, '838446077&show_for_all=44b5e6570c', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 20, 'Starshina214', true, '838445443&show_for_all=25fe822b46', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 20, 'Starshina214', true, '838444089&show_for_all=d80af926dc', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 20, 'Starshina214', true, '837735133&show_for_all=fcdf506bc4', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 20, 'Starshina214', true, '837698877&show_for_all=6b0637ecb3', 'second'),
    new Descriptor(e_m.witch, 4, 1, 20, 'Starshina214', true, '837698510&show_for_all=2ce4cfcc98', 'second'),
    new Descriptor(e_m.furies, 4, 1, 20, 'Starshina214', true, '837697238&show_for_all=b8dffb7600', 'second'),
    new Descriptor(e_m.furies, 4, 1, 20, 'Starshina214', false, '837694733&show_for_all=893c7bb13e', 'second'),
    new Descriptor(e_m.furies, 4, 1, 20, 'Starshina214', false, '837692370&show_for_all=af26e6c99b', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 20, 'Starshina214', true, '837691551&show_for_all=39cb21c693', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 20, 'Starshina214', true, '837690679&show_for_all=516c94d351', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 20, 'Starshina214', true, '837689929&show_for_all=eaaf6a3c3f', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 20, 'Starshina214', true, '837688697&show_for_all=130556ba3c', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 20, 'Starshina214', true, '837687411&show_for_all=efd365a1b0', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 20, 'Starshina214', true, '837686359&show_for_all=5cbbcb8ce3', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 20, 'Starshina214', false, '837683591&show_for_all=f55544e54e', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 20, 'Starshina214', true, '835748540&show_for_all=ce5bd74b68', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 20, 'Starshina214', true, '835747873&show_for_all=bf6dce9023', 'second'),
    new Descriptor(e_m.temple, 7, 0, 20, 'Starshina214', true, '835747602&show_for_all=41b97b54fa', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 20, 'Starshina214', true, '835746837&show_for_all=e09f2c6870', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 20, 'Starshina214', true, '835746404&show_for_all=1b8e2d1d58', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 20, 'Starshina214', true, '835745940&show_for_all=071f68482e', 'second'),
    new Descriptor(e_m.mummy_crypt, 7, 0, 20, 'Starshina214', true, '835745117&show_for_all=d06af5b858', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 20, 'Starshina214', true, '835744299&show_for_all=616f7b3635', 'second'),
    new Descriptor(e_m.third_wisp, 7, 0, 20, 'Starshina214', true, '835743646&show_for_all=48bac25666', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 20, 'Starshina214', true, '835742898&show_for_all=04dcd23333', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 20, 'Starshina214', true, '835741984&show_for_all=e5a2e9a199', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 20, 'Starshina214', true, '835740998&show_for_all=8f8803e0c8', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 20, 'Starshina214', false, '835739168&show_for_all=e7f9aa56d4', 'second'),
    new Descriptor(e_m.third_wisp, 7, 0, 20, 'Starshina214', false, '835737297&show_for_all=0b61e020e5', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 20, 'Starshina214', true, '835736087&show_for_all=9083e42d5b', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 20, 'Starshina214', false, '835734163&show_for_all=3049533fbc', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 20, 'Starshina214', true, '835733147&show_for_all=1552850a43', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 20, 'Starshina214', false, '835732534&show_for_all=7987998b52', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 20, 'Starshina214', true, '835731741&show_for_all=2a3fcbfa03', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 20, 'Starshina214', true, '835730789&show_for_all=76071576f4', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 20, 'Starshina214', false, '835611445&show_for_all=aa786ef40a', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 20, 'Starshina214', true, '835610113&show_for_all=7850bc1eb9', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 20, 'Starshina214', false, '835606880&show_for_all=48418a520e', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 20, 'Starshina214', true, '835604217&show_for_all=9e241e9573', 'second'),
    new Descriptor(e_m.furies, 7, 0, 20, 'Starshina214', true, '835600932&show_for_all=88749abdb8', 'second'),
    new Descriptor(e_m.witch, 7, 0, 20, 'Starshina214', true, '835600456&show_for_all=183deb7319', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 20, 'Starshina214', true, '835599712&show_for_all=b26026039e', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 20, 'Starshina214', true, '835598772&show_for_all=188cbfdeb6', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 20, 'Starshina214', true, '835597688&show_for_all=bff673593c', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 20, 'Starshina214', true, '835596418&show_for_all=a5926bb203', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 20, 'Starshina214', true, '835596023&show_for_all=44d79be777', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 20, 'Starshina214', true, '835595504&show_for_all=47fe89b66d', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 20, 'Starshina214', true, '835583911&show_for_all=2a2cb69042', 'second'),
    new Descriptor(e_m.temple, 7, 1, 20, 'Starshina214', true, '835582910&show_for_all=7c43e07de4', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 20, 'Starshina214', true, '835581722&show_for_all=cca5039828', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 20, 'Starshina214', true, '835581266&show_for_all=48a670419f', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 20, 'Starshina214', true, '835580287&show_for_all=0457f6d616', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 20, 'Starshina214', true, '835579354&show_for_all=db140a2087', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 20, 'Starshina214', true, '835577950&show_for_all=cf9f5ded23', 'second'),
    new Descriptor(e_m.third_wisp, 7, 1, 20, 'Starshina214', true, '835576934&show_for_all=9c6825c1f3', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 20, 'Starshina214', true, '835574878&show_for_all=4c59f7a208', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 20, 'Starshina214', true, '835572024&show_for_all=92713f8d8b', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 20, 'Starshina214', true, '835569762&show_for_all=13e9ff9b15', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 20, 'Starshina214', true, '835568763&show_for_all=e0a8b72ef7', 'second'),
    new Descriptor(e_m.mummy_crypt, 7, 1, 20, 'Starshina214', true, '835567470&show_for_all=b32589eb84', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 20, 'Starshina214', true, '835566965&show_for_all=ac0a2d17cd', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 20, 'Starshina214', true, '835566349&show_for_all=6eaf97f171', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 20, 'Starshina214', true, '835565191&show_for_all=b00f4d51f5', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 20, 'Starshina214', true, '835564234&show_for_all=1589784157', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 20, 'Starshina214', false, '835475703&show_for_all=03573b40bc', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 20, 'Starshina214', true, '835473555&show_for_all=4fbf4e2ee9', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 20, 'Starshina214', false, '835471468&show_for_all=821912ae82', 'second'),
    new Descriptor(e_m.witch, 7, 1, 20, 'Starshina214', true, '835470942&show_for_all=6b7af0c60e', 'second'),
    new Descriptor(e_m.furies, 7, 1, 20, 'Starshina214', true, '835470284&show_for_all=94530912f3', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 20, 'Starshina214', true, '835469656&show_for_all=53b2f2aa3b', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 20, 'Starshina214', true, '835468891&show_for_all=a0a0e9be4d', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 20, 'Starshina214', true, '835468558&show_for_all=8d33ce11ab', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 20, 'Starshina214', true, '835467689&show_for_all=e17cb3b50f', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 20, 'Starshina214', true, '835467131&show_for_all=434b2599dd', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 20, 'Starshina214', true, '835464279&show_for_all=c13bc0fe65', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 20, 'Starshina214', true, '833460895&show_for_all=2d291d3cc4', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 20, 'Starshina214', false, '833458460&show_for_all=297005929d', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 20, 'Starshina214', false, '833457739&show_for_all=6f46347135', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 20, 'Starshina214', false, '833456970&show_for_all=483f0a06c0', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 20, 'Starshina214', false, '833456174&show_for_all=b102d2acc3', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 20, 'Starshina214', true, '833455356&show_for_all=4cc1d808cd', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 20, 'Starshina214', true, '833454725&show_for_all=caac79283c', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 20, 'Starshina214', true, '833453886&show_for_all=47b8e47cb4', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 20, 'Starshina214', true, '833453127&show_for_all=990b4b6504', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 20, 'Starshina214', true, '833452693&show_for_all=47d86aff40', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 20, 'Starshina214', false, '833451107&show_for_all=f7a24e058a', 'second'),
    new Descriptor(e_m.temple, 8, 0, 20, 'Starshina214', true, '833450555&show_for_all=0f789c358b', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 20, 'Starshina214', true, '833449161&show_for_all=2d9abe8ae2', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 20, 'Starshina214', false, '833447186&show_for_all=e956e61f21', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 20, 'Starshina214', true, '833446471&show_for_all=2a36ae2c2a', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 20, 'Starshina214', true, '833443431&show_for_all=efc46e2e89', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 20, 'Starshina214', false, '833441092&show_for_all=c72f978b56', 'second'),
    new Descriptor(e_m.third_wisp, 8, 0, 20, 'Starshina214', true, '833439435&show_for_all=e2a54617b5', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 20, 'Starshina214', true, '833435652&show_for_all=30f84675bf', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 20, 'Starshina214', false, '833433909&show_for_all=b54d119981', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 20, 'Starshina214', true, '833433204&show_for_all=f58d6f7a33', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 20, 'Starshina214', true, '833432593&show_for_all=bab22dd01d', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 20, 'Starshina214', true, '833431897&show_for_all=85d671a042', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 20, 'Starshina214', false, '833429997&show_for_all=8613890a03', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 20, 'Starshina214', true, '833428962&show_for_all=7af42c5662', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 20, 'Starshina214', false, '832150834&show_for_all=d6a0de9af5', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 20, 'Starshina214', true, '832149226&show_for_all=9a28e7ed95', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 20, 'Starshina214', true, '832147624&show_for_all=66a577f91e', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 20, 'Starshina214', false, '832133179&show_for_all=33e6840436', 'second'),
    new Descriptor(e_m.witch, 8, 0, 20, 'Starshina214', true, '832132415&show_for_all=5ec536a92b', 'second'),
    new Descriptor(e_m.furies, 8, 0, 20, 'Starshina214', true, '832131750&show_for_all=41990911a5', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 20, 'Starshina214', true, '832131025&show_for_all=266ec9d28b', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 20, 'Starshina214', true, '832130341&show_for_all=9e436c5d3e', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 20, 'Starshina214', true, '832129639&show_for_all=c140b5c3b2', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 20, 'Starshina214', true, '832128487&show_for_all=cb9b3f6ed5', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 20, 'Starshina214', true, '832127897&show_for_all=3aac41ec5b', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 20, 'Starshina214', true, '832127118&show_for_all=3e7914e942', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 20, 'Starshina214', true, '831498198&show_for_all=7395f88d67', 'second'),
    new Descriptor(e_m.temple, 5, 0, 20, 'Starshina214', true, '831497136&show_for_all=b6c74af183', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 20, 'Starshina214', true, '831496173&show_for_all=3b0e6c3c04', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 20, 'Starshina214', true, '831495294&show_for_all=19e377dfa9', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 20, 'Starshina214', true, '831494855&show_for_all=f703439656', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 20, 'Starshina214', true, '831493341&show_for_all=30f420a6d1', 'second'),
    new Descriptor(e_m.third_wisp, 5, 0, 20, 'Starshina214', true, '831492754&show_for_all=b99ec69bf1', 'second'),
    new Descriptor(e_m.third_wisp, 5, 0, 20, 'Starshina214', false, '831492026&show_for_all=89ea0fe1bd', 'second'),
    new Descriptor(e_m.third_wisp, 5, 0, 20, 'Starshina214', false, '831490075&show_for_all=e2a681497d', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 20, 'Starshina214', true, '831489387&show_for_all=2b5054db3b', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 20, 'Starshina214', false, '831485094&show_for_all=5a119375fc', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 20, 'Starshina214', true, '831484127&show_for_all=1c371b0b47', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 20, 'Starshina214', true, '831483333&show_for_all=23c1f9de99', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 20, 'Starshina214', true, '831482686&show_for_all=9ca657bf1f', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 20, 'Starshina214', true, '831481971&show_for_all=dd3d7955e0', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 20, 'Starshina214', true, '831481077&show_for_all=d8b62fd3a5', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 20, 'Starshina214', false, '831443379&show_for_all=dea0578697', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 20, 'Starshina214', true, '831442931&show_for_all=82e2697e3f', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 20, 'Starshina214', false, '831441040&show_for_all=5cd02d73e0', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 20, 'Starshina214', true, '831440248&show_for_all=7421fe1136', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 20, 'Starshina214', true, '831439490&show_for_all=fe6669ed09', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 20, 'Starshina214', true, '831438366&show_for_all=c65d940e11', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 20, 'Starshina214', true, '831432162&show_for_all=9136c5dd8f', 'second'),
    new Descriptor(e_m.witch, 5, 0, 20, 'Starshina214', true, '831429703&show_for_all=7a389d99f6', 'second'),
    new Descriptor(e_m.furies, 5, 0, 20, 'Starshina214', true, '831429306&show_for_all=8f85ff2d54', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 20, 'Starshina214', true, '831429047&show_for_all=e5ad30ce50', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 20, 'Starshina214', true, '831428711&show_for_all=0c15fd0d8b', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 20, 'Starshina214', true, '831427972&show_for_all=ffbfd27d97', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 20, 'Starshina214', true, '831427458&show_for_all=bb4c317044', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 20, 'Starshina214', true, '831373734&show_for_all=d1c206befc', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 20, 'Starshina214', true, '831373280&show_for_all=477dbb64fe', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 20, 'Starshina214', true, '831371619&show_for_all=2e689cce48', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 1, 20, 'Starshina214', true, '831370732&show_for_all=0f6ad52790', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 20, 'Starshina214', true, '831370239&show_for_all=209f18a2a5', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 20, 'Starshina214', true, '831369279&show_for_all=40f14693a8', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 20, 'Starshina214', true, '831368842&show_for_all=d97258d553', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 20, 'Starshina214', true, '831368340&show_for_all=648de54dd5', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 20, 'Starshina214', true, '831367926&show_for_all=2dbb6bc43b', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 20, 'Starshina214', true, '831367300&show_for_all=5df6861b3c', 'second'),
    new Descriptor(e_m.third_wisp, 5, 1, 20, 'Starshina214', false, '831365424&show_for_all=69f1477df6', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 20, 'Starshina214', true, '831364904&show_for_all=2c6d369139', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 20, 'Starshina214', true, '831364471&show_for_all=c6acb1f0bd', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 20, 'Starshina214', false, '831362486&show_for_all=38b8bc1775', 'second'),
    new Descriptor(e_m.temple, 5, 1, 20, 'Starshina214', true, '831360602&show_for_all=271afbd484', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 20, 'Starshina214', true, '831359003&show_for_all=bf236361cc', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 20, 'Starshina214', true, '831357982&show_for_all=aa92dc0682', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 20, 'Starshina214', true, '831356752&show_for_all=40c8e17501', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 20, 'Starshina214', true, '831355946&show_for_all=de35a06e8c', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 20, 'Starshina214', true, '831354991&show_for_all=6ba7c3be99', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 20, 'Starshina214', true, '831353675&show_for_all=314eed7632', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 20, 'Starshina214', false, '831351679&show_for_all=9fea563620', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 20, 'Starshina214', true, '831349763&show_for_all=efceec9993', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 20, 'Starshina214', false, '831226157&show_for_all=9904d31e52', 'second'),
    new Descriptor(e_m.witch, 5, 1, 20, 'Starshina214', true, '831225626&show_for_all=893c1b2d66', 'second'),
    new Descriptor(e_m.furies, 5, 1, 20, 'Starshina214', true, '831225166&show_for_all=ec452ab763', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 20, 'Starshina214', true, '831224626&show_for_all=701c7e1425', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 20, 'Starshina214', true, '831223922&show_for_all=60769587a0', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 20, 'Starshina214', false, '831222312&show_for_all=d59304963e', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 20, 'Starshina214', true, '831221494&show_for_all=277073d712', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 20, 'Starshina214', false, '831219347&show_for_all=efb5d2a2e6', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 20, 'Starshina214', false, '831217631&show_for_all=777037fcf0', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 20, 'Starshina214', true, '831214959&show_for_all=75cac96008', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 20, 'Starshina214', true, '831214454&show_for_all=2fd9ef3ac2', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 20, 'Starshina214', true, '831213768&show_for_all=e445863c8e', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 20, 'Starshina214', true, '829991911&show_for_all=65f240e508', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 20, 'Starshina214', true, '829991207&show_for_all=bf6b19b250', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 20, 'Starshina214', true, '829990707&show_for_all=ab487392bb', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 20, 'Starshina214', true, '829990272&show_for_all=1a03c231f5', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 20, 'Starshina214', true, '829989428&show_for_all=0de798fc62', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 1, 20, 'Starshina214', true, '829988522&show_for_all=7e0c64b1db', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 20, 'Starshina214', true, '829987791&show_for_all=a0503c9a23', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 20, 'Starshina214', true, '829987446&show_for_all=4a807dffcc', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 20, 'Starshina214', true, '829986783&show_for_all=d88b9069cb', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 20, 'Starshina214', true, '829986089&show_for_all=0451043250', 'second'),
    new Descriptor(e_m.third_wisp, 6, 1, 20, 'Starshina214', true, '829982164&show_for_all=c0b686c085', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 20, 'Starshina214', true, '829981370&show_for_all=cc2f50a3d3', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 20, 'Starshina214', true, '829980517&show_for_all=b8ebca8abc', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 20, 'Starshina214', true, '829975141&show_for_all=436d53dd8d', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 20, 'Starshina214', true, '829973830&show_for_all=1ebef3da51', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 20, 'Starshina214', false, '829971789&show_for_all=8c77c4c7e3', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 20, 'Starshina214', true, '829970574&show_for_all=82b19528ae', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 20, 'Starshina214', false, '829968789&show_for_all=657073eba2', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 20, 'Starshina214', true, '829966969&show_for_all=593d7e95c8', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 20, 'Starshina214', true, '829965140&show_for_all=6732e6724a', 'second'),
    new Descriptor(e_m.witch, 6, 1, 20, 'Starshina214', true, '829964267&show_for_all=872bf60b56', 'second'),
    new Descriptor(e_m.furies, 6, 1, 20, 'Starshina214', true, '829963410&show_for_all=ced4a8efc8', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 20, 'Starshina214', true, '829962839&show_for_all=6e897cf674', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 20, 'Starshina214', true, '829962064&show_for_all=ea9894a598', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 20, 'Starshina214', true, '829961457&show_for_all=ab46b44247', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 20, 'Starshina214', true, '829960131&show_for_all=99cf60de8f', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 20, 'Starshina214', true, '829959561&show_for_all=d11cd67001', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 20, 'Starshina214', true, '829958816&show_for_all=27992f3a04', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 20, 'Starshina214', true, '829491198&show_for_all=2bebc3c667', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 20, 'Starshina214', true, '829490177&show_for_all=677f173d4d', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 20, 'Starshina214', true, '829489216&show_for_all=794e7059bd', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 20, 'Starshina214', true, '829488425&show_for_all=1b3074a3d7', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 20, 'Starshina214', true, '829487644&show_for_all=c011b75d0a', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 20, 'Starshina214', false, '829486998&show_for_all=df46038e1b', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 20, 'Starshina214', true, '829485403&show_for_all=0c56cb2384', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 20, 'Starshina214', true, '829483838&show_for_all=daed9936bb', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 20, 'Starshina214', false, '829479062&show_for_all=14f90538c1', 'second'),
    new Descriptor(e_m.mummy_crypt, 6, 0, 20, 'Starshina214', true, '829478118&show_for_all=f22952ef19', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 20, 'Starshina214', true, '829477430&show_for_all=90326e43a6', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 20, 'Starshina214', true, '829476571&show_for_all=35c194f742', 'second'),
    new Descriptor(e_m.third_wisp, 6, 0, 20, 'Starshina214', true, '829474006&show_for_all=85da98b229', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 20, 'Starshina214', true, '829472284&show_for_all=b9cf263471', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 20, 'Starshina214', false, '829469172&show_for_all=0d14c05334', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 20, 'Starshina214', false, '829466079&show_for_all=bfb3c3e4f9', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 20, 'Starshina214', true, '829464857&show_for_all=b143e9da74', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 20, 'Starshina214', false, '829434102&show_for_all=1cb4417fff', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 20, 'Starshina214', false, '829363260&show_for_all=c251baf3c0', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 20, 'Starshina214', true, '829362917&show_for_all=96353fe8d2', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 20, 'Starshina214', true, '829362621&show_for_all=5a09102ff0', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 20, 'Starshina214', true, '829329452&show_for_all=750886d995', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 20, 'Starshina214', true, '829318255&show_for_all=ab8aa60d82', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 20, 'Starshina214', false, '829315698&show_for_all=f812ef1cf9', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 20, 'Starshina214', true, '829313656&show_for_all=03491b9631', 'second'),
    new Descriptor(e_m.witch, 6, 0, 20, 'Starshina214', true, '829312757&show_for_all=498f3af62e', 'second'),
    new Descriptor(e_m.furies, 6, 0, 20, 'Starshina214', true, '829311797&show_for_all=6583779aab', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 20, 'Starshina214', true, '829310747&show_for_all=e3a54376c3', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 20, 'Starshina214', true, '829309748&show_for_all=d291cfa41e', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 20, 'Starshina214', true, '829308906&show_for_all=1706194523', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 20, 'Starshina214', false, '829308032&show_for_all=128377945f', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 20, 'Starshina214', false, '829270434&show_for_all=f3fb11a05d', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 20, 'Starshina214', true, '829213485&show_for_all=9cede95447', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 20, 'Starshina214', false, '829209228&show_for_all=8a6e886024', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 20, 'Starshina214', true, '829197179&show_for_all=dab612fe39', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 20, 'Starshina214', true, '829196679&show_for_all=489f045ac7', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 20, 'Starshina214', true, '828729534&show_for_all=372731544c', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 20, 'Starshina214', true, '828727989&show_for_all=d122d67977', 'second'),
    new Descriptor(e_m.temple, 2, 1, 20, 'Starshina214', true, '828726065&show_for_all=4a8fbc8df9', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 20, 'Starshina214', true, '828724637&show_for_all=109cfa8847', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 20, 'Starshina214', true, '828723206&show_for_all=e979bebf81', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 20, 'Starshina214', true, '828722599&show_for_all=bfb709fa09', 'second'),
    new Descriptor(e_m.temple, 2, 1, 20, 'Starshina214', true, '828720153&show_for_all=9a9702543a', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 20, 'Starshina214', true, '828717776&show_for_all=dba59e6fe3', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 20, 'Starshina214', true, '828715966&show_for_all=e2dc33efbf', 'second'),
    new Descriptor(e_m.third_wisp, 2, 1, 20, 'Starshina214', true, '828711360&show_for_all=3cdafb671b', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 20, 'Starshina214', true, '828709462&show_for_all=88d2f08b8a', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 20, 'Starshina214', true, '828706834&show_for_all=1c4feb11da', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 20, 'Starshina214', true, '828704041&show_for_all=a7c7d5669c', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 20, 'Starshina214', false, '828701724&show_for_all=f9ae818e5c', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 20, 'Starshina214', false, '828699549&show_for_all=d47cf48820', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 20, 'Starshina214', false, '828695696&show_for_all=9e87ed3d32', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 20, 'Starshina214', true, '828693910&show_for_all=47d60165cd', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 20, 'Starshina214', true, '828691497&show_for_all=ca83980d4f', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 20, 'Starshina214', true, '828689309&show_for_all=069a0d74b3', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 20, 'Starshina214', true, '828685488&show_for_all=f830ae4d50', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 20, 'Starshina214', true, '828683413&show_for_all=c04cad309e', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 20, 'Starshina214', false, '828680805&show_for_all=81050d6c74', 'second'),
    new Descriptor(e_m.witch, 2, 1, 20, 'Starshina214', true, '828679340&show_for_all=25495bd5e8', 'second'),
    new Descriptor(e_m.furies, 2, 1, 20, 'Starshina214', true, '828677876&show_for_all=19a72908bb', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 20, 'Starshina214', true, '828668634&show_for_all=1b68ddfa0c', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 20, 'Starshina214', true, '828666671&show_for_all=8c203938b7', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 20, 'Starshina214', true, '828664018&show_for_all=6047d3408f', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 20, 'Starshina214', true, '828662311&show_for_all=7b1f178f9f', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 20, 'Starshina214', true, '828660632&show_for_all=1dd670d087', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 20, 'Starshina214', true, '828622177&show_for_all=cb19b1969e', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 20, 'Starshina214', true, '828619919&show_for_all=4605eefa4d', 'second'),
    new Descriptor(e_m.temple, 2, 0, 20, 'Starshina214', true, '828618527&show_for_all=40d664b47d', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 20, 'Starshina214', true, '828617417&show_for_all=5d0e0287a8', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 20, 'Starshina214', false, '828614952&show_for_all=fe15d95d9f', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 20, 'Starshina214', false, '828612378&show_for_all=a360f4b65f', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 20, 'Starshina214', true, '828611565&show_for_all=b3ae8b7144', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 0, 20, 'Starshina214', true, '828610363&show_for_all=d784af1c7a', 'second'),
    new Descriptor(e_m.third_wisp, 2, 0, 20, 'Starshina214', true, '828609714&show_for_all=70127f64b7', 'second'),
    new Descriptor(e_m.third_wisp, 2, 0, 20, 'Starshina214', false, '828603907&show_for_all=54b9443e9b', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 20, 'Starshina214', true, '828602353&show_for_all=7278bf5179', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 20, 'Starshina214', false, '828599944&show_for_all=f33e4aad27', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 20, 'Starshina214', true, '828598849&show_for_all=ad4a227528', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 20, 'Starshina214', true, '828597975&show_for_all=38dfb7c965', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 20, 'Starshina214', false, '828595651&show_for_all=bcb9ceae24', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 20, 'Starshina214', true, '828593844&show_for_all=6266d75c7d', 'second'),
    new Descriptor(e_m.mummy_crypt, 2, 0, 20, 'Starshina214', true, '828592584&show_for_all=ab0ea7d2b4', 'second'),
    new Descriptor(e_m.mummy_crypt, 2, 0, 20, 'Starshina214', false, '828589232&show_for_all=1ad4f9af42', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 20, 'Starshina214', true, '828588226&show_for_all=9ca79c1c40', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 20, 'Starshina214', true, '828587259&show_for_all=7deb51d090', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 20, 'Starshina214', true, '828586196&show_for_all=84b2d58c02', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 20, 'Starshina214', true, '828584693&show_for_all=fae8723eeb', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 20, 'Starshina214', true, '828581481&show_for_all=948307b97a', 'second'),
    new Descriptor(e_m.witch, 2, 0, 20, 'Starshina214', true, '828580626&show_for_all=e97aa8c678', 'second'),
    new Descriptor(e_m.furies, 2, 0, 20, 'Starshina214', true, '828579622&show_for_all=a8b88b2ff5', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 20, 'Starshina214', true, '828578754&show_for_all=979d9b2e6a', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 20, 'Starshina214', true, '828578143&show_for_all=9e71e5e520', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 20, 'Starshina214', true, '828577241&show_for_all=d07943ff06', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 20, 'Starshina214', true, '828576070&show_for_all=b50e9878a0', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 20, 'Starshina214', true, '828575658&show_for_all=1a0c698754', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 20, 'Starshina214', true, '828574993&show_for_all=18ee217051', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 20, 'Starshina214', true, '820042032&show_for_all=a600e25b07', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 20, 'Starshina214', true, '820032237&show_for_all=28d1836222', 'second'),
    new Descriptor(e_m.temple, 3, 0, 20, 'Starshina214', true, '820031737&show_for_all=5fe967c774', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 20, 'Starshina214', true, '820030867&show_for_all=f38ceaae0c', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 20, 'Starshina214', true, '820029509&show_for_all=093a1c6df1', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 20, 'Starshina214', true, '820028373&show_for_all=b918475603', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 20, 'Starshina214', false, '820026828&show_for_all=c88e9fc466', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 20, 'Starshina214', true, '820026297&show_for_all=a562935af0', 'second'),
    new Descriptor(e_m.third_wisp, 3, 0, 20, 'Starshina214', true, '820025882&show_for_all=da767f1fc4', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 20, 'Starshina214', true, '820025334&show_for_all=92b7344916', 'second'),
    new Descriptor(e_m.mummy_crypt, 3, 0, 20, 'Starshina214', true, '820024421&show_for_all=8d44de91db', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 20, 'Starshina214', true, '820023035&show_for_all=dbf173646e', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 20, 'Starshina214', true, '820022013&show_for_all=b2ebf35e63', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 20, 'Starshina214', true, '820020721&show_for_all=3fc0d40bf9', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 20, 'Starshina214', false, '820003140&show_for_all=874b7af0dd', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 20, 'Starshina214', true, '820000095&show_for_all=327acc6848', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 20, 'Starshina214', false, '819997862&show_for_all=b34bdeb95f', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 20, 'Starshina214', false, '819994485&show_for_all=e825778c03', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 20, 'Starshina214', false, '819992864&show_for_all=b1cf78c771', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 20, 'Starshina214', false, '819991793&show_for_all=0e02111e3d', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 20, 'Starshina214', false, '819989140&show_for_all=abbca8129f', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 20, 'Starshina214', true, '819988348&show_for_all=2cd6be3c8d', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 20, 'Starshina214', true, '819987327&show_for_all=31700ec6fa', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 20, 'Starshina214', true, '819899735&show_for_all=ffb627f5f2', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 20, 'Starshina214', true, '819898828&show_for_all=8a22e03700', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 20, 'Starshina214', false, '819842043&show_for_all=3e852505ab', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 20, 'Starshina214', false, '819820192&show_for_all=dca6559399', 'second'),
    new Descriptor(e_m.witch, 3, 0, 20, 'Starshina214', true, '819819723&show_for_all=e8887e39e7', 'second'),
    new Descriptor(e_m.furies, 3, 0, 20, 'Starshina214', true, '819818971&show_for_all=d9618e45ae', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 20, 'Starshina214', true, '819818357&show_for_all=6071770242', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 20, 'Starshina214', true, '819817729&show_for_all=02a05ce3a3', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 20, 'Starshina214', true, '819816348&show_for_all=4b6e67bebd', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 20, 'Starshina214', true, '819806943&show_for_all=6e760f6233', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 20, 'Starshina214', true, '819682138&show_for_all=90fd5ccc26', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 20, 'Starshina214', true, '819004251&show_for_all=1d5b73f4d4', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 20, 'Starshina214', true, '819003555&show_for_all=a277074624', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 20, 'Starshina214', true, '819002691&show_for_all=b0dd8f381b', 'second'),
    new Descriptor(e_m.mummy_crypt, 5, 2, 20, 'Starshina214', true, '819001635&show_for_all=afe3303244', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 20, 'Starshina214', true, '819000576&show_for_all=0f6e6116f4', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 20, 'Starshina214', true, '818999793&show_for_all=40d76b69e4', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 20, 'Starshina214', true, '818998808&show_for_all=5a54714e8d', 'second'),
    new Descriptor(e_m.third_wisp, 5, 2, 20, 'Starshina214', true, '818998083&show_for_all=c8dd306531', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 20, 'Starshina214', true, '818997324&show_for_all=5a3b22058a', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 20, 'Starshina214', true, '818996552&show_for_all=ca563c6d2d', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 20, 'Starshina214', true, '818995803&show_for_all=54e0881714', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 20, 'Starshina214', true, '818994233&show_for_all=d335d84c16', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 20, 'Starshina214', true, '818993041&show_for_all=e40b62d38a', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 20, 'Starshina214', true, '818991558&show_for_all=67be1f52aa', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 20, 'Starshina214', true, '818990608&show_for_all=807ebe8855', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 20, 'Starshina214', true, '818989525&show_for_all=75c42dd2f4', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 20, 'Starshina214', false, '818926985&show_for_all=a4d01966df', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 20, 'Starshina214', true, '818925934&show_for_all=e543dc4591', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 20, 'Starshina214', true, '818924489&show_for_all=887b8f54f3', 'second'),
    new Descriptor(e_m.witch, 5, 2, 20, 'Starshina214', true, '818924007&show_for_all=2cb9eb51ae', 'second'),
    new Descriptor(e_m.furies, 5, 2, 20, 'Starshina214', true, '818923065&show_for_all=29cdd5f32d', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 20, 'Starshina214', true, '818922506&show_for_all=617a028df0', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 20, 'Starshina214', true, '818921666&show_for_all=fe9cb1484e', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 20, 'Starshina214', true, '818921113&show_for_all=34017bf115', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 20, 'Starshina214', true, '818919796&show_for_all=5f78a22bf3', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 20, 'Starshina214', true, '818919439&show_for_all=d97b0f1631', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 20, 'Starshina214', true, '818918910&show_for_all=1431def77f', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 20, 'Starshina214', true, '813439541&show_for_all=f423073add', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 20, 'Starshina214', true, '813437805&show_for_all=2413ca25b2', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 20, 'Starshina214', true, '813435646&show_for_all=195c26db0b', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 20, 'Starshina214', true, '813433429&show_for_all=ea7f2ae399', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 20, 'Starshina214', true, '813432360&show_for_all=b69147f49d', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 20, 'Starshina214', true, '813431572&show_for_all=699367ee8e', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 20, 'Starshina214', true, '813430347&show_for_all=5416e04fac', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 20, 'Starshina214', true, '813429704&show_for_all=5435e1259d', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 20, 'Starshina214', true, '813428647&show_for_all=72e5e82b87', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 20, 'Starshina214', true, '813427892&show_for_all=aa152f2813', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 20, 'Starshina214', true, '813427160&show_for_all=32ffd4953f', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 20, 'Starshina214', true, '813425850&show_for_all=65ac9325e4', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 20, 'Starshina214', false, '813423721&show_for_all=324c50816b', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 20, 'Starshina214', true, '813422117&show_for_all=60b085cfce', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 20, 'Starshina214', true, '813420726&show_for_all=12ab0db72f', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 20, 'Starshina214', true, '813418370&show_for_all=49989b01f5', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 20, 'Starshina214', false, '813416567&show_for_all=33b95f16f2', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 20, 'Starshina214', false, '813414336&show_for_all=fd62bb234d', 'second'),
    new Descriptor(e_m.furies, 3, 1, 20, 'Starshina214', true, '813412857&show_for_all=9f4f83a90a', 'second'),
    new Descriptor(e_m.witch, 3, 1, 20, 'Starshina214', true, '813412289&show_for_all=56912e4c19', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 20, 'Starshina214', true, '813411325&show_for_all=6b72f0cf1d', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 20, 'Starshina214', true, '813410560&show_for_all=12b65e5233', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 20, 'Starshina214', true, '813409676&show_for_all=e79a7c9fa6', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 20, 'Starshina214', false, '813408932&show_for_all=b5a1b31771', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 20, 'Starshina214', false, '813408472&show_for_all=589d01f05a', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 20, 'Starshina214', true, '813406955&show_for_all=e00429da28', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 20, 'Starshina214', true, '813405808&show_for_all=6bdcbd0673', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 20, 'Starshina214', false, '813358361&show_for_all=9bac44ba9d', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 20, 'Starshina214', true, '813347419&show_for_all=91b725d4fb', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 20, 'Starshina214', true, '811722617&show_for_all=4fa1b4d20e', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 20, 'Starshina214', true, '811721647&show_for_all=1e21512081', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 20, 'Starshina214', true, '811720662&show_for_all=a270f6c011', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 20, 'Starshina214', true, '811718030&show_for_all=c448de4a17', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 20, 'Starshina214', true, '811716541&show_for_all=04408d482a', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 20, 'Starshina214', true, '811715391&show_for_all=d766f462fd', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 20, 'Starshina214', true, '811714238&show_for_all=b067b96ada', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 20, 'Starshina214', true, '811711164&show_for_all=62aba40d03', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 20, 'Starshina214', true, '811709713&show_for_all=48df712fce', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 20, 'Starshina214', true, '811700157&show_for_all=c4f5d611d0', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 20, 'Starshina214', false, '811697056&show_for_all=877e410baf', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 20, 'Starshina214', true, '811695250&show_for_all=40a66d8d36', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 20, 'Starshina214', true, '811694271&show_for_all=54994a180d', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 20, 'Starshina214', true, '811693149&show_for_all=457063d717', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 20, 'Starshina214', true, '811688822&show_for_all=8bf68cacc0', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 20, 'Starshina214', false, '811629278&show_for_all=d4bd5c6cda', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 20, 'Starshina214', false, '811625291&show_for_all=6b0316482d', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 20, 'Starshina214', true, '811623864&show_for_all=68318be221', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 20, 'Starshina214', true, '811622112&show_for_all=d0b46020b2', 'second'),
    new Descriptor(e_m.furies, 9, 0, 20, 'Starshina214', true, '811620567&show_for_all=439da9c53d', 'second'),
    new Descriptor(e_m.witch, 9, 0, 20, 'Starshina214', true, '811619912&show_for_all=85c90da4c8', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 20, 'Starshina214', true, '811617842&show_for_all=5c823d9d38', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 20, 'Starshina214', true, '811616625&show_for_all=c980d25ba7', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 20, 'Starshina214', true, '811614828&show_for_all=026f1ae4fc', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 20, 'Starshina214', true, '811613868&show_for_all=c99168c1d5', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 20, 'Starshina214', true, '811612864&show_for_all=55e5d74a74', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 20, 'Starshina214', true, '811611960&show_for_all=500e019fe6', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Starshina214', true, '807882740&show_for_all=5a6a6ea60a', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 19, 'Starshina214', true, '807881877&show_for_all=ccd99652a5', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 19, 'Starshina214', true, '807881271&show_for_all=a6dbafd656', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 19, 'Starshina214', true, '807880546&show_for_all=49b4dc0c8b', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 19, 'Starshina214', true, '807879986&show_for_all=fa28025a3f', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 19, 'Starshina214', true, '807879355&show_for_all=8e8f12461c', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 19, 'Starshina214', true, '807878830&show_for_all=5694e4aa9d', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 19, 'Starshina214', true, '807878191&show_for_all=6f1298dda2', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 19, 'Starshina214', true, '807877734&show_for_all=c392804b62', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 19, 'Starshina214', true, '807877181&show_for_all=916a923245', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 19, 'Starshina214', true, '807876604&show_for_all=e08f355dd3', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 19, 'Starshina214', true, '807875796&show_for_all=ff56931d9b', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 19, 'Starshina214', true, '807874084&show_for_all=6212f14372', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 19, 'Starshina214', true, '807873687&show_for_all=02f54cba13', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 19, 'Starshina214', true, '807872990&show_for_all=f8eb6bf0f0', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 19, 'Starshina214', true, '807872029&show_for_all=dde1f256a0', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 19, 'Starshina214', true, '807870894&show_for_all=55f525914f', 'second'),
    new Descriptor(e_m.witch, 1, 0, 19, 'Starshina214', true, '807870156&show_for_all=92a019275e', 'second'),
    new Descriptor(e_m.furies, 1, 0, 19, 'Starshina214', true, '807869588&show_for_all=e1e1072c4e', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 19, 'Starshina214', true, '807869164&show_for_all=aa3fd8c6e5', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 19, 'Starshina214', true, '807868527&show_for_all=1e14cfc72e', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 19, 'Starshina214', true, '807862705&show_for_all=b3ef599b83', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 19, 'Starshina214', true, '807861916&show_for_all=3038cab7a1', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 19, 'Starshina214', true, '807861256&show_for_all=78b1d6b759', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 19, 'Starshina214', true, '807860508&show_for_all=addde144a4', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 19, 'Starshina214', true, '807838635&show_for_all=906b68d28f', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 19, 'Starshina214', true, '807787327&show_for_all=5523b0f2fd', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 19, 'Starshina214', true, '807786745&show_for_all=301710dbb0', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 19, 'Starshina214', true, '807786610&show_for_all=c2e9569262', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 19, 'Starshina214', true, '807786462&show_for_all=2f8aa13b25', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 19, 'Starshina214', true, '807786332&show_for_all=7a8710c36a', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 19, 'Starshina214', true, '807786153&show_for_all=a1b131a2b7', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 19, 'Starshina214', true, '807785983&show_for_all=03b2597c66', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 19, 'Starshina214', true, '807611187&show_for_all=587fb9e30e', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 19, 'Starshina214', true, '807606669&show_for_all=ec77c73605', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 19, 'Starshina214', true, '807605888&show_for_all=7afc3991e6', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 19, 'Starshina214', true, '807604078&show_for_all=8a8a742278', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 19, 'Starshina214', true, '807603323&show_for_all=0b3cc94687', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 19, 'Starshina214', true, '807601989&show_for_all=5245146231', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 19, 'Starshina214', true, '807601227&show_for_all=4113ef405e', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 19, 'Starshina214', true, '807406713&show_for_all=91b83f64ea', 'second'),
    new Descriptor(e_m.witch, 1, 1, 19, 'Starshina214', true, '807406227&show_for_all=a23dc85245', 'second'),
    new Descriptor(e_m.furies, 1, 1, 19, 'Starshina214', true, '807405590&show_for_all=ef1c81d925', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 19, 'Starshina214', true, '807405143&show_for_all=2306e82709', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 19, 'Starshina214', true, '807401614&show_for_all=8a833d5d0f', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 19, 'Starshina214', true, '807400939&show_for_all=beb9c2d004', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 19, 'Starshina214', true, '807400421&show_for_all=068e3869d8', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 19, 'Starshina214', true, '807399881&show_for_all=4b5bf7c0ce', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 19, 'Starshina214', true, '807399334&show_for_all=a3ea2033af', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 19, 'Starshina214', false, '807397976&show_for_all=3ce90b76c1', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 19, 'Starshina214', false, '783538343&show_for_all=ef36c60423', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 19, 'Starshina214', true, '783537068&show_for_all=015764b382', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 19, 'Starshina214', true, '783536360&show_for_all=7276e95733', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 19, 'Starshina214', true, '783535463&show_for_all=5afef4c291', 'second'),
    new Descriptor(e_m.furies, 9, 0, 19, 'Starshina214', true, '782919810&show_for_all=3be8335a94', 'second'),
    new Descriptor(e_m.witch, 9, 0, 19, 'Starshina214', true, '782919290&show_for_all=057adc38d1', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 19, 'Starshina214', true, '782908343&show_for_all=d5d63b50f9', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 19, 'Starshina214', true, '782799035&show_for_all=76fb16f8c0', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 19, 'Starshina214', true, '782798235&show_for_all=45db3897e5', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 19, 'Starshina214', true, '782797875&show_for_all=4b5087cc0b', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 19, 'Starshina214', true, '782797490&show_for_all=3ec933cb5f', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 19, 'Starshina214', true, '782796939&show_for_all=796d595124', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Starshina214', true, '777783170&show_for_all=f3922e638d', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 19, 'Starshina214', true, '777782580&show_for_all=09e88e3838', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 19, 'Starshina214', true, '777782049&show_for_all=6ea2cd7617', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 19, 'Starshina214', true, '777780012&show_for_all=af5fe7238a', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 19, 'Starshina214', true, '777778862&show_for_all=2ab351e357', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 19, 'Starshina214', true, '777777988&show_for_all=8d024534be', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 19, 'Starshina214', true, '777776976&show_for_all=29d0525160', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 19, 'Starshina214', true, '777776152&show_for_all=041cf30acb', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 19, 'Starshina214', true, '777775249&show_for_all=1677798188', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 19, 'Starshina214', true, '777772228&show_for_all=b5364001af', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 19, 'Starshina214', true, '777722359&show_for_all=413f37c66b', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 19, 'Starshina214', true, '777721448&show_for_all=085ce888aa', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 19, 'Starshina214', true, '777720134&show_for_all=2383017e3c', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 19, 'Starshina214', false, '777717655&show_for_all=588c27a860', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 19, 'Starshina214', true, '777716211&show_for_all=704a5efa93', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 19, 'Starshina214', true, '777715133&show_for_all=4750f77e04', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 19, 'Starshina214', true, '777712527&show_for_all=c00ac0bf71', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 19, 'Starshina214', false, '777703488&show_for_all=0c3795e201', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 19, 'Starshina214', false, '777700671&show_for_all=6068e5f6db', 'second'),
    new Descriptor(e_m.furies, 2, 1, 19, 'Starshina214', true, '777699564&show_for_all=d6f313a46e', 'second'),
    new Descriptor(e_m.witch, 2, 1, 19, 'Starshina214', true, '777698946&show_for_all=6cd75f771c', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 19, 'Starshina214', true, '777698211&show_for_all=0833e1b123', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 19, 'Starshina214', true, '777697351&show_for_all=8556795dcb', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 19, 'Starshina214', true, '777696108&show_for_all=2a96f26ba2', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 19, 'Starshina214', true, '777693115&show_for_all=c9568dd2e3', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 19, 'Starshina214', false, '777690995&show_for_all=1d527b586a', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 19, 'Starshina214', false, '777689023&show_for_all=e53a923860', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 19, 'Starshina214', true, '777687966&show_for_all=72944c5d65', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 19, 'Starshina214', true, '777686944&show_for_all=f8a71dcbf5', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Starshina214', true, '777517052&show_for_all=94d7286a81', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Starshina214', true, '777516436&show_for_all=c56ece21c1', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Starshina214', true, '777515470&show_for_all=735306dece', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Starshina214', true, '777514887&show_for_all=37ed7a8b69', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Starshina214', false, '777513057&show_for_all=98f5845a4b', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Starshina214', true, '777512535&show_for_all=ebcb6c5354', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Starshina214', true, '777511959&show_for_all=4d3a3f65bd', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Starshina214', true, '777511484&show_for_all=ab7ffd0a86', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Starshina214', true, '777510759&show_for_all=a98e5581a4', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Starshina214', true, '777510150&show_for_all=63687ff63c', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Starshina214', true, '777508323&show_for_all=bbea1aa5e5', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Starshina214', true, '777507718&show_for_all=d389a956d6', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Starshina214', true, '777507177&show_for_all=8c6deb2ecc', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Starshina214', true, '777506461&show_for_all=2a33f18209', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Starshina214', true, '777505197&show_for_all=e3ea0c1a61', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Starshina214', true, '777504144&show_for_all=4015ffac36', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Starshina214', true, '777503180&show_for_all=6c29f2367c', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Starshina214', true, '777502531&show_for_all=438a5dbcbd', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Starshina214', true, '777502293&show_for_all=e71d132e7b', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Starshina214', true, '777501642&show_for_all=729198c237', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Starshina214', false, '777496436&show_for_all=b3cdf6ab1e', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Starshina214', true, '777495932&show_for_all=cd2c88659b', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Starshina214', true, '777495285&show_for_all=33d81a6d39', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Starshina214', true, '777494474&show_for_all=e0a301cf07', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Starshina214', true, '777494005&show_for_all=88ef5a335d', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Starshina214', true, '777493518&show_for_all=be72536e0a', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Starshina214', true, '777490333&show_for_all=efb4e474a4', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Starshina214', true, '777123312&show_for_all=e74e85623b', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Starshina214', true, '777122716&show_for_all=73dec4992d', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Starshina214', true, '777122433&show_for_all=fb8ab08d25', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Starshina214', true, '777121277&show_for_all=16194bbe1b', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Starshina214', true, '777120966&show_for_all=246547b180', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Starshina214', true, '777120251&show_for_all=4918a00f21', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Starshina214', true, '777119635&show_for_all=afac13797f', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Starshina214', true, '777119190&show_for_all=9cf1d4dbae', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Starshina214', true, '777118749&show_for_all=e014616c30', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Starshina214', true, '777117850&show_for_all=7657989c8a', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Starshina214', true, '777117437&show_for_all=9a001d1022', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Starshina214', true, '777116945&show_for_all=71430e5e85', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Starshina214', true, '777116185&show_for_all=8bc9303297', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Starshina214', true, '777115726&show_for_all=9b18bdfcfe', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Starshina214', true, '777115063&show_for_all=5375f22853', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Starshina214', true, '777114104&show_for_all=4303e75981', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Starshina214', true, '777113355&show_for_all=dfe87f0a06', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Starshina214', true, '777113027&show_for_all=24bac106fc', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Starshina214', true, '777112478&show_for_all=8a60370849', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Starshina214', true, '777111837&show_for_all=d7807ce406', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Starshina214', false, '777110325&show_for_all=95f1772c9b', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Starshina214', true, '777109626&show_for_all=b2881e6ec1', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Starshina214', false, '777108982&show_for_all=a732a6c7fc', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Starshina214', true, '777108635&show_for_all=e8ccf63753', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Starshina214', true, '777108290&show_for_all=0ccf43f82d', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Starshina214', true, '777107871&show_for_all=5434cad12a', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Starshina214', true, '776582346&show_for_all=44ea0394a1', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 19, 'Starshina214', true, '776581975&show_for_all=9c83eaddae', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 19, 'Starshina214', true, '776581589&show_for_all=f049f14f22', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'Starshina214', true, '776580456&show_for_all=186724fb2e', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 19, 'Starshina214', true, '776579797&show_for_all=b35664f6f0', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 19, 'Starshina214', true, '776579101&show_for_all=b65ed27a0c', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'Starshina214', true, '776578414&show_for_all=0212c0104e', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 19, 'Starshina214', true, '776577102&show_for_all=c4887e79ad', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 19, 'Starshina214', true, '776576621&show_for_all=7de515e59c', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 19, 'Starshina214', true, '776575758&show_for_all=121252b0b6', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 19, 'Starshina214', true, '776575341&show_for_all=c410eab95a', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 19, 'Starshina214', true, '776574845&show_for_all=51a7fef987', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 19, 'Starshina214', true, '776574317&show_for_all=c68dd31f5e', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 19, 'Starshina214', true, '776573595&show_for_all=78f4bb262a', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 19, 'Starshina214', true, '776572896&show_for_all=b09c69780b', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 19, 'Starshina214', true, '776572103&show_for_all=e66aa92ccd', 'second'),
    new Descriptor(e_m.furies, 7, 1, 19, 'Starshina214', true, '776571382&show_for_all=a514acd6c0', 'second'),
    new Descriptor(e_m.witch, 7, 1, 19, 'Starshina214', true, '776570352&show_for_all=1bb5eedece', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 19, 'Starshina214', true, '776570006&show_for_all=7022c7d8f9', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 19, 'Starshina214', true, '776569580&show_for_all=429207d9c2', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 19, 'Starshina214', true, '776568536&show_for_all=40fc8988fc', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 19, 'Starshina214', true, '776568289&show_for_all=3d7a06b94c', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 19, 'Starshina214', true, '776567693&show_for_all=3352266036', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 19, 'Starshina214', true, '776567359&show_for_all=3aac141bcf', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Starshina214', true, '776283939&show_for_all=5c623654a8', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 19, 'Starshina214', true, '776283303&show_for_all=913a8bee60', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 19, 'Starshina214', true, '776282118&show_for_all=d97ce717d7', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 19, 'Starshina214', true, '776281605&show_for_all=e62f1758b1', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 19, 'Starshina214', true, '776281144&show_for_all=3e45e51c58', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'Starshina214', true, '776280649&show_for_all=b75a71eb55', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 19, 'Starshina214', true, '776280297&show_for_all=cb9b15e84e', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 19, 'Starshina214', true, '776279616&show_for_all=337a8122ab', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 19, 'Starshina214', true, '776279104&show_for_all=f11a76d929', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 19, 'Starshina214', true, '776278464&show_for_all=4b86de0cc6', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 19, 'Starshina214', true, '776277649&show_for_all=ff6c841060', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 19, 'Starshina214', true, '776276994&show_for_all=a333047c14', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 19, 'Starshina214', true, '776276397&show_for_all=0413a065e0', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 19, 'Starshina214', false, '776275838&show_for_all=ec6a2a42c7', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 19, 'Starshina214', true, '776275329&show_for_all=6e9bd780ad', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 19, 'Starshina214', true, '776274634&show_for_all=3272362c4b', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 19, 'Starshina214', true, '776273950&show_for_all=a82db4cbb2', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 19, 'Starshina214', true, '776273063&show_for_all=a186fc2573', 'second'),
    new Descriptor(e_m.furies, 7, 0, 19, 'Starshina214', true, '776272368&show_for_all=27547cf782', 'second'),
    new Descriptor(e_m.witch, 7, 0, 19, 'Starshina214', true, '776271941&show_for_all=655039722e', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 19, 'Starshina214', true, '776271621&show_for_all=960e0fbf51', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 19, 'Starshina214', true, '776271181&show_for_all=37b5911947', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 19, 'Starshina214', true, '776270596&show_for_all=1e14cb858a', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 19, 'Starshina214', true, '776270307&show_for_all=59a0bf9a39', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 19, 'Starshina214', true, '776269920&show_for_all=7c4a1626a9', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 19, 'Starshina214', true, '776269552&show_for_all=b5cf0d04ad', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'Starshina214', true, '776136176&show_for_all=c9e558afea', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'Starshina214', false, '776135609&show_for_all=8dfdc8ce32', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Starshina214', true, '775902128&show_for_all=b0344071fd', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Starshina214', false, '775901655&show_for_all=ec843e72e1', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Starshina214', true, '775776154&show_for_all=393faaa35c', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 19, 'Starshina214', true, '775775516&show_for_all=83fc09eb99', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Starshina214', true, '775774384&show_for_all=e441e7a2d3', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 19, 'Starshina214', true, '775773930&show_for_all=2d78db819a', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Starshina214', true, '775773037&show_for_all=21750c806c', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Starshina214', true, '775771857&show_for_all=cd5a3c0882', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 19, 'Starshina214', true, '775770986&show_for_all=3d4dc5b646', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 19, 'Starshina214', true, '775770128&show_for_all=0a7a4554f8', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 19, 'Starshina214', true, '775768672&show_for_all=872eb2d390', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 19, 'Starshina214', true, '775768024&show_for_all=3caba23c43', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 19, 'Starshina214', true, '775767520&show_for_all=1e508dd465', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 19, 'Starshina214', true, '775766577&show_for_all=9b8ac38ba2', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 19, 'Starshina214', true, '775765960&show_for_all=dad4ce298d', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 19, 'Starshina214', true, '775764799&show_for_all=30f5ece9fd', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 19, 'Starshina214', true, '775763408&show_for_all=8a2edfe262', 'second'),
    new Descriptor(e_m.furies, 2, 0, 19, 'Starshina214', true, '775762580&show_for_all=b6210da772', 'second'),
    new Descriptor(e_m.witch, 2, 0, 19, 'Starshina214', true, '775762362&show_for_all=f93b7ca6e3', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 19, 'Starshina214', true, '775761996&show_for_all=67d922937e', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 19, 'Starshina214', true, '775761519&show_for_all=804e87bc70', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 19, 'Starshina214', true, '775760843&show_for_all=42fa4a9382', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 19, 'Starshina214', true, '775760571&show_for_all=2e89e9a099', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 19, 'Starshina214', true, '775759862&show_for_all=d3676368a2', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 19, 'Starshina214', true, '775759359&show_for_all=ba717b9024', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Starshina214', true, '774864956&show_for_all=53a79267d4', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', true, '774864375&show_for_all=69c57731f8', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'Starshina214', true, '774864077&show_for_all=923d35098d', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Starshina214', true, '774863151&show_for_all=970f599e4c', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'Starshina214', true, '774862514&show_for_all=c47f4a1591', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Starshina214', true, '774862162&show_for_all=279070a220', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Starshina214', false, '774861600&show_for_all=d5ab6e5ee5', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Starshina214', true, '774861137&show_for_all=643a168918', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Starshina214', true, '774860735&show_for_all=8253293ee7', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Starshina214', true, '774860260&show_for_all=292b3b7edf', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Starshina214', false, '774859837&show_for_all=df439511af', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Starshina214', true, '774858774&show_for_all=36500ea52a', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Starshina214', false, '774858067&show_for_all=2509f71302', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Starshina214', true, '774857530&show_for_all=0a486ed51c', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'Starshina214', true, '774856909&show_for_all=8347e44ca0', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'Starshina214', true, '774856434&show_for_all=d6387f025b', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'Starshina214', true, '774855703&show_for_all=615daa7a1f', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'Starshina214', true, '774854657&show_for_all=2202173135', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'Starshina214', true, '774854073&show_for_all=9afec4c78d', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'Starshina214', true, '774853079&show_for_all=a9792fb09a', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Starshina214', true, '774852758&show_for_all=d6f168b615', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'Starshina214', true, '774852310&show_for_all=5bd5dc09fa', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'Starshina214', true, '774851890&show_for_all=07cd2203a5', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Starshina214', true, '774851127&show_for_all=9d09bd6e88', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Starshina214', false, '774850251&show_for_all=bfc3fdb9fa', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'Starshina214', true, '774849945&show_for_all=a4e421ea13', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Starshina214', true, '774849451&show_for_all=c052c89856', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Starshina214', false, '774848848&show_for_all=d50fb10261', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Starshina214', true, '774848358&show_for_all=272fd8c7dd', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Starshina214', true, '773838722&show_for_all=109d112350', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Starshina214', true, '773838424&show_for_all=0862754fff', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Starshina214', false, '773838095&show_for_all=fbe0940af7', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Starshina214', true, '773837683&show_for_all=d484efafec', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Starshina214', true, '773836754&show_for_all=810eb5e1b4', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Starshina214', true, '773836410&show_for_all=a02733bbd7', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Starshina214', true, '773836056&show_for_all=149bcce5d4', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Starshina214', true, '773835624&show_for_all=53f9889b21', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Starshina214', true, '773835346&show_for_all=802cdfeaa7', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Starshina214', true, '773834825&show_for_all=4746a06a50', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Starshina214', true, '773834356&show_for_all=9d50182f8c', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Starshina214', true, '773833827&show_for_all=b16a3ced94', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Starshina214', true, '773833417&show_for_all=e7ec2a85c8', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Starshina214', true, '773832600&show_for_all=36e48800e7', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Starshina214', false, '773831924&show_for_all=1461a5f9a2', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Starshina214', false, '773830827&show_for_all=32e91a3dbb', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Starshina214', true, '773830231&show_for_all=68d8e8e0b3', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Starshina214', true, '773830030&show_for_all=9f5bdd67a7', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Starshina214', true, '773829589&show_for_all=c31cf8edcf', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Starshina214', true, '773829024&show_for_all=3df84479c5', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Starshina214', false, '773828352&show_for_all=ab43ee6475', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Starshina214', true, '773693333&show_for_all=4df80f2fdf', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Starshina214', true, '772953353&show_for_all=c389331f73', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Starshina214', true, '772952729&show_for_all=3347c46f01', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Starshina214', false, '772952146&show_for_all=b7bb8eefc0', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Starshina214', false, '772951563&show_for_all=a660dd9504', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Starshina214', true, '772951169&show_for_all=3fdfa9ed24', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', true, '772938781&show_for_all=7c636e1217', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772938093&show_for_all=7ba5bf610c', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772870506&show_for_all=a16f779e3a', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772869773&show_for_all=d3a787fc57', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772867521&show_for_all=c14d9c65bc', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772866818&show_for_all=40ac08d8ea', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772865901&show_for_all=55123f92c7', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Starshina214', false, '772865231&show_for_all=8ac5eade5e', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Starshina214', false, '772814349&show_for_all=8f0a3ecbb6', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Starshina214', false, '772812365&show_for_all=ee9c8d9454', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Starshina214', false, '772804375&show_for_all=dd8d1cd3c3', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 19, 'Dimakkk', true, '833648933&show_for_all=3a3dca0855', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Dimakkk', true, '832856137&show_for_all=61407bf02f', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Dimakkk', true, '832333590&show_for_all=04673e6796', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 19, 'Dimakkk', true, '832332165&show_for_all=5045d1fb10', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 19, 'Dimakkk', true, '832331311&show_for_all=6a35c10d7b', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Dimakkk', true, '832330147&show_for_all=c58a43f05f', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Dimakkk', true, '832329560&show_for_all=e1792fe912', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'Dimakkk', true, '832328521&show_for_all=c7631e384c', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'Dimakkk', true, '832327589&show_for_all=952b8fba51', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Dimakkk', true, '832327183&show_for_all=2b39ebbba4', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Dimakkk', true, '832326135&show_for_all=640e9d59e3', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 19, 'Dimakkk', true, '832325316&show_for_all=91865d9979', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 19, 'Dimakkk', true, '832260765&show_for_all=595113a0c3', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Dimakkk', true, '832258501&show_for_all=aa437e2527', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 19, 'Dimakkk', true, '832257213&show_for_all=8da7d0fb58', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Dimakkk', true, '832240124&show_for_all=407693b1b9', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 19, 'Dimakkk', true, '832234240&show_for_all=c01e318bf3', 'second'),
    new Descriptor(e_m.witch, 8, 0, 19, 'Dimakkk', true, '832233239&show_for_all=f42509c0fa', 'second'),
    new Descriptor(e_m.furies, 8, 0, 19, 'Dimakkk', true, '832231974&show_for_all=ea2acab279', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 19, 'Dimakkk', true, '832229980&show_for_all=3887d44190', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'Dimakkk', true, '832075601&show_for_all=6122abe35e', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 19, 'Dimakkk', true, '832074165&show_for_all=0590240ca8', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 19, 'Dimakkk', true, '832072291&show_for_all=efa7a5192c', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'Dimakkk', true, '832071364&show_for_all=3826260bd2', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 19, 'Dimakkk', true, '832070459&show_for_all=ed39ae3fbc', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 19, 'Dimakkk', true, '831959783&show_for_all=41ae275b2e', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Dimakkk', true, '831423784&show_for_all=de49e670ff', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 19, 'Dimakkk', true, '831422656&show_for_all=4779e7908d', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Dimakkk', true, '831421215&show_for_all=a6c523971a', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Dimakkk', true, '831420686&show_for_all=f91087d213', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 19, 'Dimakkk', true, '831419900&show_for_all=11b9c2b61b', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 19, 'Dimakkk', true, '831419439&show_for_all=3604fbd503', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 19, 'Dimakkk', true, '831418900&show_for_all=0c6c27afac', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 19, 'Dimakkk', true, '831418315&show_for_all=923b092b85', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 19, 'Dimakkk', true, '831417840&show_for_all=cc5189b0c0', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Dimakkk', true, '831417394&show_for_all=0fb04db4cf', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 19, 'Dimakkk', true, '831416912&show_for_all=39a9070f96', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Dimakkk', true, '831416536&show_for_all=0851cb227f', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 19, 'Dimakkk', true, '831416188&show_for_all=967d2fcf9b', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 19, 'Dimakkk', true, '831415857&show_for_all=9d23d8202c', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 19, 'Dimakkk', true, '831415158&show_for_all=8e8a153b45', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 19, 'Dimakkk', true, '831413865&show_for_all=3c8979b79e', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 19, 'Dimakkk', true, '831413175&show_for_all=e35ec83bd9', 'second'),
    new Descriptor(e_m.witch, 5, 2, 19, 'Dimakkk', true, '831412881&show_for_all=5d028d5ad0', 'second'),
    new Descriptor(e_m.furies, 5, 2, 19, 'Dimakkk', true, '831412576&show_for_all=b97c8eb6d3', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 19, 'Dimakkk', true, '831412251&show_for_all=07e67bf755', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 19, 'Dimakkk', true, '831411924&show_for_all=f926fab97b', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 19, 'Dimakkk', true, '831411566&show_for_all=188ffe87e2', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 19, 'Dimakkk', true, '831410968&show_for_all=6662498f0d', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 19, 'Dimakkk', true, '831410835&show_for_all=dfa20628be', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 19, 'Dimakkk', true, '831410672&show_for_all=00821a1e0f', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Dimakkk', true, '831336816&show_for_all=8aef05941c', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Dimakkk', true, '831334416&show_for_all=7250bb1092', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Dimakkk', true, '831333881&show_for_all=a40d48f8dc', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Dimakkk', true, '831333250&show_for_all=98e3c9b8a2', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Dimakkk', true, '831332842&show_for_all=8400f2c84e', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Dimakkk', true, '831331904&show_for_all=e911ad4e00', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Dimakkk', true, '831330760&show_for_all=8ed4573cd2', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Dimakkk', false, '831327072&show_for_all=0ec4a7366b', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Dimakkk', true, '831268996&show_for_all=0289f9062a', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Dimakkk', true, '831268381&show_for_all=ade82c49fb', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Dimakkk', true, '831265379&show_for_all=a1d626d284', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Dimakkk', true, '831264767&show_for_all=9d77b9210c', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Dimakkk', true, '831264503&show_for_all=f5d8949593', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Dimakkk', true, '831264160&show_for_all=0694107564', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Dimakkk', true, '831263477&show_for_all=44e28c242b', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Dimakkk', true, '831263010&show_for_all=c5435d8b2a', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Dimakkk', true, '830962742&show_for_all=2cca83f49d', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Dimakkk', true, '830962277&show_for_all=07e733369a', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Dimakkk', true, '830962026&show_for_all=0150f35b18', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Dimakkk', true, '830961814&show_for_all=3f969eb143', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Dimakkk', true, '830961617&show_for_all=b21b6bf0fd', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Dimakkk', true, '830961328&show_for_all=7b121ff55e', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Dimakkk', true, '830872186&show_for_all=9dc7870406', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Dimakkk', true, '830871718&show_for_all=bb1acb5f05', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Dimakkk', true, '830861803&show_for_all=fde56ec3b0', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Dimakkk', true, '830738215&show_for_all=0b03c2106f', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'Dimakkk', true, '830733795&show_for_all=f557cb34e4', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'Dimakkk', true, '830733132&show_for_all=5f88457fca', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Dimakkk', true, '830731957&show_for_all=9e1141a75a', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Dimakkk', false, '830729817&show_for_all=3a5691d5f5', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Dimakkk', true, '830728867&show_for_all=e00c61d51b', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Dimakkk', true, '830727954&show_for_all=fb3a34d8d3', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Dimakkk', true, '830727272&show_for_all=9e48fdcde8', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Dimakkk', true, '830726216&show_for_all=6e3ded7895', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Dimakkk', true, '830697126&show_for_all=52fee5c39e', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Dimakkk', true, '830695877&show_for_all=79c20820a8', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Dimakkk', true, '830694991&show_for_all=60adc1cee2', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Dimakkk', true, '830694016&show_for_all=e7024fd464', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'Dimakkk', true, '830693226&show_for_all=46d57368b9', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'Dimakkk', true, '830691980&show_for_all=72d6027620', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'Dimakkk', true, '830690005&show_for_all=c9de4bf2d5', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'Dimakkk', true, '830687857&show_for_all=d9064a4db4', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'Dimakkk', true, '830686806&show_for_all=d403f97359', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Dimakkk', true, '830685055&show_for_all=3e01d1dccf', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'Dimakkk', true, '830684222&show_for_all=544baa5abb', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'Dimakkk', true, '830683404&show_for_all=33c7588884', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Dimakkk', true, '830562896&show_for_all=1dd7a7ae6f', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Dimakkk', true, '830559248&show_for_all=fe46875943', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'Dimakkk', true, '830557430&show_for_all=952a0cf4a0', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Dimakkk', true, '830556286&show_for_all=28be52d306', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'Dimakkk', true, '830541904&show_for_all=b541382f84', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Dimakkk', true, '830101671&show_for_all=179b005461', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 19, 'Dimakkk', true, '830098843&show_for_all=d5289e2d31', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 19, 'Dimakkk', true, '830097886&show_for_all=a327734b6b', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 19, 'Dimakkk', true, '830096940&show_for_all=e39546e4a8', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 19, 'Dimakkk', true, '830095406&show_for_all=2465864902', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 19, 'Dimakkk', true, '830092337&show_for_all=696dc65c92', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 19, 'Dimakkk', true, '830091497&show_for_all=a4a172f52b', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 19, 'Dimakkk', true, '830089394&show_for_all=bfddadf486', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 19, 'Dimakkk', true, '830088180&show_for_all=c0dcb8b4eb', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 19, 'Dimakkk', true, '830087213&show_for_all=dc47b4276c', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 19, 'Dimakkk', true, '830086269&show_for_all=334e7d1154', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 19, 'Dimakkk', true, '830068907&show_for_all=4100ef4901', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 19, 'Dimakkk', true, '830064907&show_for_all=a0cf466a2d', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 19, 'Dimakkk', true, '830061320&show_for_all=ecc0eeb926', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 19, 'Dimakkk', true, '830057413&show_for_all=7b32634fe3', 'second'),
    new Descriptor(e_m.witch, 3, 0, 19, 'Dimakkk', true, '830055480&show_for_all=77630c87f6', 'second'),
    new Descriptor(e_m.furies, 3, 0, 19, 'Dimakkk', true, '830052176&show_for_all=63ac825604', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 19, 'Dimakkk', true, '830050997&show_for_all=c85ca2af9c', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 19, 'Dimakkk', true, '830049279&show_for_all=7a3a6a3e1a', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Dimakkk', true, '829941494&show_for_all=2330f4b33b', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 19, 'Dimakkk', true, '829938849&show_for_all=431183d940', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 19, 'Dimakkk', true, '829938259&show_for_all=f1feabfa1c', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 19, 'Dimakkk', true, '829937700&show_for_all=bce58a405f', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 19, 'Dimakkk', true, '829891073&show_for_all=d8c1030407', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Dimakkk', true, '829780102&show_for_all=52636068a8', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Dimakkk', false, '829777145&show_for_all=9b8e75ae34', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Dimakkk', false, '829774021&show_for_all=cceac47fef', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Dimakkk', false, '829771560&show_for_all=fe152aea66', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 19, 'Dimakkk', true, '829770181&show_for_all=59c1b9e3e4', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 19, 'Dimakkk', true, '829769457&show_for_all=f7e316035c', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 19, 'Dimakkk', true, '829768602&show_for_all=4328c96742', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'Dimakkk', true, '829766076&show_for_all=ce884a33d1', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'Dimakkk', true, '829764684&show_for_all=795a0b9dd9', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'Dimakkk', true, '829759176&show_for_all=2b51492d57', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 19, 'Dimakkk', true, '829757989&show_for_all=a4a8edacb9', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 19, 'Dimakkk', true, '829757000&show_for_all=b17c6d49f4', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 19, 'Dimakkk', true, '829756112&show_for_all=c5719b3840', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 19, 'Dimakkk', true, '829752190&show_for_all=f6c16c61d4', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 19, 'Dimakkk', true, '829750116&show_for_all=d288c3628c', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 19, 'Dimakkk', true, '829748801&show_for_all=f056e7f1e8', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 19, 'Dimakkk', true, '829739264&show_for_all=da6eeb818a', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 19, 'Dimakkk', true, '829736639&show_for_all=390037281f', 'second'),
    new Descriptor(e_m.furies, 3, 1, 19, 'Dimakkk', true, '829734935&show_for_all=6d436f86cc', 'second'),
    new Descriptor(e_m.witch, 3, 1, 19, 'Dimakkk', true, '829734100&show_for_all=7568e806b5', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 19, 'Dimakkk', true, '829729785&show_for_all=26a8d89e6e', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 19, 'Dimakkk', true, '829728996&show_for_all=174c34429a', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 19, 'Dimakkk', true, '829726979&show_for_all=32cc9cecd3', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 19, 'Dimakkk', true, '829609329&show_for_all=3dc97dd492', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 19, 'Dimakkk', true, '829607148&show_for_all=8b6ae0e05d', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 19, 'Dimakkk', true, '829605788&show_for_all=8ca2575cb4', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 19, 'Dimakkk', true, '829603277&show_for_all=5d6db0ba7a', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Dimakkk', true, '829219929&show_for_all=6fc6a5a06b', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Dimakkk', true, '829216967&show_for_all=9aa1bd0e7e', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Dimakkk', true, '829209900&show_for_all=814ffe16ae', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Dimakkk', true, '829208752&show_for_all=8f3ed623dc', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Dimakkk', true, '829187098&show_for_all=4b82226e30', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Dimakkk', true, '829185774&show_for_all=44540ca82e', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Dimakkk', true, '829184218&show_for_all=ba4c224156', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Dimakkk', true, '829182447&show_for_all=8f79275dae', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Dimakkk', true, '829171239&show_for_all=85104782fb', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Dimakkk', true, '829170583&show_for_all=7c5b36e27f', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Dimakkk', true, '829169905&show_for_all=3c565f5932', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Dimakkk', true, '829167032&show_for_all=7ae6794e62', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Dimakkk', true, '829166476&show_for_all=f853e757a0', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Dimakkk', true, '829165788&show_for_all=b74bc47afa', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Dimakkk', true, '829165220&show_for_all=907a17c7e5', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Dimakkk', true, '829164390&show_for_all=070839a4e4', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Dimakkk', true, '828972294&show_for_all=57ddf9d162', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Dimakkk', true, '828971880&show_for_all=04c1ad083c', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Dimakkk', true, '828971353&show_for_all=84861987cd', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Dimakkk', true, '828970874&show_for_all=54867490bd', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Dimakkk', true, '828970359&show_for_all=67e7ef4e0f', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Dimakkk', true, '828970049&show_for_all=ce2bf523d8', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Dimakkk', true, '828969547&show_for_all=a3f370f9b2', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Dimakkk', true, '828968927&show_for_all=c495861505', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Dimakkk', true, '828595650&show_for_all=a6c408c953', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Dimakkk', true, '828593513&show_for_all=bcc3476fe3', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Dimakkk', true, '828588795&show_for_all=60b0757374', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Dimakkk', true, '828586585&show_for_all=6fa8b4dcb4', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Dimakkk', true, '828584966&show_for_all=d924bf7417', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Dimakkk', true, '828581719&show_for_all=80eede09f6', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Dimakkk', true, '828576046&show_for_all=393f9abb92', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Dimakkk', true, '828571807&show_for_all=721d6b503b', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Dimakkk', true, '828433051&show_for_all=40ccf5ac24', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Dimakkk', true, '828430220&show_for_all=90b7b78e16', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Dimakkk', true, '828426702&show_for_all=7e2906ff1c', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Dimakkk', true, '828423836&show_for_all=7a16adb01c', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Dimakkk', true, '828422067&show_for_all=6eeeebb2fc', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Dimakkk', true, '828384638&show_for_all=d5f3d56f51', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Dimakkk', true, '828381129&show_for_all=83ca698df6', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Dimakkk', true, '828367888&show_for_all=1cb8e8de12', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Dimakkk', true, '828363815&show_for_all=edf19ce4fd', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Dimakkk', false, '828360216&show_for_all=a2c7560d97', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Dimakkk', true, '828358690&show_for_all=1ec1f9afc7', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Dimakkk', true, '828356975&show_for_all=9da46a0107', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Dimakkk', true, '828327654&show_for_all=8d8c5f88be', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Dimakkk', true, '828326546&show_for_all=8202f7b52e', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Dimakkk', true, '828326324&show_for_all=dfb99ed1dc', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Dimakkk', true, '828325748&show_for_all=7c1dd2524e', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Dimakkk', true, '828324905&show_for_all=1006b7a1ca', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Dimakkk', true, '822565887&show_for_all=f3f4637a61', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Dimakkk', true, '822562740&show_for_all=49410de0bd', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Dimakkk', true, '822561952&show_for_all=ec9cfeeedc', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 19, 'Dimakkk', true, '822560698&show_for_all=9eec70d529', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 19, 'Dimakkk', true, '822559870&show_for_all=df57cd17bf', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 19, 'Dimakkk', true, '822558475&show_for_all=2da8b1c344', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 19, 'Dimakkk', true, '822557045&show_for_all=e29ab96009', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 19, 'Dimakkk', true, '822555075&show_for_all=baa0c24a57', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 19, 'Dimakkk', true, '822552119&show_for_all=5ce6f399cd', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 19, 'Dimakkk', false, '822546693&show_for_all=c7508fd725', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Dimakkk', true, '822544481&show_for_all=c6e11b44b5', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 19, 'Dimakkk', true, '822543609&show_for_all=cc05f76d1b', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Dimakkk', true, '822542465&show_for_all=52a71f4a36', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Dimakkk', true, '822533489&show_for_all=28253b06f0', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 19, 'Dimakkk', true, '822401460&show_for_all=6154887365', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 19, 'Dimakkk', true, '822399221&show_for_all=a539cea92f', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 19, 'Dimakkk', true, '822395345&show_for_all=873db6bfba', 'second'),
    new Descriptor(e_m.furies, 6, 0, 19, 'Dimakkk', true, '822385294&show_for_all=2ec394d3ef', 'second'),
    new Descriptor(e_m.witch, 6, 0, 19, 'Dimakkk', true, '822382715&show_for_all=556a81d687', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 19, 'Dimakkk', true, '822380856&show_for_all=cc7bc42980', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 19, 'Dimakkk', true, '822377888&show_for_all=a338dc7925', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Dimakkk', true, '822374555&show_for_all=de75ae52fe', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 19, 'Dimakkk', true, '822372912&show_for_all=01f79fdc45', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 19, 'Dimakkk', true, '822370777&show_for_all=6c4267f1d7', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 19, 'Dimakkk', true, '822369017&show_for_all=6af3b1d383', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 17, 'панацея', true, '823403860&show_for_all=01fb1766de', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 17, 'панацея', true, '823401320&show_for_all=42b9da7d0f', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 17, 'панацея', true, '823398912&show_for_all=6fe7aa390d', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 17, 'панацея', true, '823393814&show_for_all=e9ddac3645', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 17, 'панацея', true, '823391415&show_for_all=3b51826ae5', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 17, 'панацея', true, '823389190&show_for_all=e832b22b78', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 17, 'панацея', true, '823388828&show_for_all=4e6c66e931', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 17, 'панацея', true, '823372503&show_for_all=bd9dedcb91', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 17, 'панацея', true, '823370389&show_for_all=c8353ad82c', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 17, 'панацея', true, '823352616&show_for_all=776913ec2b', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 17, 'панацея', true, '823351940&show_for_all=65cae74cf0', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 17, 'панацея', true, '823349383&show_for_all=18e871b3c3', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 17, 'панацея', true, '823346390&show_for_all=9f694158b7', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 17, 'панацея', true, '823343323&show_for_all=05e4d4e67c', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 17, 'панацея', true, '823338358&show_for_all=666fe3c2a1', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 17, 'панацея', true, '823335220&show_for_all=a05bac7bb2', 'second'),
    new Descriptor(e_m.witch, 7, 0, 17, 'панацея', true, '823334635&show_for_all=92775a7db5', 'second'),
    new Descriptor(e_m.furies, 7, 0, 17, 'панацея', true, '823329466&show_for_all=ae9860554d', 'second'),
    new Descriptor(e_m.furies, 7, 0, 17, 'панацея', false, '823326153&show_for_all=5ee8794938', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 17, 'панацея', true, '823323636&show_for_all=6deac87957', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 17, 'панацея', true, '823323092&show_for_all=5271969bc8', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 17, 'панацея', true, '823319935&show_for_all=c273da0d08', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 17, 'панацея', true, '823310638&show_for_all=026f540588', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 17, 'панацея', true, '823308010&show_for_all=b542ebeef5', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 17, 'панацея', true, '823307527&show_for_all=cce58ee4cd', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 17, 'панацея', true, '823154173&show_for_all=12d19a58b0', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 17, 'панацея', true, '823153177&show_for_all=b6ac117548', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 17, 'панацея', true, '823152466&show_for_all=6441dde555', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 17, 'панацея', true, '823151677&show_for_all=8dbe837f2c', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 17, 'панацея', true, '823151124&show_for_all=e89bc744db', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 17, 'панацея', true, '823150460&show_for_all=1226ac7718', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 17, 'панацея', true, '823149460&show_for_all=611028b596', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 17, 'панацея', true, '823148618&show_for_all=0a5c0591ba', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 17, 'панацея', true, '823146848&show_for_all=46da6504f2', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 17, 'панацея', true, '823145838&show_for_all=e48bddb424', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 17, 'панацея', true, '823144979&show_for_all=a98de07520', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 17, 'панацея', true, '823144194&show_for_all=5a32c8c13c', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 17, 'панацея', true, '823143533&show_for_all=1e4726b1f1', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 17, 'панацея', true, '823142821&show_for_all=a2795b2e32', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 17, 'панацея', true, '823141595&show_for_all=12ad64159f', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 17, 'панацея', true, '823139131&show_for_all=94f4a78b0b', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 17, 'панацея', true, '823132910&show_for_all=5357a82d1c', 'second'),
    new Descriptor(e_m.witch, 7, 1, 17, 'панацея', true, '823121074&show_for_all=8050fc679d', 'second'),
    new Descriptor(e_m.furies, 7, 1, 17, 'панацея', true, '823111964&show_for_all=f20fe3b3f9', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 17, 'панацея', true, '823107276&show_for_all=8f2d51aaa2', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 17, 'панацея', true, '823105774&show_for_all=486d477605', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 17, 'панацея', true, '823104243&show_for_all=ece05b4725', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 17, 'панацея', true, '823102318&show_for_all=254a7baaab', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 17, 'панацея', true, '823101314&show_for_all=f54480abc9', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 17, 'панацея', true, '823099879&show_for_all=a39cc79d6d', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 17, 'панацея', true, '823085521&show_for_all=51f74f07df', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 17, 'панацея', true, '823084567&show_for_all=e1f58e6598', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 17, 'панацея', true, '823083837&show_for_all=4d42ee927e', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 17, 'панацея', true, '823078301&show_for_all=5590f13575', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 17, 'панацея', true, '823077203&show_for_all=6e8ac3b5b7', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 17, 'панацея', false, '823075066&show_for_all=2a68365e22', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 17, 'панацея', true, '823073750&show_for_all=4b93b41adc', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 17, 'панацея', true, '823018722&show_for_all=87be103113', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 17, 'панацея', true, '823016947&show_for_all=5764597494', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 17, 'панацея', true, '823010686&show_for_all=ee54c6389f', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 17, 'панацея', true, '823008727&show_for_all=075bfb35ef', 'second'),
    new Descriptor(e_m.witch, 2, 1, 17, 'панацея', true, '823008134&show_for_all=0653d8eee2', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 17, 'панацея', true, '823002755&show_for_all=1ed2858417', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 17, 'панацея', true, '823001684&show_for_all=7d3373f17e', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 17, 'панацея', true, '822998772&show_for_all=62709182d2', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 17, 'панацея', false, '822993035&show_for_all=cc861a2726', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 17, 'панацея', false, '822981726&show_for_all=3a3c5335d3', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 17, 'панацея', true, '822978587&show_for_all=bb7c38fd7c', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 17, 'панацея', true, '822976941&show_for_all=8d4b42c70b', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 17, 'панацея', true, '822954398&show_for_all=176834650b', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 17, 'панацея', true, '822949852&show_for_all=23941d17ba', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 17, 'панацея', true, '822944806&show_for_all=93220ec3fd', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 17, 'панацея', true, '822943683&show_for_all=1534454fcb', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 17, 'панацея', true, '822942450&show_for_all=add2f3c58f', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 17, 'панацея', false, '822867848&show_for_all=0a5814ad72', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 17, 'панацея', true, '822867061&show_for_all=f98e9b378f', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 17, 'панацея', true, '822840243&show_for_all=0ceab3e30c', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 17, 'панацея', true, '822838294&show_for_all=3704300f52', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 0, 17, 'панацея', true, '822832689&show_for_all=b40f971fb4', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 17, 'панацея', true, '822831688&show_for_all=9992419a3b', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 17, 'панацея', true, '822830783&show_for_all=135db25532', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 17, 'панацея', true, '822829492&show_for_all=4eb8581ea3', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 17, 'панацея', true, '822827953&show_for_all=a027331d57', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 17, 'панацея', true, '822821029&show_for_all=9a2b4ebd36', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 17, 'панацея', true, '822819212&show_for_all=38bb679ed5', 'second'),
    new Descriptor(e_m.witch, 2, 0, 17, 'панацея', true, '822800017&show_for_all=b6a0b00316', 'second'),
    new Descriptor(e_m.furies, 2, 0, 17, 'панацея', true, '822798136&show_for_all=5b407b9185', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 17, 'панацея', true, '822796600&show_for_all=00f04622a2', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 17, 'панацея', true, '822795627&show_for_all=085e74601f', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 17, 'панацея', true, '822794578&show_for_all=41b65a8529', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 17, 'панацея', true, '822792980&show_for_all=a62222502a', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 17, 'панацея', true, '822791484&show_for_all=2ba21bee2e', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 17, 'панацея', true, '822781092&show_for_all=8f8859d2db', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'панацея', true, '822518976&show_for_all=404c67ecd3', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 17, 'панацея', true, '822517651&show_for_all=b9f02fc644', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 17, 'панацея', true, '822516943&show_for_all=aeb4308ffc', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 17, 'панацея', true, '822515207&show_for_all=fb42e01c29', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 17, 'панацея', true, '822514200&show_for_all=db30ccd2b1', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 17, 'панацея', true, '822513396&show_for_all=a07d76d468', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 17, 'панацея', true, '822512652&show_for_all=32f381fb4e', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 17, 'панацея', true, '822510348&show_for_all=92453d03c1', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 17, 'панацея', true, '822508943&show_for_all=d23210681c', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 17, 'панацея', true, '822507812&show_for_all=c87c9a8d52', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 17, 'панацея', false, '822505671&show_for_all=f2352dec36', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 17, 'панацея', true, '822504627&show_for_all=af241aa79d', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 17, 'панацея', true, '822503724&show_for_all=7fc3387027', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 17, 'панацея', true, '822502742&show_for_all=94f7281374', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 17, 'панацея', true, '822501141&show_for_all=b64dcc4d49', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 17, 'панацея', true, '822499579&show_for_all=3bd831af41', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 17, 'панацея', true, '822497488&show_for_all=b712fad687', 'second'),
    new Descriptor(e_m.witch, 1, 1, 17, 'панацея', true, '822496651&show_for_all=6f7ab17af2', 'second'),
    new Descriptor(e_m.furies, 1, 1, 17, 'панацея', true, '822495904&show_for_all=83f6d0c095', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 17, 'панацея', true, '822494992&show_for_all=4ef7f1c66a', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 17, 'панацея', true, '822494354&show_for_all=62cba8c312', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 17, 'панацея', true, '822493602&show_for_all=ff98ef1013', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 17, 'панацея', true, '822491666&show_for_all=22d1b1f43a', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 17, 'панацея', false, '822488534&show_for_all=d482e2512b', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 17, 'панацея', true, '822485910&show_for_all=406433da7e', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 17, 'панацея', true, '822485087&show_for_all=ff0ca36024', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 17, 'панацея', true, '822481283&show_for_all=9229dabf49', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 17, 'панацея', true, '822479783&show_for_all=69ae18a4e8', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 17, 'панацея', true, '822479001&show_for_all=96dd3ae3de', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 17, 'панацея', true, '822477224&show_for_all=67c29127c3', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 17, 'панацея', true, '822476036&show_for_all=2e776ead21', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 17, 'панацея', true, '822473412&show_for_all=0c3d64f39c', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 17, 'панацея', true, '822472078&show_for_all=56626f0ab8', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'панацея', true, '822469857&show_for_all=ac2549a8ed', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'панацея', false, '822467291&show_for_all=24838a6986', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'панацея', false, '822217096&show_for_all=168bc44e4e', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 17, 'панацея', true, '822214988&show_for_all=cb9087ff09', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 17, 'панацея', false, '822211411&show_for_all=7c5d998508', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 17, 'панацея', true, '822209143&show_for_all=4b3de55967', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 17, 'панацея', false, '821881815&show_for_all=44dca7fb72', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'панацея', true, '821880632&show_for_all=707a582024', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 17, 'панацея', true, '821877667&show_for_all=9bd5b4bc6a', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 17, 'панацея', true, '821875428&show_for_all=b40c15844d', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 17, 'панацея', true, '821872048&show_for_all=ddf9ece146', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 17, 'панацея', false, '821840130&show_for_all=dceaf96240', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 17, 'панацея', true, '821837530&show_for_all=1623e0f577', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 17, 'панацея', true, '821821072&show_for_all=5dc6d63feb', 'second'),
    new Descriptor(e_m.witch, 1, 0, 17, 'панацея', true, '821817862&show_for_all=9a11690456', 'second'),
    new Descriptor(e_m.furies, 1, 0, 17, 'панацея', true, '821815585&show_for_all=72ebacd839', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 17, 'панацея', true, '821812835&show_for_all=be323120a0', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 17, 'панацея', true, '821791060&show_for_all=3f58e442dd', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 17, 'панацея', true, '821787011&show_for_all=1ba61ff127', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 17, 'панацея', true, '821779255&show_for_all=ad6de29d54', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 17, 'панацея', true, '821776164&show_for_all=d01d1f984c', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 17, 'панацея', true, '821774707&show_for_all=2856bd60ec', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 17, 'панацея', true, '821732190&show_for_all=eae22358b8', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 17, 'панацея', true, '821730699&show_for_all=df56e09121', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 17, 'панацея', true, '821729730&show_for_all=607f9edbb8', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 17, 'панацея', true, '821641943&show_for_all=30d838b942', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 17, 'панацея', true, '821640824&show_for_all=c1d89dd9e7', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 17, 'панацея', true, '821639470&show_for_all=b604ef3f7b', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 17, 'панацея', true, '821638321&show_for_all=34b6057953', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'панацея', true, '821635382&show_for_all=443bf645bb', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'панацея', false, '821632728&show_for_all=1c305359b5', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 17, 'панацея', true, '821631439&show_for_all=bd79d1bbd7', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 17, 'панацея', false, '821628846&show_for_all=cabad24be2', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 17, 'панацея', true, '821627108&show_for_all=1ab82cfcfa', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 17, 'панацея', false, '821624525&show_for_all=32beda2731', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 17, 'панацея', false, '821622314&show_for_all=b5505c7285', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'панацея', true, '821621210&show_for_all=a4fe4a5f69', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 17, 'панацея', true, '821601941&show_for_all=d9c30cb012', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 17, 'панацея', true, '821600516&show_for_all=656e9aa45a', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 17, 'панацея', true, '821597877&show_for_all=60d5a24362', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 17, 'панацея', true, '821596237&show_for_all=09e615127a', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 17, 'панацея', true, '821593118&show_for_all=3c4679adbc', 'second'),
    new Descriptor(e_m.witch, 4, 0, 17, 'панацея', true, '821592425&show_for_all=859cf44bc1', 'second'),
    new Descriptor(e_m.furies, 4, 0, 17, 'панацея', true, '821590649&show_for_all=f6238da5fc', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 17, 'панацея', true, '821589368&show_for_all=18bf400388', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 17, 'панацея', true, '821588333&show_for_all=bb120d88ee', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 17, 'панацея', false, '821584657&show_for_all=1cfaecd422', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 17, 'панацея', true, '821582844&show_for_all=46e756b890', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 17, 'панацея', true, '821580401&show_for_all=67037f643c', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 17, 'панацея', true, '821565412&show_for_all=c61c909900', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 17, 'панацея', true, '821563861&show_for_all=9c5ce0f2c8', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'панацея', true, '821557072&show_for_all=e185357048', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 17, 'панацея', true, '821549146&show_for_all=516ca25bea', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'панацея', true, '821548033&show_for_all=0830db7a71', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'панацея', true, '821546767&show_for_all=3a5bdea8be', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 17, 'панацея', true, '821545909&show_for_all=03c2e99558', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 17, 'панацея', true, '821544764&show_for_all=245709512e', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 17, 'панацея', true, '820474539&show_for_all=0b9cf5350d', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 17, 'панацея', true, '820472194&show_for_all=871f124f89', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 17, 'панацея', true, '820469260&show_for_all=004f45237e', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 17, 'панацея', true, '820467792&show_for_all=ef43e42eba', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 17, 'панацея', true, '820466628&show_for_all=e321a1b6ca', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 17, 'панацея', true, '820465226&show_for_all=2c4a2a9d82', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 17, 'панацея', true, '820451879&show_for_all=21ba55b759', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 17, 'панацея', true, '820448932&show_for_all=3aeb4f6ab8', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 17, 'панацея', true, '820446918&show_for_all=678183d348', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 17, 'панацея', true, '820443473&show_for_all=d718fbaa40', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 17, 'панацея', true, '820434970&show_for_all=d7c045f004', 'second'),
    new Descriptor(e_m.witch, 4, 1, 17, 'панацея', true, '820434032&show_for_all=54aa4386d2', 'second'),
    new Descriptor(e_m.furies, 4, 1, 17, 'панацея', true, '820432653&show_for_all=07ad11f37e', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 17, 'панацея', true, '820430853&show_for_all=8ad4408ce4', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 17, 'панацея', true, '820430208&show_for_all=29c3004023', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 17, 'панацея', true, '820428955&show_for_all=88b4e42a03', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 17, 'панацея', true, '820427770&show_for_all=7a5b8fcb58', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 17, 'панацея', true, '820422711&show_for_all=2c1ed988f3', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 17, 'панацея', true, '820421876&show_for_all=04c17cc396', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 17, 'панацея', true, '820349343&show_for_all=f7ecc923f0', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 17, 'панацея', true, '820346780&show_for_all=2309e779ad', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 17, 'панацея', true, '820345474&show_for_all=bfcf9f2c17', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 17, 'панацея', true, '820344027&show_for_all=972db296d5', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 17, 'панацея', true, '820340866&show_for_all=98b7e66dd8', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 17, 'панацея', true, '820337951&show_for_all=f4dfdb4c68', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 17, 'панацея', true, '820336760&show_for_all=6aa040ab13', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 17, 'панацея', true, '820315516&show_for_all=68cbbef84f', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 17, 'панацея', true, '820314578&show_for_all=74159dd817', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 17, 'панацея', false, '820310633&show_for_all=582d734e45', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 17, 'панацея', false, '820306439&show_for_all=afcb258e4e', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 17, 'панацея', true, '820305580&show_for_all=3fb591226a', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 17, 'панацея', false, '820303159&show_for_all=a372f5f849', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 17, 'панацея', true, '820301123&show_for_all=bf5acdc42f', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 17, 'панацея', true, '820284613&show_for_all=307f0089ec', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 17, 'панацея', true, '820282689&show_for_all=7677f96d17', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 17, 'панацея', true, '820280952&show_for_all=352bd64372', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 17, 'панацея', true, '820279453&show_for_all=c6b5a2bd8a', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 17, 'панацея', true, '820276637&show_for_all=f49609bb14', 'second'),
    new Descriptor(e_m.witch, 5, 2, 17, 'панацея', true, '820275581&show_for_all=b1d0bd2b83', 'second'),
    new Descriptor(e_m.furies, 5, 2, 17, 'панацея', true, '820274338&show_for_all=cdd6eb5066', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 17, 'панацея', true, '820273285&show_for_all=c6ad30b621', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 17, 'панацея', true, '820267927&show_for_all=dcb0559a77', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 17, 'панацея', true, '820265251&show_for_all=c02aa17752', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 17, 'панацея', true, '820263145&show_for_all=3dcaac3553', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 17, 'панацея', true, '820257784&show_for_all=6d22280e9e', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 17, 'панацея', true, '820256530&show_for_all=311fa3daf1', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'панацея', true, '819973798&show_for_all=bdaa55a289', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'панацея', false, '819971017&show_for_all=f54537cac8', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 17, 'панацея', true, '819969412&show_for_all=e8bd36b235', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 17, 'панацея', true, '819967975&show_for_all=596ef6c88b', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 17, 'панацея', true, '819965809&show_for_all=9c783b1497', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 17, 'панацея', true, '819964948&show_for_all=2d3343ab84', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 17, 'панацея', false, '819962652&show_for_all=cf7234ca7c', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 17, 'панацея', true, '819961388&show_for_all=35f8cb84fc', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 17, 'панацея', true, '819960561&show_for_all=75158f7481', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 17, 'панацея', true, '819958134&show_for_all=fb370fb1ab', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 17, 'панацея', true, '819956054&show_for_all=6bc4d5fee6', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 17, 'панацея', true, '819954366&show_for_all=059c76effb', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 17, 'панацея', true, '819952956&show_for_all=2bb5769277', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 17, 'панацея', true, '819951724&show_for_all=5258e0f7a2', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 17, 'панацея', true, '819950671&show_for_all=86f43cf227', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 17, 'панацея', true, '819948787&show_for_all=106433f416', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 17, 'панацея', true, '819947529&show_for_all=3cbff8a8ea', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 17, 'панацея', true, '819944778&show_for_all=b7578bb5dd', 'second'),
    new Descriptor(e_m.witch, 5, 1, 17, 'панацея', true, '819943253&show_for_all=6b919e771a', 'second'),
    new Descriptor(e_m.furies, 5, 1, 17, 'панацея', true, '819938854&show_for_all=0d7ab0e1d2', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 17, 'панацея', true, '819937210&show_for_all=83eaa3d2c8', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 17, 'панацея', true, '819936272&show_for_all=707c33f5e7', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 17, 'панацея', true, '819934610&show_for_all=c5563de14d', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 17, 'панацея', true, '819932767&show_for_all=f1d986fd0f', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 17, 'панацея', true, '819931742&show_for_all=0d35528f07', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 17, 'панацея', false, '819929547&show_for_all=4474792a85', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 17, 'панацея', true, '819928751&show_for_all=618c477ef5', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'панацея', true, '819917745&show_for_all=51a9de5db8', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 17, 'панацея', true, '819915096&show_for_all=6907c80726', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 17, 'панацея', true, '819914445&show_for_all=b2a4aa8134', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 17, 'панацея', true, '819913053&show_for_all=c95469d25f', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 17, 'панацея', true, '819911797&show_for_all=1f8ff392a5', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 17, 'панацея', true, '819910730&show_for_all=1d25bd5939', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 17, 'панацея', false, '819909327&show_for_all=e75e2896e1', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 17, 'панацея', true, '819908923&show_for_all=ea555d347d', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 17, 'панацея', true, '819907410&show_for_all=5570fc3c3e', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 17, 'панацея', true, '819832158&show_for_all=ed91dfd2c5', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 17, 'панацея', true, '819831028&show_for_all=39ef18cd88', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 17, 'панацея', true, '819830089&show_for_all=3a33759e2b', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 17, 'панацея', true, '819828268&show_for_all=b6d55c4897', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 17, 'панацея', true, '819827382&show_for_all=a4a4c9687e', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 17, 'панацея', true, '819825983&show_for_all=b35aa2e3b9', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 17, 'панацея', true, '819824525&show_for_all=e3fbb174f7', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 17, 'панацея', true, '819822214&show_for_all=83514d95ef', 'second'),
    new Descriptor(e_m.witch, 5, 0, 17, 'панацея', true, '819820273&show_for_all=c05ccc4dd4', 'second'),
    new Descriptor(e_m.furies, 5, 0, 17, 'панацея', true, '819818997&show_for_all=f834bb2c53', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 17, 'панацея', true, '819808622&show_for_all=f035279c92', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 17, 'панацея', true, '819807728&show_for_all=2ca482c9d8', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'панацея', true, '819804378&show_for_all=2482af3aee', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'панацея', false, '819802247&show_for_all=5a562a9a31', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'панацея', true, '819799153&show_for_all=34c0a40140', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'панацея', false, '819796140&show_for_all=ea5f3cef69', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 17, 'панацея', true, '819784870&show_for_all=c1dd479228', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 17, 'панацея', true, '819783723&show_for_all=0cad8f81d2', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 17, 'панацея', false, '819780949&show_for_all=6c73b632ce', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'панацея', true, '819752592&show_for_all=1abbbd21b3', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'панацея', true, '819751619&show_for_all=b8176969d9', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 17, 'панацея', true, '819749175&show_for_all=59b392f6e4', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 17, 'панацея', true, '819744127&show_for_all=c4d2589bdd', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 17, 'панацея', true, '819743073&show_for_all=1c928de513', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 17, 'панацея', true, '819670702&show_for_all=c15c4cd639', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 17, 'панацея', true, '819670247&show_for_all=ed81a1df71', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 17, 'панацея', true, '819666761&show_for_all=fe568f7d69', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 17, 'панацея', true, '819666038&show_for_all=4976fe29e0', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 17, 'панацея', true, '819665413&show_for_all=8afe568612', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 17, 'панацея', true, '819664730&show_for_all=8ba9a2fdd9', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 17, 'панацея', true, '819664102&show_for_all=0fad7856e4', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 17, 'панацея', true, '819663399&show_for_all=4c6e8f13f4', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 17, 'панацея', true, '819662247&show_for_all=bd0beef288', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 17, 'панацея', true, '819661144&show_for_all=671f52e005', 'second'),
    new Descriptor(e_m.witch, 3, 1, 17, 'панацея', true, '819659592&show_for_all=66c9f2da51', 'second'),
    new Descriptor(e_m.furies, 3, 1, 17, 'панацея', true, '819658967&show_for_all=8cb8e1c303', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 17, 'панацея', true, '819658519&show_for_all=4d98a5e5c0', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 17, 'панацея', true, '819657535&show_for_all=abe399f91a', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 17, 'панацея', true, '819656545&show_for_all=7f4d1a44e0', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 17, 'панацея', true, '819654758&show_for_all=6cf948db88', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 17, 'панацея', true, '819654146&show_for_all=8b70bc4fec', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 17, 'панацея', true, '819653291&show_for_all=6e412f2e11', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 17, 'панацея', true, '819652061&show_for_all=746c9150db', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 17, 'панацея', true, '819641882&show_for_all=c39bc69c6a', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 17, 'панацея', true, '819631604&show_for_all=a45739fb9c', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 17, 'панацея', true, '819629646&show_for_all=16947c78df', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 17, 'панацея', true, '819628808&show_for_all=fc03f5d0c4', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 17, 'панацея', true, '819628255&show_for_all=b1e39c6e3f', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 17, 'панацея', true, '819627146&show_for_all=1172952c1c', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 17, 'панацея', true, '819626270&show_for_all=5589a22f03', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 17, 'панацея', true, '819625447&show_for_all=ecbe25e236', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 17, 'панацея', true, '819624258&show_for_all=49284ecb70', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 17, 'панацея', true, '819622938&show_for_all=0b2fcd2c21', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 17, 'панацея', true, '819609177&show_for_all=5f875515d2', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 17, 'панацея', true, '819608282&show_for_all=6df88d06c4', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 17, 'панацея', true, '819607412&show_for_all=e4b27ffa45', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 17, 'панацея', true, '819606262&show_for_all=f67fb43c9f', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 17, 'панацея', true, '819604393&show_for_all=741f9a93ac', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 17, 'панацея', true, '819601270&show_for_all=b28b38e310', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 17, 'панацея', true, '819597666&show_for_all=f090271261', 'second'),
    new Descriptor(e_m.witch, 3, 0, 17, 'панацея', true, '819596166&show_for_all=6c651ed63b', 'second'),
    new Descriptor(e_m.furies, 3, 0, 17, 'панацея', true, '819594494&show_for_all=88e3fa8c2b', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 17, 'панацея', true, '819593903&show_for_all=b4de76c987', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 17, 'панацея', true, '819593022&show_for_all=bb2cd73d07', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 17, 'панацея', true, '819592407&show_for_all=932194e823', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 17, 'панацея', true, '819590069&show_for_all=b970631954', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 17, 'панацея', false, '819510009&show_for_all=29365144a8', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 17, 'панацея', true, '819509244&show_for_all=12e939c688', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 17, 'панацея', true, '819506531&show_for_all=e6eb162cf8', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'панацея', true, '819425050&show_for_all=da74411a82', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'панацея', true, '788371492&show_for_all=2cd97971f6', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 17, 'панацея', true, '788349848&show_for_all=d6ec4f3cd9', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'панацея', true, '788347619&show_for_all=ab9ac33023', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 17, 'панацея', true, '788347079&show_for_all=7df5d246e9', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 17, 'панацея', true, '788344530&show_for_all=b86c92be97', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 17, 'панацея', true, '788271123&show_for_all=26d93795f2', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'панацея', true, '788270051&show_for_all=3416f8eb95', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 17, 'панацея', true, '788268985&show_for_all=b3efd2a30d', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 17, 'панацея', true, '788267317&show_for_all=350610980b', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 17, 'панацея', true, '788220093&show_for_all=0a21730945', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 17, 'панацея', true, '788218752&show_for_all=22b39cc74d', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 17, 'панацея', true, '788216398&show_for_all=ed06d984b4', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 17, 'панацея', true, '788187089&show_for_all=2bd7b117fb', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 17, 'панацея', true, '787930371&show_for_all=615c5fe9a1', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 17, 'панацея', true, '787927914&show_for_all=f2607ee7ac', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 17, 'панацея', true, '787912630&show_for_all=808befd7cc', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'панацея', true, '787911751&show_for_all=f4153ec436', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'панацея', false, '787910197&show_for_all=3087b9aed2', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'панацея', false, '787908277&show_for_all=ed9a840e37', 'second'),
    new Descriptor(e_m.furies, 6, 1, 17, 'панацея', true, '787906653&show_for_all=e7ac6f233a', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 17, 'панацея', true, '787905849&show_for_all=e6e352f9e4', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 17, 'панацея', true, '787903650&show_for_all=6b883344bf', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 17, 'панацея', true, '787902231&show_for_all=468bf5a611', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 17, 'панацея', true, '787901720&show_for_all=5cbd304dc0', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'панацея', true, '787900877&show_for_all=a025224023', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'панацея', false, '787899458&show_for_all=cc6a81c68b', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'панацея', false, '787898283&show_for_all=8713a03115', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'панацея', false, '787820415&show_for_all=ccda714502', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 17, 'панацея', true, '787817244&show_for_all=45b906f70f', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 17, 'панацея', false, '787814035&show_for_all=04e82baff5', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'панацея', true, '782420132&show_for_all=87f8629321', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'панацея', false, '782412609&show_for_all=8082614a27', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'панацея', false, '782410026&show_for_all=d6c57a061f', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'панацея', false, '782400936&show_for_all=0d6675768f', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'панацея', true, '782400119&show_for_all=ee09891c52', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 17, 'панацея', true, '782398602&show_for_all=d159a25cf7', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 17, 'панацея', true, '782332163&show_for_all=6ce07dd776', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 17, 'панацея', true, '782331249&show_for_all=f904f820be', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 17, 'панацея', true, '782329924&show_for_all=e4551ad1ae', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 17, 'панацея', true, '782327903&show_for_all=f918e930ac', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 17, 'панацея', true, '782327079&show_for_all=ac16503057', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 17, 'панацея', true, '782324628&show_for_all=88789467c8', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 17, 'панацея', true, '782323505&show_for_all=8910dd8a32', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 17, 'панацея', false, '782321269&show_for_all=b76bc76891', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 17, 'панацея', true, '782320122&show_for_all=1d6acabdad', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 17, 'панацея', true, '782318167&show_for_all=652650df41', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 17, 'панацея', true, '782317101&show_for_all=8d5d482ed8', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 17, 'панацея', true, '782315735&show_for_all=33460ec358', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 17, 'панацея', true, '782300534&show_for_all=2990a6086f', 'second'),
    new Descriptor(e_m.furies, 9, 0, 17, 'панацея', true, '782299899&show_for_all=22dd25257e', 'second'),
    new Descriptor(e_m.witch, 9, 0, 17, 'панацея', true, '782299212&show_for_all=9e96df1a69', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 17, 'панацея', true, '782298430&show_for_all=ea0ed1d46a', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 17, 'панацея', true, '782297552&show_for_all=56f9cd43fc', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 17, 'панацея', true, '782295919&show_for_all=b8c934e102', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 17, 'панацея', true, '782294654&show_for_all=2b238e5d0e', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'панацея', true, '782293568&show_for_all=849bab4703', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'панацея', false, '782269767&show_for_all=a8434c59ea', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'панацея', false, '782267387&show_for_all=9d0e0b6694', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 17, 'панацея', true, '782266560&show_for_all=e6f1d4e615', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'панацея', true, '782259151&show_for_all=8364f034c4', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', true, '773506151&show_for_all=a615469240', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 17, 'панацея', true, '773505242&show_for_all=0ac8f0569f', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'панацея', true, '773503833&show_for_all=e1579a0755', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'панацея', true, '773494894&show_for_all=06bc353373', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 17, 'панацея', true, '773493428&show_for_all=bbb11d755f', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 17, 'панацея', true, '773492501&show_for_all=263b58274e', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'панацея', true, '773491507&show_for_all=08b6fba240', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 17, 'панацея', true, '773489735&show_for_all=574000f6f9', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 17, 'панацея', true, '773488106&show_for_all=34b36916cc', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 17, 'панацея', true, '773486818&show_for_all=4c03a61ff1', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 17, 'панацея', true, '773482335&show_for_all=718a26adf8', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 17, 'панацея', true, '773480091&show_for_all=288a1a8994', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 17, 'панацея', true, '773479389&show_for_all=e365b8925e', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 17, 'панацея', true, '773476388&show_for_all=95bfaef8ce', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 17, 'панацея', true, '773473720&show_for_all=67567bd532', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 17, 'панацея', false, '773441497&show_for_all=0547ab1be9', 'second'),
    new Descriptor(e_m.furies, 6, 0, 17, 'панацея', true, '773440569&show_for_all=cfaed1dddc', 'second'),
    new Descriptor(e_m.witch, 6, 0, 17, 'панацея', true, '773439356&show_for_all=d7aaa01879', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 17, 'панацея', true, '773438215&show_for_all=78ad0648e6', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 17, 'панацея', true, '773355231&show_for_all=6889adbab6', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', true, '773353447&show_for_all=311f02960e', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 17, 'панацея', true, '773339373&show_for_all=5d9ff74e83', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 17, 'панацея', true, '773331412&show_for_all=f39e4c18ae', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 17, 'панацея', true, '773328238&show_for_all=1aee1e2185', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 17, 'панацея', true, '773324479&show_for_all=b056b33923', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'панацея', true, '773296361&show_for_all=a2466ac90f', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 17, 'панацея', true, '773295415&show_for_all=caaa640d2b', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'панацея', true, '773294567&show_for_all=91fd1c4162', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'панацея', true, '773291647&show_for_all=22d878644a', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'панацея', false, '773284198&show_for_all=b62694cfc2', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 17, 'панацея', true, '773283275&show_for_all=a0d19526df', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 17, 'панацея', true, '773280934&show_for_all=802515513f', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 17, 'панацея', true, '773278147&show_for_all=177fe35854', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 17, 'панацея', true, '773276968&show_for_all=d97b08c5d4', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 17, 'панацея', false, '773276474&show_for_all=cf1b8edd94', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 17, 'панацея', true, '773275244&show_for_all=16bb139275', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'панацея', true, '773274078&show_for_all=745a1287ac', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 17, 'панацея', true, '773195493&show_for_all=45d6b7089c', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 17, 'панацея', false, '773192751&show_for_all=768547cb09', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 17, 'панацея', true, '773183931&show_for_all=e80f221b1b', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 17, 'панацея', true, '773182243&show_for_all=ed47e7c941', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 17, 'панацея', true, '773180196&show_for_all=92251833b9', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 17, 'панацея', true, '773178534&show_for_all=b1e251e3b1', 'second'),
    new Descriptor(e_m.furies, 6, 0, 17, 'панацея', true, '773177592&show_for_all=9674700c80', 'second'),
    new Descriptor(e_m.witch, 6, 0, 17, 'панацея', true, '773176863&show_for_all=086aad3a8e', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 17, 'панацея', true, '773173863&show_for_all=1aa8202b05', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 17, 'панацея', true, '773172777&show_for_all=9c4f4265b0', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', true, '773171259&show_for_all=8d39aeeae6', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', false, '773167313&show_for_all=444029ad5d', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', false, '773164077&show_for_all=effa24b342', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', false, '773161523&show_for_all=af08c2866d', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', false, '773148038&show_for_all=8dcd748208', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', false, '773135644&show_for_all=e03d053d98', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'панацея', false, '773131317&show_for_all=7930c62ff7', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 17, 'панацея', true, '773130575&show_for_all=348370f964', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 17, 'панацея', true, '773129583&show_for_all=8146849f50', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 17, 'панацея', false, '773127217&show_for_all=a187c47634', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 17, 'панацея', true, '773126064&show_for_all=063f261e8f', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 17, 'панацея', false, '773123746&show_for_all=f9a720e928', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 17, 'панацея', true, '773120999&show_for_all=54921312f2', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Конунг1987', true, '838513783&show_for_all=499ea07996', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 19, 'Конунг1987', true, '838512401&show_for_all=e0b51cf944', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 19, 'Конунг1987', true, '838511790&show_for_all=c25062899e', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'Конунг1987', true, '838510959&show_for_all=5c00982bd6', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 19, 'Конунг1987', true, '838510678&show_for_all=cf538d4956', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 19, 'Конунг1987', true, '838510170&show_for_all=22cedd9501', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 19, 'Конунг1987', false, '838509421&show_for_all=dda0df8801', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'Конунг1987', true, '838509183&show_for_all=599c6bacaa', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 19, 'Конунг1987', true, '838508866&show_for_all=cb1d3b38e0', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 19, 'Конунг1987', true, '838508513&show_for_all=6a8edae89d', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 19, 'Конунг1987', true, '838508132&show_for_all=98997d6060', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 19, 'Конунг1987', true, '838507333&show_for_all=9cc97e6125', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 19, 'Конунг1987', true, '838506733&show_for_all=a84c8b3df0', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 19, 'Конунг1987', true, '838505912&show_for_all=5cd0a7ce5f', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 19, 'Конунг1987', true, '838415644&show_for_all=4de66357bc', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 19, 'Конунг1987', false, '838411101&show_for_all=c390545bf0', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 19, 'Конунг1987', true, '838409801&show_for_all=3d3922e396', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 19, 'Конунг1987', true, '838407969&show_for_all=e9d50e3181', 'second'),
    new Descriptor(e_m.witch, 7, 1, 19, 'Конунг1987', true, '838407470&show_for_all=87d36f3333', 'second'),
    new Descriptor(e_m.furies, 7, 1, 19, 'Конунг1987', true, '838406551&show_for_all=a224b272a6', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 19, 'Конунг1987', true, '838405758&show_for_all=f117ef59b5', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 19, 'Конунг1987', false, '838403348&show_for_all=8a83d97243', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 19, 'Конунг1987', true, '838402153&show_for_all=7348597973', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 19, 'Конунг1987', true, '838399732&show_for_all=7d9992dd85', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 19, 'Конунг1987', true, '838399253&show_for_all=90e5cf8b13', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 19, 'Конунг1987', true, '838398448&show_for_all=a27621bd02', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 19, 'Конунг1987', true, '838396909&show_for_all=e8d2bbe548', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Конунг1987', true, '815910377&show_for_all=2171df5809', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Конунг1987', true, '815909943&show_for_all=f20f89ef1b', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Конунг1987', true, '815909081&show_for_all=e35097568d', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Конунг1987', false, '815907802&show_for_all=ec6a2329b5', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Конунг1987', true, '815907552&show_for_all=0639809a43', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Конунг1987', true, '815907145&show_for_all=f7a58d92fa', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Конунг1987', true, '815906805&show_for_all=b48c9b5f17', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Конунг1987', false, '815905037&show_for_all=b569e1e756', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Конунг1987', true, '815903815&show_for_all=2f186c782a', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Конунг1987', true, '815875606&show_for_all=e0a5e61e75', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Конунг1987', false, '815872292&show_for_all=ca9a2ac3f5', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Конунг1987', true, '815870227&show_for_all=d48cd14f28', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Конунг1987', true, '815867113&show_for_all=58d76fe306', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Конунг1987', true, '815863368&show_for_all=77a5013926', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Конунг1987', true, '815861792&show_for_all=4ec3341245', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Конунг1987', true, '815860745&show_for_all=3d259c3a83', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Конунг1987', true, '815858353&show_for_all=e7d3040c84', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Конунг1987', true, '815849002&show_for_all=0c265bdc11', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Конунг1987', true, '815845983&show_for_all=0cecba104a', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Конунг1987', true, '814614799&show_for_all=9f9552c3fb', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Конунг1987', true, '814613058&show_for_all=1118e91a18', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Конунг1987', true, '814610938&show_for_all=b96c81686b', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Конунг1987', true, '814608738&show_for_all=a5fcd94938', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Конунг1987', false, '814605724&show_for_all=b2e0e2d31b', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Конунг1987', true, '814601985&show_for_all=3c4d897cce', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Конунг1987', true, '814600379&show_for_all=6a9292c433', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Конунг1987', true, '814598648&show_for_all=b52473307b', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Конунг1987', true, '814595962&show_for_all=0f1f9e21b2', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Конунг1987', false, '814592191&show_for_all=3f1880fe12', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Конунг1987', false, '814589360&show_for_all=5fc96aa87f', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Конунг1987', true, '811778989&show_for_all=a2c5aeb550', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 19, 'Конунг1987', true, '811778277&show_for_all=d73d7fe19b', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'Конунг1987', true, '811777026&show_for_all=46148f5a0b', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 19, 'Конунг1987', true, '811776226&show_for_all=331d2ca9c2', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'Конунг1987', true, '811775238&show_for_all=8daecf7e73', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'Конунг1987', false, '811773884&show_for_all=6696d0c5c0', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'Конунг1987', false, '811770059&show_for_all=f508098c7d', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'Конунг1987', true, '811769388&show_for_all=20ba3ff8c2', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 19, 'Конунг1987', true, '811768805&show_for_all=d7fa19753b', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 19, 'Конунг1987', true, '811767736&show_for_all=1d59a938a6', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 19, 'Конунг1987', true, '811767013&show_for_all=c1389ce265', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 19, 'Конунг1987', true, '811765705&show_for_all=0796649da7', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 19, 'Конунг1987', true, '811763860&show_for_all=ffcaa5141b', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 19, 'Конунг1987', false, '811749946&show_for_all=65d52b4e33', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 19, 'Конунг1987', true, '811746777&show_for_all=a011a2b249', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 19, 'Конунг1987', true, '811745381&show_for_all=234a951bef', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 19, 'Конунг1987', true, '811743415&show_for_all=77f9d8ebf5', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 19, 'Конунг1987', true, '811741411&show_for_all=7e9a181754', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 19, 'Конунг1987', true, '811738826&show_for_all=dd803532d6', 'second'),
    new Descriptor(e_m.witch, 3, 1, 19, 'Конунг1987', true, '811737608&show_for_all=1941f5f321', 'second'),
    new Descriptor(e_m.furies, 3, 1, 19, 'Конунг1987', true, '811735638&show_for_all=932d9c903b', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 19, 'Конунг1987', true, '811734485&show_for_all=ef16f52cd4', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 19, 'Конунг1987', true, '811732586&show_for_all=66fd518964', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 19, 'Конунг1987', true, '811729165&show_for_all=184c5e1049', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 19, 'Конунг1987', true, '811728158&show_for_all=b36a447d21', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 19, 'Конунг1987', true, '811726835&show_for_all=80a1034164', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 19, 'Конунг1987', true, '811724723&show_for_all=f5a0ec2c87', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Конунг1987', true, '799422471&show_for_all=82f5602d2c', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Конунг1987', false, '799419750&show_for_all=b105813687', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Конунг1987', false, '799417615&show_for_all=5621ad8046', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 19, 'Конунг1987', true, '799413197&show_for_all=8431a5bd34', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 19, 'Конунг1987', true, '799412368&show_for_all=05a36365fe', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 19, 'Конунг1987', true, '799408538&show_for_all=60dde812e2', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 19, 'Конунг1987', true, '799404467&show_for_all=8136f0309d', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 19, 'Конунг1987', true, '799400697&show_for_all=f85116b4a8', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 19, 'Конунг1987', true, '799399643&show_for_all=33021807a3', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 19, 'Конунг1987', true, '799398353&show_for_all=ee2961a58c', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 19, 'Конунг1987', true, '799396661&show_for_all=6064c739f0', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 19, 'Конунг1987', true, '799395089&show_for_all=aa3afba6dc', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 19, 'Конунг1987', true, '799391843&show_for_all=10da1bc44f', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 19, 'Конунг1987', true, '799114620&show_for_all=28aae19003', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 19, 'Конунг1987', true, '799113275&show_for_all=f606b50606', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 19, 'Конунг1987', true, '799102847&show_for_all=1f65788061', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 19, 'Конунг1987', true, '799097505&show_for_all=89e51f0bd9', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 19, 'Конунг1987', true, '799078435&show_for_all=866e0d6f89', 'second'),
    new Descriptor(e_m.witch, 3, 0, 19, 'Конунг1987', true, '799076967&show_for_all=27c1e25d73', 'second'),
    new Descriptor(e_m.furies, 3, 0, 19, 'Конунг1987', true, '799073675&show_for_all=a4bea73721', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 19, 'Конунг1987', true, '799072278&show_for_all=544c739917', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 19, 'Конунг1987', true, '799070974&show_for_all=fe01e41ba4', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 19, 'Конунг1987', true, '799068670&show_for_all=3ef4739e2e', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 19, 'Конунг1987', true, '799066858&show_for_all=909daae641', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Конунг1987', true, '799065114&show_for_all=a9798c7062', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Конунг1987', false, '799061458&show_for_all=4895a3098d', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Конунг1987', false, '799058515&show_for_all=b6a244fd45', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 19, 'Конунг1987', true, '799056670&show_for_all=9a8b289840', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Конунг1987', true, '798923111&show_for_all=9037cac1d8', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 19, 'Конунг1987', true, '798922453&show_for_all=1c3278514a', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Конунг1987', true, '798909796&show_for_all=71949fcb72', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Конунг1987', false, '798906528&show_for_all=2783ebb903', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 19, 'Конунг1987', true, '798889506&show_for_all=544be1c118', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 19, 'Конунг1987', false, '798886368&show_for_all=34ea16010a', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 19, 'Конунг1987', true, '798885395&show_for_all=d16e8d5a60', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Конунг1987', false, '798882953&show_for_all=c121f4ba21', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Конунг1987', false, '798880043&show_for_all=1bfbf90c1c', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 19, 'Конунг1987', true, '798878148&show_for_all=a07aed5e41', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Конунг1987', true, '798484900&show_for_all=cb66db172b', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Конунг1987', false, '798481756&show_for_all=f1d4775f24', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Конунг1987', false, '798477653&show_for_all=6dd4fa327a', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Конунг1987', true, '798473147&show_for_all=a4fccbe649', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Конунг1987', false, '798458170&show_for_all=ff2057e874', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Конунг1987', false, '798448548&show_for_all=bce641d9c2', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Конунг1987', false, '798253562&show_for_all=85db6bc0c7', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 19, 'Конунг1987', true, '798253057&show_for_all=caee3016d1', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 19, 'Конунг1987', true, '798252602&show_for_all=04f599350f', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 19, 'Конунг1987', false, '798251129&show_for_all=328400b158', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Конунг1987', true, '798250433&show_for_all=323912e4ac', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Конунг1987', false, '798246150&show_for_all=700ecf78af', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 19, 'Конунг1987', true, '798238793&show_for_all=bf37a5d0d0', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Конунг1987', true, '798237964&show_for_all=b280a7a515', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Конунг1987', false, '798235835&show_for_all=52be662e2e', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 19, 'Конунг1987', true, '798233870&show_for_all=0ca6d07718', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 19, 'Конунг1987', true, '798230223&show_for_all=93f4b8966d', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 19, 'Конунг1987', true, '798228128&show_for_all=df46d394d2', 'second'),
    new Descriptor(e_m.witch, 6, 0, 19, 'Конунг1987', true, '798227687&show_for_all=7944bc9052', 'second'),
    new Descriptor(e_m.furies, 6, 0, 19, 'Конунг1987', true, '798226599&show_for_all=d742720e07', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 19, 'Конунг1987', true, '798222843&show_for_all=0faf3c6344', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 19, 'Конунг1987', false, '798217557&show_for_all=6869b79da3', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 19, 'Конунг1987', true, '798217070&show_for_all=8f71e5332c', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Конунг1987', true, '798215361&show_for_all=a3a2b10cab', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Конунг1987', false, '798212907&show_for_all=2063af4bea', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Конунг1987', false, '798210515&show_for_all=9868e5a348', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 19, 'Конунг1987', true, '798209825&show_for_all=439ad2bc36', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 19, 'Конунг1987', true, '798209190&show_for_all=2e78a0f487', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 19, 'Конунг1987', false, '798207421&show_for_all=f54ea4dae1', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 19, 'Конунг1987', true, '798206643&show_for_all=7ad64ab535', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Конунг1987', true, '794859318&show_for_all=1db1db24ec', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 19, 'Конунг1987', true, '794858929&show_for_all=468ce0518c', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 19, 'Конунг1987', true, '794858740&show_for_all=008ff97021', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 19, 'Конунг1987', true, '794858279&show_for_all=0168f18148', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 19, 'Конунг1987', true, '794857666&show_for_all=65157effa5', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 19, 'Конунг1987', true, '794857376&show_for_all=e7a815e696', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 19, 'Конунг1987', true, '794856709&show_for_all=08704e6498', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 19, 'Конунг1987', true, '794856438&show_for_all=c007c51fb2', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 19, 'Конунг1987', true, '794856123&show_for_all=8ed4f99fed', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 19, 'Конунг1987', true, '794855695&show_for_all=c909daacc3', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 19, 'Конунг1987', true, '794855389&show_for_all=ac6e5f54fa', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 19, 'Конунг1987', true, '794854674&show_for_all=a96223b27c', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 19, 'Конунг1987', true, '794853990&show_for_all=389a1db485', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 19, 'Конунг1987', true, '794853419&show_for_all=b1ca8a0450', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 19, 'Конунг1987', true, '794852805&show_for_all=0d4b77d3b2', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 19, 'Конунг1987', true, '794851783&show_for_all=adc0137ba5', 'second'),
    new Descriptor(e_m.witch, 6, 1, 19, 'Конунг1987', true, '794851059&show_for_all=5791cbe8a0', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Конунг1987', true, '794850287&show_for_all=187d375313', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Конунг1987', false, '794843853&show_for_all=7505fd607e', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Конунг1987', false, '794826767&show_for_all=245ff15226', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Конунг1987', false, '794822591&show_for_all=57da37d502', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 19, 'Конунг1987', true, '794821533&show_for_all=55f10c1c6f', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 19, 'Конунг1987', true, '794821036&show_for_all=1f09fe86f8', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 19, 'Конунг1987', true, '794776881&show_for_all=07b5070d94', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 19, 'Конунг1987', true, '794773303&show_for_all=dd7705bf44', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 19, 'Конунг1987', false, '794771012&show_for_all=a65eccffdd', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 19, 'Конунг1987', true, '794768642&show_for_all=491404e5f8', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 19, 'Конунг1987', false, '794766744&show_for_all=4e09ca5b01', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 19, 'Конунг1987', true, '794764034&show_for_all=13b28cf2f3', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Конунг1987', true, '794719553&show_for_all=00179e1d7e', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Конунг1987', true, '794719217&show_for_all=d9e95153af', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Конунг1987', true, '794718877&show_for_all=cf00108667', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Конунг1987', true, '794718200&show_for_all=30a25da1a7', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Конунг1987', true, '794717798&show_for_all=e6b0a36a28', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Конунг1987', true, '794717484&show_for_all=090f678556', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Конунг1987', true, '794716605&show_for_all=4b8ab9923d', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Конунг1987', true, '794716248&show_for_all=e32d909ffb', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Конунг1987', true, '794716008&show_for_all=081fcb4df8', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Конунг1987', true, '794713042&show_for_all=fbb40a9d32', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Конунг1987', false, '794709462&show_for_all=c267828209', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Конунг1987', true, '794708743&show_for_all=e9f0a4f82b', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Конунг1987', true, '794707949&show_for_all=db3b6dde18', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Конунг1987', true, '794706854&show_for_all=e1418ab2ce', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Конунг1987', true, '794706108&show_for_all=f744794224', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Конунг1987', true, '794705134&show_for_all=d414f54d82', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Конунг1987', false, '794699265&show_for_all=a84510ca88', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Конунг1987', true, '794697671&show_for_all=09092c71e3', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Конунг1987', true, '794692424&show_for_all=c9303590ca', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Конунг1987', true, '794691738&show_for_all=883d1679df', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Конунг1987', true, '794690923&show_for_all=6b6c55be43', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Конунг1987', true, '794690451&show_for_all=fe8671956d', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Конунг1987', true, '794689418&show_for_all=998deb5be3', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Конунг1987', true, '794689050&show_for_all=3417dc01bb', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Конунг1987', true, '794688381&show_for_all=527544e812', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Конунг1987', true, '794687746&show_for_all=5bf7fab65d', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Конунг1987', true, '794668876&show_for_all=7a8076b823', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Конунг1987', true, '794668092&show_for_all=10abe8c2b9', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Конунг1987', true, '794667637&show_for_all=bcc1195769', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Конунг1987', true, '794667190&show_for_all=142bcd3d88', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Конунг1987', true, '794666425&show_for_all=6272d0dd48', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Конунг1987', true, '794665188&show_for_all=a014836246', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'Конунг1987', true, '794664458&show_for_all=fb61d10530', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Конунг1987', true, '794663630&show_for_all=8f631e9353', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'Конунг1987', true, '794663248&show_for_all=d1b229334b', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Конунг1987', true, '794662632&show_for_all=d7315f9167', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Конунг1987', false, '794661055&show_for_all=14aaa14224', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Конунг1987', false, '794656442&show_for_all=8c135ddf60', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Конунг1987', true, '794655988&show_for_all=69eb67b076', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Конунг1987', true, '794655450&show_for_all=732a3e047b', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Конунг1987', false, '794653666&show_for_all=af8a199077', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'Конунг1987', true, '794652971&show_for_all=717632eafe', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'Конунг1987', true, '794652336&show_for_all=3142acb47a', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'Конунг1987', true, '794651807&show_for_all=1b3ab5c3c2', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'Конунг1987', true, '794650791&show_for_all=f084667dd0', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'Конунг1987', true, '794649857&show_for_all=c88805bbec', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'Конунг1987', true, '794649381&show_for_all=4045c7b124', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Конунг1987', true, '794648638&show_for_all=a55c509139', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Конунг1987', false, '794646478&show_for_all=f32e8ebc1a', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'Конунг1987', true, '794646129&show_for_all=e6900aae8b', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'Конунг1987', true, '794645506&show_for_all=a2a968d8ea', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Конунг1987', true, '794644445&show_for_all=23ef82cacd', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'Конунг1987', true, '794644168&show_for_all=c3ae04daaf', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Конунг1987', true, '794643686&show_for_all=1cc98d6f17', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Конунг1987', false, '794642025&show_for_all=b900f3f8d3', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Конунг1987', true, '794641500&show_for_all=c7a974f367', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 18, 'Конунг1987', false, '782035730&show_for_all=6f0b56f20e', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'Конунг1987', true, '779440242&show_for_all=7da25bb35b', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 18, 'Конунг1987', true, '779439209&show_for_all=8cbf83f1b2', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 18, 'Конунг1987', true, '779383549&show_for_all=c2d9dba709', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 18, 'Конунг1987', true, '779383013&show_for_all=18dafe2db9', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 18, 'Конунг1987', true, '779382710&show_for_all=8dc4581773', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 18, 'Конунг1987', true, '779382512&show_for_all=97f23c9169', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 18, 'Конунг1987', false, '779381536&show_for_all=963fce7ee4', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 18, 'Конунг1987', true, '779376938&show_for_all=f65fc1ff18', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 18, 'Конунг1987', true, '779375167&show_for_all=b7bc63a24a', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 18, 'Конунг1987', true, '779373220&show_for_all=177ef00cc7', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 18, 'Конунг1987', true, '779372095&show_for_all=56d8ebf2fc', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 18, 'Конунг1987', true, '779371040&show_for_all=00752a71de', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 18, 'Конунг1987', true, '779353730&show_for_all=b5713bad03', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 18, 'Конунг1987', true, '779351908&show_for_all=20bbb98707', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 18, 'Конунг1987', true, '779350683&show_for_all=11874cfe67', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 18, 'Конунг1987', false, '779348747&show_for_all=8a1b1e651d', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 18, 'Конунг1987', true, '779347087&show_for_all=033a58b756', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 18, 'Конунг1987', true, '779336291&show_for_all=b57b191ffb', 'second'),
    new Descriptor(e_m.witch, 5, 2, 18, 'Конунг1987', true, '779335769&show_for_all=134fec3929', 'second'),
    new Descriptor(e_m.furies, 5, 2, 18, 'Конунг1987', true, '779334536&show_for_all=6aa80f967e', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 18, 'Конунг1987', true, '779320333&show_for_all=c94db72fe8', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 18, 'Конунг1987', false, '779295689&show_for_all=02df80c1a2', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 18, 'Конунг1987', true, '779295217&show_for_all=e71311b219', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 18, 'Конунг1987', true, '779292884&show_for_all=15f39dd9be', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 18, 'Конунг1987', true, '779288432&show_for_all=469d5ba9d1', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 18, 'Конунг1987', true, '779286947&show_for_all=f5f489bf23', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 18, 'Конунг1987', false, '779279410&show_for_all=0fb857adcf', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 18, 'Конунг1987', true, '779278643&show_for_all=32dd81e4de', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'Конунг1987', true, '779212108&show_for_all=6c00bbdad5', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 18, 'Конунг1987', true, '779210049&show_for_all=7532e8bc10', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 18, 'Конунг1987', true, '779189601&show_for_all=13c33db4ec', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'Конунг1987', true, '779188455&show_for_all=6df17b9745', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 18, 'Конунг1987', true, '779187067&show_for_all=7bf0fc7d9d', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 18, 'Конунг1987', true, '779186406&show_for_all=10d991329b', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', true, '779184434&show_for_all=cdb92eb11b', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', false, '779169168&show_for_all=60fe3411c4', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', false, '779165168&show_for_all=28202ecc44', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', false, '779160973&show_for_all=cd02fda445', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', false, '779138916&show_for_all=6ac55158b1', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', false, '779137084&show_for_all=473e301360', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'Конунг1987', true, '779135673&show_for_all=a44457ce53', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'Конунг1987', false, '779132601&show_for_all=abb329ea8b', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'Конунг1987', false, '779127423&show_for_all=c903c77a50', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 18, 'Конунг1987', true, '779126441&show_for_all=0c2fc0a4cc', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'Конунг1987', true, '779125490&show_for_all=72166c887d', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Конунг1987', true, '779124616&show_for_all=9a91fe09b6', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Конунг1987', false, '779122632&show_for_all=3b2c619a35', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Конунг1987', false, '779111649&show_for_all=961a03ab7a', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Конунг1987', false, '779106620&show_for_all=9d7d2cefa1', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'Конунг1987', false, '779058024&show_for_all=57033cac44', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 18, 'Конунг1987', true, '779057358&show_for_all=4d96ce14bb', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 18, 'Конунг1987', false, '779031667&show_for_all=005314d068', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'Конунг1987', true, '779029779&show_for_all=4900dee2bc', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'Конунг1987', false, '779025263&show_for_all=ca62a3df84', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'Конунг1987', false, '779021910&show_for_all=267d50b77e', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'Конунг1987', false, '779018954&show_for_all=55b7f35af1', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 18, 'Конунг1987', true, '779016661&show_for_all=f66c50d566', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 18, 'Конунг1987', true, '779014568&show_for_all=5818fb0063', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 18, 'Конунг1987', true, '779013197&show_for_all=3daf9b56e2', 'second'),
    new Descriptor(e_m.witch, 8, 0, 18, 'Конунг1987', true, '779012829&show_for_all=e0f480bf7e', 'second'),
    new Descriptor(e_m.furies, 8, 0, 18, 'Конунг1987', true, '779011724&show_for_all=02278b2e50', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 18, 'Конунг1987', true, '779008763&show_for_all=03ada7743a', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'Конунг1987', true, '779008218&show_for_all=b5a5679620', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'Конунг1987', false, '779006398&show_for_all=75fb41f4ca', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 18, 'Конунг1987', true, '779005280&show_for_all=4f2303a474', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 18, 'Конунг1987', true, '779004683&show_for_all=f3670133dc', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'Конунг1987', true, '779003908&show_for_all=83b7547cca', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'Конунг1987', false, '779002086&show_for_all=002db04b00', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 18, 'Конунг1987', true, '779001221&show_for_all=c7b749972e', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'Конунг1987', true, '772788791&show_for_all=976be81a41', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 18, 'Конунг1987', true, '772786561&show_for_all=55aab53a8e', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 18, 'Конунг1987', true, '772785864&show_for_all=cf48ec1e17', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 18, 'Конунг1987', true, '772785163&show_for_all=43913bcb4a', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 18, 'Конунг1987', true, '772782424&show_for_all=8814f02bdb', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 18, 'Конунг1987', true, '772780738&show_for_all=00f09df9e2', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 18, 'Конунг1987', true, '772779876&show_for_all=fa796b970d', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Конунг1987', true, '772778285&show_for_all=82a40ea26f', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'Конунг1987', false, '772774901&show_for_all=a69d9be87e', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 18, 'Конунг1987', true, '772773883&show_for_all=7acc266c2f', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 18, 'Конунг1987', false, '772770181&show_for_all=1fe51a968b', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'Конунг1987', true, '772767904&show_for_all=da08c25ba4', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'Конунг1987', false, '772753466&show_for_all=3bf8004219', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 18, 'Конунг1987', true, '772752712&show_for_all=d616da2f32', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 18, 'Конунг1987', true, '772751343&show_for_all=543b896cc7', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 18, 'Конунг1987', true, '772749821&show_for_all=d34c49daa2', 'second'),
    new Descriptor(e_m.furies, 4, 1, 18, 'Конунг1987', true, '772749299&show_for_all=687d457e91', 'second'),
    new Descriptor(e_m.witch, 4, 1, 18, 'Конунг1987', true, '772748758&show_for_all=3650c1aa63', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 18, 'Конунг1987', true, '772748182&show_for_all=b3004d21ca', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 18, 'Конунг1987', false, '772745708&show_for_all=3bec6f2e70', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 18, 'Конунг1987', false, '772743502&show_for_all=cd356c6009', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'Конунг1987', true, '772742963&show_for_all=910e3938dc', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 18, 'Конунг1987', true, '772741718&show_for_all=39399b585d', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 18, 'Конунг1987', true, '772741241&show_for_all=74b8464eac', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 18, 'Конунг1987', true, '772740327&show_for_all=a51e36394d', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 18, 'Конунг1987', true, '772739062&show_for_all=351ddae453', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 18, 'Конунг1987', true, '763623666&show_for_all=0500c0290d', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Varyana', true, '788774180&show_for_all=414574b4c5', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Varyana', true, '788766922&show_for_all=622afd22fa', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Varyana', false, '788763094&show_for_all=4bfea11803', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Varyana', false, '788760473&show_for_all=3538093d42', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', true, '788737271&show_for_all=4967ad3aed', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Varyana', true, '788732648&show_for_all=6a045b3b28', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Varyana', true, '788731309&show_for_all=31faf09a33', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Varyana', false, '788725135&show_for_all=c347fa6da4', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Varyana', true, '788698901&show_for_all=c0687cf988', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', true, '788680914&show_for_all=ef6eb45393', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Varyana', true, '788678691&show_for_all=105b9f84d5', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Varyana', true, '788658029&show_for_all=f50dec26c5', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Varyana', true, '788635424&show_for_all=32d11de559', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Varyana', true, '788629329&show_for_all=a185c49d5d', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Varyana', true, '788628464&show_for_all=e640679018', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Varyana', true, '788627346&show_for_all=911108b7b6', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Varyana', false, '788627067&show_for_all=4647804a2c', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Varyana', true, '788622367&show_for_all=33b8a58e9d', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Varyana', true, '788620987&show_for_all=16f9ada1d8', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Varyana', true, '788609968&show_for_all=6fd1efa5ea', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Varyana', true, '788572111&show_for_all=934b168009', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Varyana', true, '788570823&show_for_all=61c80ad78d', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Varyana', true, '788569809&show_for_all=1f38691aed', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Varyana', true, '788568905&show_for_all=ab2caee229', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Varyana', true, '788567501&show_for_all=6a7b946ac5', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Varyana', true, '788567154&show_for_all=22792d7827', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Varyana', true, '788566508&show_for_all=bca8e5f916', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Varyana', true, '788564744&show_for_all=8a3e841bf9', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Varyana', false, '788563447&show_for_all=f3dd592475', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Varyana', true, '788472360&show_for_all=b1ac369d24', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Varyana', true, '788471313&show_for_all=900ad5b98a', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Varyana', true, '788469157&show_for_all=e1f270c2fb', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Varyana', true, '788467736&show_for_all=03abc3035a', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Varyana', true, '788466746&show_for_all=e45a8ea9c1', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Varyana', true, '788465976&show_for_all=3382a13392', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Varyana', true, '788465173&show_for_all=425abf9237', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Varyana', true, '788462547&show_for_all=d7d95b5eae', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Varyana', true, '788460022&show_for_all=7822199484', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Varyana', true, '788459162&show_for_all=0f709dcac9', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Varyana', false, '788457269&show_for_all=200959bc81', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Varyana', true, '788456035&show_for_all=50fa7b4de4', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Varyana', true, '788454986&show_for_all=17df25f88b', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Varyana', true, '788453743&show_for_all=0b2c6c2e96', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Varyana', true, '788452334&show_for_all=38941a0bbd', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Varyana', true, '788450651&show_for_all=fbfabae656', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Varyana', true, '788448888&show_for_all=70238ac807', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Varyana', true, '788448095&show_for_all=10867ab4a6', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Varyana', true, '788447427&show_for_all=ef263af960', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Varyana', true, '788437592&show_for_all=5f295e4701', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Varyana', true, '788437101&show_for_all=b2a07a6064', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Varyana', false, '788435900&show_for_all=bfe462ffe1', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Varyana', true, '788431627&show_for_all=bee4350f93', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Varyana', true, '788430920&show_for_all=02cbee3be2', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Varyana', true, '788430002&show_for_all=224250c968', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Varyana', true, '788429257&show_for_all=7ff5959ec2', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 19, 'Varyana', true, '786793104&show_for_all=9ad5869d30', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 19, 'Varyana', true, '786792029&show_for_all=b32e9a29cb', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 19, 'Varyana', true, '786787969&show_for_all=a5fab355d4', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 19, 'Varyana', true, '786786564&show_for_all=375e202c0b', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 19, 'Varyana', false, '786784922&show_for_all=4d7be72fad', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 19, 'Varyana', true, '786783619&show_for_all=dc3ef97e62', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 19, 'Varyana', true, '786782566&show_for_all=e4863d7e59', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 19, 'Varyana', true, '786777824&show_for_all=65103efbdb', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 19, 'Varyana', true, '786775531&show_for_all=238f975dac', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 19, 'Varyana', true, '786773958&show_for_all=098553c603', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 19, 'Varyana', true, '786772676&show_for_all=5f7fde0fb7', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 19, 'Varyana', false, '786771678&show_for_all=e68e0acd01', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 19, 'Varyana', false, '786770727&show_for_all=63bc9689fa', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 19, 'Varyana', false, '786765980&show_for_all=c2eb8a83d9', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 19, 'Varyana', true, '786765011&show_for_all=b0df3bb0a0', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 19, 'Varyana', false, '786764469&show_for_all=4e4deff214', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 19, 'Varyana', true, '786763803&show_for_all=612ea8a10c', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 19, 'Varyana', true, '786763067&show_for_all=46df667e2a', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 19, 'Varyana', true, '786762083&show_for_all=d966c09998', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 19, 'Varyana', true, '786759730&show_for_all=f6cc02edcd', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 19, 'Varyana', true, '786758050&show_for_all=93289f47c5', 'second'),
    new Descriptor(e_m.furies, 1, 1, 19, 'Varyana', true, '786756661&show_for_all=e82716a5d7', 'second'),
    new Descriptor(e_m.witch, 1, 1, 19, 'Varyana', true, '786756079&show_for_all=bf73145493', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 19, 'Varyana', true, '786754698&show_for_all=5579c93c60', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 19, 'Varyana', true, '786754124&show_for_all=da45c556af', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 19, 'Varyana', true, '786752605&show_for_all=308eca202f', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 19, 'Varyana', true, '786718036&show_for_all=fe4be61b2f', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 19, 'Varyana', true, '786717505&show_for_all=efcb2ca2ab', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 19, 'Varyana', true, '786717164&show_for_all=dfb37aa16a', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Varyana', true, '786710472&show_for_all=c6a9634892', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 19, 'Varyana', true, '786708845&show_for_all=206dce2f3c', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 19, 'Varyana', true, '786706225&show_for_all=75accbcd56', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 19, 'Varyana', true, '786705302&show_for_all=dacd743871', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 19, 'Varyana', true, '786703860&show_for_all=ce1081b169', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 19, 'Varyana', false, '786701404&show_for_all=ac52246f46', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 19, 'Varyana', true, '786699113&show_for_all=91f63847a4', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 19, 'Varyana', true, '786698115&show_for_all=35c5dd4064', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 19, 'Varyana', true, '786695343&show_for_all=3483f23b32', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 19, 'Varyana', true, '786694267&show_for_all=3c74c8ccf8', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 19, 'Varyana', true, '786691863&show_for_all=4b0244c32c', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 19, 'Varyana', true, '786690090&show_for_all=145f62f7af', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 19, 'Varyana', true, '786689028&show_for_all=2df1abbc5a', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 19, 'Varyana', true, '786687982&show_for_all=82488e2234', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 19, 'Varyana', true, '786686505&show_for_all=26d7b20717', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 19, 'Varyana', true, '786684583&show_for_all=3f4b98d420', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 19, 'Varyana', true, '786680672&show_for_all=881f3b97da', 'second'),
    new Descriptor(e_m.furies, 1, 0, 19, 'Varyana', true, '786678034&show_for_all=6b495e8402', 'second'),
    new Descriptor(e_m.witch, 1, 0, 19, 'Varyana', true, '786676968&show_for_all=bbc711c6df', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 19, 'Varyana', true, '786675952&show_for_all=f250080c4e', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 19, 'Varyana', false, '786674092&show_for_all=cc2755282b', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 19, 'Varyana', true, '786672946&show_for_all=58b4cecfb0', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 19, 'Varyana', true, '786670797&show_for_all=db246bfd61', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 19, 'Varyana', false, '786668939&show_for_all=25a045edaf', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 19, 'Varyana', false, '786666313&show_for_all=83cd41118c', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 19, 'Varyana', false, '786663543&show_for_all=2e3a00e0c7', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 19, 'Varyana', true, '786662643&show_for_all=83ae95fd56', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 19, 'Varyana', true, '786660035&show_for_all=01e0cd42ed', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 19, 'Varyana', true, '786556600&show_for_all=f80abb7c3d', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'Varyana', true, '786342855&show_for_all=44baa30841', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 19, 'Varyana', true, '786340463&show_for_all=a8105e112b', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 19, 'Varyana', false, '786336270&show_for_all=dba164d2bb', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 19, 'Varyana', true, '786333873&show_for_all=2be97e2127', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 19, 'Varyana', true, '786331855&show_for_all=286942a612', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 19, 'Varyana', true, '786330690&show_for_all=74c8b118b0', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 19, 'Varyana', true, '786329040&show_for_all=3171e17b36', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 19, 'Varyana', true, '786327653&show_for_all=fd0d05d80f', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 19, 'Varyana', true, '786324169&show_for_all=de72a3a09f', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 19, 'Varyana', true, '786322286&show_for_all=b413df7656', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 19, 'Varyana', true, '786321055&show_for_all=076e939aa1', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'Varyana', true, '786317963&show_for_all=9a589f2506', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 19, 'Varyana', true, '786314804&show_for_all=b7f39fd2aa', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 19, 'Varyana', true, '786313627&show_for_all=a29296b7be', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 19, 'Varyana', true, '786309682&show_for_all=c8784f846f', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 19, 'Varyana', true, '786307571&show_for_all=8db2dbe3be', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 19, 'Varyana', true, '786304591&show_for_all=47a6a3c303', 'second'),
    new Descriptor(e_m.furies, 7, 0, 19, 'Varyana', true, '786300899&show_for_all=9c7193ad8e', 'second'),
    new Descriptor(e_m.witch, 7, 0, 19, 'Varyana', true, '786300029&show_for_all=b6ab9c4eef', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 19, 'Varyana', true, '786298973&show_for_all=b0a243ed89', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 19, 'Varyana', false, '786296743&show_for_all=2283b55da6', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 19, 'Varyana', true, '786295104&show_for_all=f29bdb0a2c', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 19, 'Varyana', true, '786293061&show_for_all=e4a32264ec', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 19, 'Varyana', true, '786292121&show_for_all=2cd47b7a68', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 19, 'Varyana', true, '786250072&show_for_all=330de5b2e6', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 19, 'Varyana', true, '786248132&show_for_all=7e7965a4f9', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'Varyana', true, '786243730&show_for_all=0be9d50eeb', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 19, 'Varyana', true, '786242541&show_for_all=a82425023a', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'Varyana', true, '786228697&show_for_all=f86fd235a0', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 19, 'Varyana', true, '786227733&show_for_all=2ffc6487cf', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 19, 'Varyana', true, '786225146&show_for_all=21573c38bc', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 19, 'Varyana', true, '786223064&show_for_all=82827dc2c0', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'Varyana', true, '786221435&show_for_all=80482493f0', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 19, 'Varyana', true, '786216588&show_for_all=43f8e35358', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 19, 'Varyana', true, '786210666&show_for_all=f69fb17247', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 19, 'Varyana', true, '786201579&show_for_all=6065e3dada', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 19, 'Varyana', true, '786198326&show_for_all=98d82ac272', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 19, 'Varyana', true, '786196833&show_for_all=6cab0cad42', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 19, 'Varyana', true, '786195203&show_for_all=6208a8958d', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 19, 'Varyana', true, '786190751&show_for_all=c6e7f40cc8', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 19, 'Varyana', true, '786187938&show_for_all=1a49ec95a2', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 19, 'Varyana', true, '786182292&show_for_all=c596340ecd', 'second'),
    new Descriptor(e_m.furies, 7, 1, 19, 'Varyana', true, '786168025&show_for_all=694fc1ff2d', 'second'),
    new Descriptor(e_m.witch, 7, 1, 19, 'Varyana', true, '786165276&show_for_all=2cbe880cd6', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 19, 'Varyana', true, '786163896&show_for_all=f25ddd505c', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 19, 'Varyana', true, '786162967&show_for_all=3653216a58', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 19, 'Varyana', true, '786152732&show_for_all=4e42a82c5f', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 19, 'Varyana', true, '786151797&show_for_all=7dab1348cf', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 19, 'Varyana', true, '786150409&show_for_all=6da84d146d', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 19, 'Varyana', true, '786148582&show_for_all=f8c203a8c4', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'Varyana', true, '786021950&show_for_all=1d46c698c0', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'Varyana', false, '786019402&show_for_all=3b5ad3fba1', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 19, 'Varyana', true, '785139691&show_for_all=33feeec3fa', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 19, 'Varyana', true, '785134641&show_for_all=c6117f8dfc', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 19, 'Varyana', true, '785133439&show_for_all=74f4f03a70', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 19, 'Varyana', true, '785131238&show_for_all=ea527c9e54', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 19, 'Varyana', true, '785127370&show_for_all=fab41e1b8b', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 19, 'Varyana', true, '785126154&show_for_all=c24ff54624', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 19, 'Varyana', true, '785124292&show_for_all=cf4e789fc8', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 19, 'Varyana', true, '785118668&show_for_all=a39f1d838b', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 19, 'Varyana', true, '785115605&show_for_all=8642432554', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 19, 'Varyana', false, '785104242&show_for_all=84c5524711', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 19, 'Varyana', true, '785101661&show_for_all=1972aeaf14', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 19, 'Varyana', true, '785092738&show_for_all=6b34e91819', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 19, 'Varyana', true, '785091075&show_for_all=3efd387021', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 19, 'Varyana', false, '785088917&show_for_all=74c9c4ff26', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 19, 'Varyana', true, '785086412&show_for_all=c21f81878d', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 19, 'Varyana', true, '785084462&show_for_all=d53a8e228c', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 19, 'Varyana', true, '785080487&show_for_all=44f66010f4', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 19, 'Varyana', true, '784686356&show_for_all=f20c6518a9', 'second'),
    new Descriptor(e_m.furies, 2, 1, 19, 'Varyana', true, '784683847&show_for_all=f4262c4cab', 'second'),
    new Descriptor(e_m.witch, 2, 1, 19, 'Varyana', true, '784683415&show_for_all=561e71d5ae', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 19, 'Varyana', true, '784682866&show_for_all=e4911b21a7', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 19, 'Varyana', true, '784681693&show_for_all=61901ce90a', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 19, 'Varyana', true, '784679590&show_for_all=d8248cdd69', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 19, 'Varyana', true, '784678717&show_for_all=427f5dab5b', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 19, 'Varyana', true, '784677434&show_for_all=c9d768f2b9', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 19, 'Varyana', true, '784675824&show_for_all=0eaa0a6fd0', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 19, 'Varyana', true, '784670018&show_for_all=013a547579', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 19, 'Varyana', true, '784668003&show_for_all=f4a0beeb21', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Varyana', true, '784665475&show_for_all=9366afda8a', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 19, 'Varyana', true, '784662463&show_for_all=67a75d2627', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 19, 'Varyana', true, '784661418&show_for_all=5fc26379b1', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Varyana', true, '784657509&show_for_all=4dd6ab132e', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Varyana', false, '784655688&show_for_all=1f9a1424a7', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Varyana', true, '784654309&show_for_all=718e81ce90', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 19, 'Varyana', false, '784653163&show_for_all=a6d9bade2f', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 19, 'Varyana', true, '784647520&show_for_all=614658200e', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 19, 'Varyana', true, '784645080&show_for_all=5496d621c7', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 19, 'Varyana', true, '784644162&show_for_all=012e164b5a', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 19, 'Varyana', false, '784643391&show_for_all=43b9e25e5d', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 19, 'Varyana', true, '784639617&show_for_all=b63794b91c', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 19, 'Varyana', true, '784638778&show_for_all=fe2d51f45e', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 19, 'Varyana', true, '784637467&show_for_all=929b8e04eb', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 19, 'Varyana', true, '784634480&show_for_all=6cc551334c', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 19, 'Varyana', true, '784632011&show_for_all=2544b69df0', 'second'),
    new Descriptor(e_m.furies, 2, 0, 19, 'Varyana', true, '784630560&show_for_all=eb8e8a9dec', 'second'),
    new Descriptor(e_m.witch, 2, 0, 19, 'Varyana', true, '784629893&show_for_all=ecca9b316c', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 19, 'Varyana', true, '784622144&show_for_all=4308cdc986', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 19, 'Varyana', true, '784620810&show_for_all=060fbb4c51', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 19, 'Varyana', true, '784619839&show_for_all=e6f2e07cb3', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 19, 'Varyana', true, '784619083&show_for_all=e110d10deb', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 19, 'Varyana', true, '784617416&show_for_all=72d2117ed4', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 19, 'Varyana', true, '784616676&show_for_all=ade780d573', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 19, 'Varyana', false, '784466996&show_for_all=ccaf91778e', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 19, 'Varyana', false, '784466673&show_for_all=2c17a6fc27', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 19, 'Varyana', false, '784466305&show_for_all=11987d4b90', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 19, 'Varyana', true, '784465510&show_for_all=cf3858be5b', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 19, 'Varyana', true, '784463315&show_for_all=2b51175277', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 19, 'Varyana', true, '784462855&show_for_all=bb889ec161', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 19, 'Varyana', true, '784444747&show_for_all=dd68378965', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 19, 'Varyana', false, '784443385&show_for_all=35854703fc', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 19, 'Varyana', true, '784442307&show_for_all=30bd057af9', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 19, 'Varyana', false, '784441437&show_for_all=90f080a761', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Varyana', true, '784260917&show_for_all=3c95c1e783', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 19, 'Varyana', true, '784259923&show_for_all=443d586c8f', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Varyana', true, '784258631&show_for_all=34ae5b997f', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Varyana', true, '784258093&show_for_all=ea3a7a04bb', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 19, 'Varyana', true, '784257103&show_for_all=e22914c1ff', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 19, 'Varyana', true, '784256042&show_for_all=3fe073343a', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Varyana', true, '784237696&show_for_all=4be22084c5', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 19, 'Varyana', true, '784237346&show_for_all=ddc5611a33', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 19, 'Varyana', true, '784236083&show_for_all=d9a300abcb', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 19, 'Varyana', true, '784235538&show_for_all=4b46a5f4ea', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Varyana', true, '784234655&show_for_all=eb90965ef7', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 19, 'Varyana', true, '784229839&show_for_all=28911ed4b8', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 19, 'Varyana', false, '784228793&show_for_all=d4f1041607', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 19, 'Varyana', false, '784227292&show_for_all=eafc198e78', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Varyana', true, '784226615&show_for_all=69201a76b4', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Varyana', false, '784226292&show_for_all=76767149d3', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Varyana', false, '784225535&show_for_all=f6044652c6', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 19, 'Varyana', true, '784217698&show_for_all=6c68a208fd', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 19, 'Varyana', false, '784216979&show_for_all=4dc2f0bcd8', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 19, 'Varyana', true, '784213060&show_for_all=e422de65d4', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 19, 'Varyana', true, '784207261&show_for_all=006d8c2001', 'second'),
    new Descriptor(e_m.furies, 6, 0, 19, 'Varyana', true, '784190943&show_for_all=eea1369eb1', 'second'),
    new Descriptor(e_m.furies, 6, 0, 19, 'Varyana', false, '784190305&show_for_all=6c15e940f6', 'second'),
    new Descriptor(e_m.witch, 6, 0, 19, 'Varyana', true, '784189030&show_for_all=8bdfe8fb40', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 19, 'Varyana', true, '784188096&show_for_all=3f19b55a44', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 19, 'Varyana', true, '784187458&show_for_all=8d35e75aaa', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 19, 'Varyana', false, '784186697&show_for_all=222ed098d9', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Varyana', true, '784178161&show_for_all=a1e9256f73', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Varyana', false, '784177174&show_for_all=761fdd0946', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 19, 'Varyana', true, '784176038&show_for_all=bf0c6cb1e2', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 19, 'Varyana', true, '784174285&show_for_all=2a7288bf25', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 19, 'Varyana', false, '784174103&show_for_all=21268e7afc', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 19, 'Varyana', true, '784173398&show_for_all=60398e2d45', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Varyana', true, '784169474&show_for_all=a398e8781d', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 19, 'Varyana', true, '784167992&show_for_all=80b6bedee7', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 19, 'Varyana', true, '784166059&show_for_all=f02162e513', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 19, 'Varyana', true, '784156573&show_for_all=d96dc1c933', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 19, 'Varyana', true, '784154994&show_for_all=d25f02164e', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 19, 'Varyana', false, '784153124&show_for_all=cef4c5a33a', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 19, 'Varyana', true, '784151929&show_for_all=6d15f60578', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 19, 'Varyana', true, '784150192&show_for_all=b2ebada045', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 19, 'Varyana', true, '784146200&show_for_all=6b7f99dd95', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 19, 'Varyana', true, '784142967&show_for_all=bdbe211811', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 19, 'Varyana', true, '784141828&show_for_all=ed32e9a358', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 19, 'Varyana', true, '784140506&show_for_all=3d8ee7201b', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 19, 'Varyana', true, '784139460&show_for_all=8810d3816e', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 19, 'Varyana', true, '784137958&show_for_all=8ac2636082', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 19, 'Varyana', true, '784136423&show_for_all=ee540e1dd4', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 19, 'Varyana', true, '784133848&show_for_all=4bfbbac916', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 19, 'Varyana', true, '784128858&show_for_all=18475e66a0', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Varyana', true, '784124417&show_for_all=05391973e3', 'second'),
    new Descriptor(e_m.witch, 6, 1, 19, 'Varyana', true, '784123460&show_for_all=62c4e45bca', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 19, 'Varyana', true, '784122414&show_for_all=bf368ad56f', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 19, 'Varyana', true, '784121592&show_for_all=c852572d0c', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 19, 'Varyana', true, '784119409&show_for_all=d945e34b0e', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 19, 'Varyana', true, '784116973&show_for_all=2f58aff0c1', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 19, 'Varyana', true, '784116166&show_for_all=81caf014d7', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 19, 'Varyana', true, '784115120&show_for_all=48a36d9b54', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Varyana', true, '783301004&show_for_all=ed6ea2bf96', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'Varyana', true, '783300763&show_for_all=302db3448b', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Varyana', true, '783300307&show_for_all=e7816a2748', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'Varyana', true, '783300165&show_for_all=18ae8fab1e', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'Varyana', true, '783299956&show_for_all=807ced694d', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Varyana', true, '783299698&show_for_all=294bd215a5', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Varyana', true, '783299586&show_for_all=879327c469', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Varyana', true, '783299361&show_for_all=5ca7aef7e7', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Varyana', true, '783298799&show_for_all=b575e9db97', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Varyana', false, '783298477&show_for_all=d689ea3408', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Varyana', false, '783298113&show_for_all=4bf5189dde', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Varyana', true, '783297568&show_for_all=eb9978aa48', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Varyana', true, '783296947&show_for_all=f777f7dcc9', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Varyana', false, '783296652&show_for_all=55cd8efaed', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Varyana', true, '783296362&show_for_all=f556353f8a', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Varyana', true, '783295720&show_for_all=0fa104b633', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'Varyana', true, '783295349&show_for_all=3c01f2f4bd', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'Varyana', true, '783294890&show_for_all=f3fd447809', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'Varyana', true, '783289821&show_for_all=1528e205ae', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'Varyana', true, '783286719&show_for_all=f5a61f6b34', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Varyana', true, '783285062&show_for_all=e620ce6203', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'Varyana', true, '783284519&show_for_all=950c1c5a7d', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'Varyana', true, '783284015&show_for_all=5e8b407c6d', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'Varyana', true, '783283642&show_for_all=d238fa4a37', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Varyana', true, '783280908&show_for_all=d724a60f60', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Varyana', false, '783279401&show_for_all=9855fbf0ac', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'Varyana', true, '783278140&show_for_all=85e7f11588', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Varyana', true, '783275848&show_for_all=1c4adf66f5', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Varyana', true, '783274567&show_for_all=50c0d9080e', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Varyana', true, '783234729&show_for_all=8b00df6a56', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Varyana', true, '783232987&show_for_all=8883d56424', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Varyana', true, '783232357&show_for_all=3a45d327cd', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Varyana', true, '783231569&show_for_all=b4921d23c4', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Varyana', true, '783230954&show_for_all=6b70e4eb13', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Varyana', true, '783228742&show_for_all=3f76e86b9e', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Varyana', true, '783227995&show_for_all=c68c1120fb', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Varyana', true, '783226189&show_for_all=06a5685b69', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Varyana', true, '783222886&show_for_all=a652dd5009', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Varyana', true, '783222121&show_for_all=47ce0e04f9', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Varyana', true, '783221602&show_for_all=241e2822ba', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Varyana', true, '783220861&show_for_all=967b5f59d1', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Varyana', true, '783219932&show_for_all=30b03716f0', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Varyana', true, '783219055&show_for_all=2be2021dd6', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Varyana', true, '783214888&show_for_all=78d8a0795d', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Varyana', true, '783213216&show_for_all=fb81e18b87', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Varyana', true, '783210519&show_for_all=eabbd29463', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Varyana', true, '783209645&show_for_all=766cd682d9', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Varyana', true, '783208735&show_for_all=e10388dd2c', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Varyana', true, '783201066&show_for_all=1b47c6f54d', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Varyana', true, '783199884&show_for_all=d37f78dd49', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Varyana', true, '783198906&show_for_all=311fd6928c', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Varyana', false, '783198275&show_for_all=0c585f2300', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Varyana', true, '783197146&show_for_all=f058c01f63', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Varyana', true, '783194628&show_for_all=ff265f86d6', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Varyana', false, '783070760&show_for_all=11bd021967', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Varyana', false, '783070163&show_for_all=952c690b96', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Varyana', false, '783069494&show_for_all=acb7561079', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Varyana', true, '783065695&show_for_all=476b44901d', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Varyana', true, '783036016&show_for_all=efc8197697', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Varyana', true, '783034897&show_for_all=98a299cd97', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Varyana', false, '783034083&show_for_all=1ee87fde11', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Varyana', true, '783033471&show_for_all=1fc62f121f', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Varyana', true, '782980364&show_for_all=0d8c98d857', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Varyana', false, '782980098&show_for_all=85e47d9e63', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 19, 'Varyana', true, '782979736&show_for_all=1221e742c8', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 19, 'Varyana', true, '782978763&show_for_all=48d1a3fa07', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 19, 'Varyana', false, '782978466&show_for_all=495e59e297', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Varyana', true, '782976154&show_for_all=9602323672', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 19, 'Varyana', true, '782975077&show_for_all=88c4402e2a', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 19, 'Varyana', true, '782972960&show_for_all=325489be74', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Varyana', true, '782970647&show_for_all=1d98197d19', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 19, 'Varyana', true, '782967441&show_for_all=a76470b1bc', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 19, 'Varyana', true, '782902980&show_for_all=634f6aae9d', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Varyana', true, '782901097&show_for_all=68aa6d52f5', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Varyana', true, '782899996&show_for_all=5572f2bd48', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 19, 'Varyana', true, '782899172&show_for_all=0b80dcfc6c', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 19, 'Varyana', true, '782898153&show_for_all=db431a95e6', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 19, 'Varyana', true, '782896780&show_for_all=ff9b059168', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 19, 'Varyana', true, '782895318&show_for_all=a06bd2ec15', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 19, 'Varyana', true, '782880379&show_for_all=1300ec7a10', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 19, 'Varyana', true, '782878280&show_for_all=7cd7f57344', 'second'),
    new Descriptor(e_m.furies, 5, 2, 19, 'Varyana', true, '782875643&show_for_all=aeff05d986', 'second'),
    new Descriptor(e_m.witch, 5, 2, 19, 'Varyana', true, '782873265&show_for_all=5db56147f8', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 19, 'Varyana', true, '782872100&show_for_all=fee716bec4', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 19, 'Varyana', true, '782871089&show_for_all=634094543b', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 19, 'Varyana', true, '782868933&show_for_all=6e569b05cd', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 19, 'Varyana', true, '782790679&show_for_all=80288290a9', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 19, 'Varyana', true, '782788871&show_for_all=8e941d3b42', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 19, 'Varyana', true, '782787854&show_for_all=e8d87fecae', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Varyana', true, '782450927&show_for_all=a8e11d6719', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Varyana', true, '782330639&show_for_all=8522a93dd9', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 19, 'Varyana', true, '782329320&show_for_all=7bcd2ecf0b', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Varyana', true, '782327048&show_for_all=1a33973e59', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 19, 'Varyana', true, '782325853&show_for_all=a416748f73', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 19, 'Varyana', true, '782324690&show_for_all=36406d42f0', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 19, 'Varyana', false, '782323323&show_for_all=7837001e46', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'Varyana', true, '782321854&show_for_all=dc328140db', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'Varyana', false, '782320369&show_for_all=d36268d224', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Varyana', true, '782319263&show_for_all=6978d4a55b', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'Varyana', true, '782317135&show_for_all=8a9c8329c6', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', true, '782313727&show_for_all=a3f0370085', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', false, '782312843&show_for_all=139e757527', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', false, '782311250&show_for_all=07a0f2e77f', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 19, 'Varyana', true, '782309813&show_for_all=cdfc810f0a', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 19, 'Varyana', false, '782309186&show_for_all=6f6a53112d', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Varyana', true, '782308042&show_for_all=71b98a0c5d', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Varyana', true, '782306101&show_for_all=e68b0faa42', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Varyana', false, '782303800&show_for_all=a318699f99', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Varyana', false, '782302221&show_for_all=17862ccbcd', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Varyana', false, '782300567&show_for_all=fc2cc3c9cc', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 19, 'Varyana', true, '782299071&show_for_all=b07798da0b', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Varyana', true, '782295448&show_for_all=cbd3f4abaa', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Varyana', false, '782293396&show_for_all=7aa4973414', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Varyana', false, '782292101&show_for_all=46c652f635', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 19, 'Varyana', true, '782290131&show_for_all=a0627d89e5', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 19, 'Varyana', true, '782273348&show_for_all=0e7d6bdbc2', 'second'),
    new Descriptor(e_m.furies, 8, 0, 19, 'Varyana', true, '782263758&show_for_all=69f04cce87', 'second'),
    new Descriptor(e_m.furies, 8, 0, 19, 'Varyana', false, '782262392&show_for_all=16db3bddf4', 'second'),
    new Descriptor(e_m.witch, 8, 0, 19, 'Varyana', true, '782261789&show_for_all=faa7035aa9', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 19, 'Varyana', true, '782260938&show_for_all=984b66b511', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'Varyana', true, '782259515&show_for_all=eb767553f1', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'Varyana', false, '782258816&show_for_all=93f108f321', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 19, 'Varyana', true, '782255992&show_for_all=4bedca4286', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'Varyana', true, '782254909&show_for_all=ee4014be19', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'Varyana', false, '782252804&show_for_all=dc96f21dd3', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 19, 'Varyana', true, '782245021&show_for_all=5f917e2041', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 19, 'Varyana', true, '782243992&show_for_all=0e6f93fee9', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Varyana', true, '781145825&show_for_all=2b42b726cd', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Varyana', false, '781141112&show_for_all=bf756757c2', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'Varyana', false, '781140331&show_for_all=d69e9620b6', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 19, 'Varyana', true, '781139453&show_for_all=fb25283bd3', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'Varyana', true, '781138212&show_for_all=6db8d0b3e8', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 19, 'Varyana', true, '781137414&show_for_all=fdec045ed0', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 19, 'Varyana', true, '781136298&show_for_all=2f53b48e21', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'Varyana', true, '781133739&show_for_all=26023a576a', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'Varyana', false, '781132508&show_for_all=027c69136f', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 19, 'Varyana', true, '781131478&show_for_all=a683606434', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 19, 'Varyana', true, '781130438&show_for_all=e8053403d8', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 19, 'Varyana', true, '781125957&show_for_all=0096edb355', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 19, 'Varyana', false, '781125255&show_for_all=67a7c4460a', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'Varyana', true, '781124728&show_for_all=ce540f0ed3', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 19, 'Varyana', true, '781124347&show_for_all=151d22892d', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 19, 'Varyana', true, '781122737&show_for_all=d5e8a50efd', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 19, 'Varyana', true, '781120790&show_for_all=a6b0ca2c87', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 19, 'Varyana', true, '781118876&show_for_all=98210f4dbb', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 19, 'Varyana', true, '781116976&show_for_all=4f018e8c61', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 19, 'Varyana', true, '781114760&show_for_all=29bd1081ab', 'second'),
    new Descriptor(e_m.furies, 3, 1, 19, 'Varyana', true, '781112557&show_for_all=ddabd0b524', 'second'),
    new Descriptor(e_m.witch, 3, 1, 19, 'Varyana', true, '781111390&show_for_all=d7f7a92307', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 19, 'Varyana', true, '781110143&show_for_all=ab3910558d', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 19, 'Varyana', true, '781109027&show_for_all=d0f9f826de', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 19, 'Varyana', true, '781107235&show_for_all=7d994e7944', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 19, 'Varyana', true, '781106819&show_for_all=171a355a97', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 19, 'Varyana', true, '781105995&show_for_all=1b5c4af2fe', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 19, 'Varyana', false, '781103000&show_for_all=9c7e4d3379', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 19, 'Varyana', true, '781102583&show_for_all=f0f372d25f', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 19, 'Varyana', true, '781075565&show_for_all=7133cc3a96', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 19, 'Varyana', true, '781074328&show_for_all=5cb8c68310', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 19, 'Varyana', true, '781073539&show_for_all=56634847ed', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 19, 'Varyana', true, '781072783&show_for_all=02f93edf55', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 19, 'Varyana', true, '781071824&show_for_all=63e8a8adfb', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 19, 'Varyana', true, '781069961&show_for_all=95165e9406', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 19, 'Varyana', true, '781068003&show_for_all=45d046369a', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 19, 'Varyana', true, '781059493&show_for_all=929a2f02ea', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 19, 'Varyana', true, '781057734&show_for_all=64fb41760c', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 19, 'Varyana', false, '781056764&show_for_all=8c3476438e', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 19, 'Varyana', true, '781055908&show_for_all=c01c41c145', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 19, 'Varyana', true, '781055199&show_for_all=2899ae4f62', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 19, 'Varyana', true, '781054149&show_for_all=062be817cd', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 19, 'Varyana', true, '781049222&show_for_all=f371d7851f', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 19, 'Varyana', false, '781048121&show_for_all=a0e774971d', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 19, 'Varyana', true, '781046210&show_for_all=a600fa1820', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 19, 'Varyana', true, '781042839&show_for_all=6d681647b4', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 19, 'Varyana', true, '781041400&show_for_all=525093c135', 'second'),
    new Descriptor(e_m.furies, 3, 0, 19, 'Varyana', true, '781039591&show_for_all=834abe1ac8', 'second'),
    new Descriptor(e_m.witch, 3, 0, 19, 'Varyana', true, '781038134&show_for_all=5959f53fcb', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 19, 'Varyana', true, '781036899&show_for_all=f7891bc345', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 19, 'Varyana', true, '781036294&show_for_all=4a41fd98f9', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 19, 'Varyana', true, '781034173&show_for_all=dc623d4cbe', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 19, 'Varyana', true, '781033265&show_for_all=9780806fb4', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Varyana', true, '781031726&show_for_all=07d6eb15e6', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Varyana', false, '781030700&show_for_all=873e75f4a5', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Varyana', false, '781029989&show_for_all=f0f9712cec', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'Varyana', false, '781028623&show_for_all=ac03739414', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 19, 'Varyana', true, '781027587&show_for_all=a17fb8334e', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'Varyana', true, '780355768&show_for_all=51c0e63867', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 19, 'Varyana', true, '780354697&show_for_all=b25c0a0774', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 19, 'Varyana', true, '780352787&show_for_all=f84d3e743f', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 19, 'Varyana', true, '780350787&show_for_all=ca4636acf0', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 19, 'Varyana', true, '780350023&show_for_all=6166d522cd', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 19, 'Varyana', true, '780348602&show_for_all=ec0098ac6f', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 19, 'Varyana', true, '780344701&show_for_all=f6e1724788', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 19, 'Varyana', false, '780343044&show_for_all=fb4e51ce09', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 19, 'Varyana', true, '780339663&show_for_all=fa164e4ba2', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 19, 'Varyana', false, '780337229&show_for_all=e4f13a1938', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 19, 'Varyana', true, '780335619&show_for_all=2893bdab83', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 19, 'Varyana', true, '780334900&show_for_all=3830438548', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 19, 'Varyana', true, '780334099&show_for_all=a722f0079c', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 19, 'Varyana', true, '780333066&show_for_all=85ab76b82e', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 19, 'Varyana', true, '780332175&show_for_all=a2d4cafe68', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 19, 'Varyana', true, '780328801&show_for_all=e3568b668d', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 19, 'Varyana', true, '780327540&show_for_all=afd7855061', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 19, 'Varyana', true, '780325618&show_for_all=f93ce492d3', 'second'),
    new Descriptor(e_m.furies, 9, 0, 19, 'Varyana', true, '780318289&show_for_all=dd1e02da66', 'second'),
    new Descriptor(e_m.witch, 9, 0, 19, 'Varyana', true, '780317702&show_for_all=d67ee053cd', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 19, 'Varyana', true, '780317091&show_for_all=9a4ecb1499', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 19, 'Varyana', true, '780316045&show_for_all=86372b0697', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 19, 'Varyana', true, '780311733&show_for_all=aac3d09b68', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 19, 'Varyana', true, '780311200&show_for_all=614e5792be', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 19, 'Varyana', true, '780297724&show_for_all=b5c6c9efd9', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 19, 'Varyana', false, '780296823&show_for_all=d6fb53d0a6', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 19, 'Varyana', false, '780296383&show_for_all=62ca338e8c', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 19, 'Varyana', true, '780284534&show_for_all=b5324586f5', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Varyana', true, '776761896&show_for_all=7a6b3850e0', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Varyana', true, '776761282&show_for_all=13065adee0', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Varyana', false, '776760702&show_for_all=6c437edc01', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Varyana', true, '776760051&show_for_all=bfaa533515', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Varyana', false, '776758745&show_for_all=6392e1bf1d', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', true, '776756437&show_for_all=0e61e92273', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', false, '776750850&show_for_all=36e23d2e58', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', false, '776749910&show_for_all=3fb2ddd9ec', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Varyana', true, '776748410&show_for_all=9603b4ba23', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Varyana', false, '776747495&show_for_all=66a9182b12', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Varyana', false, '776746692&show_for_all=08bcbdc06b', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Varyana', true, '776745939&show_for_all=af6d8d478c', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Varyana', false, '776744483&show_for_all=ca20befdbe', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Varyana', true, '776742556&show_for_all=3a96814e4e', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Varyana', true, '776741557&show_for_all=863c4b0af4', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Varyana', false, '776740627&show_for_all=0f4c40908f', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Varyana', true, '776739033&show_for_all=26342b239c', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Varyana', false, '776737155&show_for_all=22045d9e1b', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', true, '776735399&show_for_all=8e489ac364', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Varyana', false, '776732629&show_for_all=1bf524fdda', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Varyana', true, '776731806&show_for_all=0fd1f27824', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Varyana', true, '776730994&show_for_all=6bfdfcf3d8', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Varyana', true, '776728743&show_for_all=437d7730df', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Varyana', true, '776727555&show_for_all=9fbc1e029a', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Varyana', true, '776726353&show_for_all=cfb5489c8a', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Varyana', true, '776691671&show_for_all=6f625074f2', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Varyana', true, '776690352&show_for_all=a4d4c203a1', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Varyana', true, '776689887&show_for_all=a84be320c9', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Varyana', true, '776689260&show_for_all=0759b85b04', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Varyana', true, '776688154&show_for_all=f948d07168', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Varyana', true, '776686674&show_for_all=b67ffd4c69', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Varyana', false, '776681265&show_for_all=2c877be237', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Varyana', true, '776680156&show_for_all=80077cc6e3', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Varyana', false, '776679395&show_for_all=2e15561fe4', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Varyana', true, '776678386&show_for_all=4af76966f2', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Varyana', true, '776677303&show_for_all=b6e4f5e78d', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Varyana', true, '776611127&show_for_all=8bf864cdf0', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Varyana', true, '776610486&show_for_all=89f0d72b36', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Varyana', true, '776610026&show_for_all=0c59055d74', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Varyana', true, '776609222&show_for_all=d500e98231', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Varyana', true, '776608745&show_for_all=0b69a86e9f', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Varyana', true, '776607342&show_for_all=082323ba0f', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Varyana', true, '776606823&show_for_all=83532e6e76', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Varyana', true, '776606163&show_for_all=a88c6a2eaa', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Varyana', true, '776605629&show_for_all=f575f15610', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Varyana', false, '776603872&show_for_all=ad3284b416', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Varyana', true, '776603379&show_for_all=8641bbdd7b', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Varyana', true, '776602809&show_for_all=4b18f7130e', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Varyana', true, '776602253&show_for_all=c5ce1a452a', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Varyana', true, '776601570&show_for_all=5ea6fe8fac', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Varyana', true, '776599698&show_for_all=6205c18d8c', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Varyana', true, '776598391&show_for_all=f55f922a9b', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Varyana', true, '776596876&show_for_all=3ef374348b', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Varyana', true, '776595254&show_for_all=ca8c33db10', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Varyana', true, '776594957&show_for_all=4a80bc0fc2', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Varyana', true, '776593677&show_for_all=e081a82693', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Varyana', true, '776593123&show_for_all=02aed93422', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Varyana', true, '776591297&show_for_all=a7f7ca26c0', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Varyana', false, '776589774&show_for_all=168683f902', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Varyana', true, '776588977&show_for_all=3e4debd8ae', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Varyana', true, '776567357&show_for_all=f5ef70d5a8', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Varyana', true, '776565948&show_for_all=39ee5a6051', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Varyana', false, '776565046&show_for_all=9cb23ee13d', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Varyana', false, '776564548&show_for_all=4f6aa3a4be', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Varyana', true, '776075491&show_for_all=c0665dabef', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Varyana', true, '776074523&show_for_all=d915312f9f', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Varyana', true, '776073551&show_for_all=1ae7dbbd65', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Varyana', true, '776071331&show_for_all=e52728ae60', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Varyana', true, '776070648&show_for_all=3edb8dc1ef', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Varyana', true, '776069914&show_for_all=e4b68eecec', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Varyana', true, '776069272&show_for_all=8c502d334d', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Varyana', true, '776068792&show_for_all=64db2fb962', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Varyana', true, '776067942&show_for_all=819f8e0026', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Varyana', true, '776066034&show_for_all=96b41478a7', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Varyana', true, '776064654&show_for_all=c1e2819e2d', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Varyana', true, '776063940&show_for_all=86a79d29b4', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Varyana', false, '776062990&show_for_all=53a9212d44', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Varyana', false, '776062247&show_for_all=cc86a90508', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Varyana', true, '776061634&show_for_all=bff3e7732d', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Varyana', true, '776060483&show_for_all=ecc0f72f25', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Varyana', false, '776059414&show_for_all=53a9bd2b2a', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Varyana', true, '776058398&show_for_all=152c511efe', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Varyana', true, '776054089&show_for_all=fd27aba907', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Varyana', false, '776049821&show_for_all=9933be5472', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Varyana', true, '776048476&show_for_all=58b327f4d0', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Varyana', true, '776047515&show_for_all=f6321113ba', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Varyana', true, '776047018&show_for_all=8dad4115e1', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Varyana', true, '776046341&show_for_all=7ec8ccfde9', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Varyana', false, '776045920&show_for_all=4fc409af3c', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Varyana', true, '776044685&show_for_all=cee26c09d7', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Varyana', true, '776043301&show_for_all=0b0cc011bd', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Varyana', true, '776042236&show_for_all=b19ae6129b', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Varyana', false, '776041833&show_for_all=a9fd3059ae', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Varyana', true, '776041009&show_for_all=6f955c82e6', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Varyana', true, '776017527&show_for_all=ac190cabb4', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Varyana', true, '775932843&show_for_all=c38cf5ac4c', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 19, 'Varyana', true, '775931170&show_for_all=7761ec70ab', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 19, 'Varyana', true, '775928698&show_for_all=0141514e33', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Varyana', true, '775927103&show_for_all=7784815cb4', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 19, 'Varyana', true, '775924727&show_for_all=83ed64c571', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 19, 'Varyana', false, '775923371&show_for_all=180181dca3', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Varyana', true, '775921480&show_for_all=fecfe0818d', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 19, 'Varyana', true, '775920111&show_for_all=cfee69bfdf', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 19, 'Varyana', true, '775917350&show_for_all=d12896473b', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 19, 'Varyana', true, '775916154&show_for_all=e709fa1ea1', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 19, 'Varyana', false, '775914353&show_for_all=d481cf11c0', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Varyana', true, '775912744&show_for_all=743d0dd5c0', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 19, 'Varyana', true, '775911839&show_for_all=5a1d3cc3b9', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 19, 'Varyana', true, '775910460&show_for_all=b0a8e619af', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Varyana', true, '775909566&show_for_all=c9bab77d97', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 19, 'Varyana', true, '775908010&show_for_all=18d3a55288', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 19, 'Varyana', true, '775906595&show_for_all=3fd655478b', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 19, 'Varyana', true, '775904903&show_for_all=eeb40df3d4', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 19, 'Varyana', true, '775903417&show_for_all=2cca82a522', 'second'),
    new Descriptor(e_m.furies, 5, 2, 19, 'Varyana', true, '775901040&show_for_all=d850acd70f', 'second'),
    new Descriptor(e_m.witch, 5, 2, 19, 'Varyana', true, '775900328&show_for_all=7c71e42dc3', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 19, 'Varyana', true, '775897288&show_for_all=446bc3d37a', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 19, 'Varyana', true, '775896548&show_for_all=ea152c260d', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 19, 'Varyana', true, '775895221&show_for_all=609092c603', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 19, 'Varyana', true, '775848565&show_for_all=96eb16df00', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 19, 'Varyana', true, '775847753&show_for_all=5365963cd5', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 19, 'Varyana', false, '775846168&show_for_all=b17d3b2183', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 19, 'Varyana', true, '775845083&show_for_all=9c1764922d', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Varyana', true, '775832084&show_for_all=51a69d732b', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'Varyana', true, '775830386&show_for_all=7c5996fadf', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Varyana', true, '775829348&show_for_all=9db27a2f4f', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'Varyana', true, '775828732&show_for_all=68d00b1cf2', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'Varyana', true, '775827832&show_for_all=e4e250098d', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Varyana', true, '775827083&show_for_all=79d494b3a8', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Varyana', true, '775825666&show_for_all=a0ae387d8b', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Varyana', true, '775822276&show_for_all=25438fac94', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Varyana', true, '775821420&show_for_all=575b359ff5', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Varyana', false, '775820699&show_for_all=60adab0ed1', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Varyana', true, '775818775&show_for_all=c48582ab76', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Varyana', true, '775818041&show_for_all=733192c8d4', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Varyana', true, '775817268&show_for_all=876d82834d', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Varyana', true, '775816327&show_for_all=b770b5acce', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'Varyana', true, '775815563&show_for_all=de312dfa93', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'Varyana', true, '775814971&show_for_all=af426313e6', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'Varyana', true, '775812358&show_for_all=3ef2a9edbb', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'Varyana', true, '775776504&show_for_all=7d6f38ac91', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'Varyana', true, '775775060&show_for_all=beef8032ba', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Varyana', true, '775773655&show_for_all=0487c0178f', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Varyana', false, '775772179&show_for_all=1b5a509b3e', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Varyana', false, '775771132&show_for_all=4218831853', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'Varyana', true, '775770501&show_for_all=7883eda1a2', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'Varyana', true, '775770069&show_for_all=4451341e10', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Varyana', true, '775764978&show_for_all=5c62452094', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Varyana', false, '775763151&show_for_all=9d0345aeaa', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Varyana', false, '775761986&show_for_all=d57f897bbb', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'Varyana', true, '775760987&show_for_all=e4c7779087', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Varyana', true, '775693405&show_for_all=c05390adae', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Varyana', true, '775692251&show_for_all=757b726f7a', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Varyana', false, '775690489&show_for_all=9c0cf48997', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 19, 'Varyana', true, '775556584&show_for_all=2843eaca58', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 19, 'Varyana', true, '775556321&show_for_all=909a2d15df', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 19, 'Varyana', false, '775555599&show_for_all=9741aa173f', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 19, 'Varyana', true, '775554491&show_for_all=0ba6d28df9', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 19, 'Varyana', true, '775553997&show_for_all=510cb332e7', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Varyana', true, '775553327&show_for_all=2bfd7b89e9', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 19, 'Varyana', false, '775552809&show_for_all=a1afd4f8c6', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 19, 'Varyana', true, '775551968&show_for_all=bc77aa5960', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 19, 'Varyana', false, '775551052&show_for_all=1aae90faa2', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Varyana', true, '775547621&show_for_all=4ae6dea6db', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 19, 'Varyana', false, '775546388&show_for_all=ced596160d', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 19, 'Varyana', true, '775544579&show_for_all=0fba78be08', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 19, 'Varyana', false, '775543501&show_for_all=84eb371cab', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 19, 'Varyana', true, '775542470&show_for_all=12656da792', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 19, 'Varyana', true, '775540288&show_for_all=6e03cda01a', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 19, 'Varyana', true, '775537640&show_for_all=990dcbbaa0', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 19, 'Varyana', true, '775535280&show_for_all=f4aa970363', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 19, 'Varyana', true, '775533566&show_for_all=6e81444c49', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 19, 'Varyana', false, '775531035&show_for_all=5db78654d8', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 19, 'Varyana', true, '775525242&show_for_all=04faae4108', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 19, 'Varyana', true, '775523356&show_for_all=53257de096', 'second'),
    new Descriptor(e_m.furies, 6, 0, 19, 'Varyana', true, '775521177&show_for_all=f0d94956cd', 'second'),
    new Descriptor(e_m.witch, 6, 0, 19, 'Varyana', true, '775519733&show_for_all=571c745d5a', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 19, 'Varyana', true, '775518578&show_for_all=6d3bea9620', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 19, 'Varyana', true, '775511268&show_for_all=c5b50b7ad4', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 19, 'Varyana', true, '775509285&show_for_all=99c9cbb7de', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 19, 'Varyana', true, '775508125&show_for_all=15b5f0daed', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 19, 'Varyana', true, '775506805&show_for_all=efbc62aff1', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 19, 'Varyana', true, '775505791&show_for_all=faa036e02c', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Varyana', true, '772892408&show_for_all=77180f1722', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 19, 'Varyana', true, '772891962&show_for_all=1c5435a579', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Varyana', true, '772891207&show_for_all=6a84a4064b', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Varyana', false, '772890929&show_for_all=710f6620f5', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Varyana', false, '772890377&show_for_all=03e41963cf', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 19, 'Varyana', true, '772890202&show_for_all=7d6408df72', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'Varyana', true, '772889765&show_for_all=d11c4c38cb', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'Varyana', true, '772888836&show_for_all=4223650c9e', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'Varyana', false, '772888576&show_for_all=5555c3588d', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', true, '772887952&show_for_all=90adde09a9', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', false, '772887694&show_for_all=a6d8f708c3', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', false, '772886921&show_for_all=441deb86f5', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Varyana', false, '772886018&show_for_all=8b00ae3c5a', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Varyana', true, '772885597&show_for_all=be763aaad8', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Varyana', true, '772877106&show_for_all=3e95d38ae1', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Varyana', true, '772875769&show_for_all=287a9372e7', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 19, 'Varyana', true, '772874660&show_for_all=a1239d9a31', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 19, 'Varyana', true, '772872894&show_for_all=f12d33feb0', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 19, 'Varyana', false, '772871939&show_for_all=dbb177bf6c', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Varyana', true, '772860522&show_for_all=f61ab1ea16', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 19, 'Varyana', true, '772856913&show_for_all=5afd2e5e36', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 19, 'Varyana', true, '772855394&show_for_all=4251381c6c', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 19, 'Varyana', true, '772852124&show_for_all=87ff55b106', 'second'),
    new Descriptor(e_m.furies, 8, 0, 19, 'Varyana', true, '772850241&show_for_all=26935aaa29', 'second'),
    new Descriptor(e_m.witch, 8, 0, 19, 'Varyana', true, '772849604&show_for_all=ce0ff5789c', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 19, 'Varyana', true, '772848649&show_for_all=bc7040e382', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'Varyana', true, '772847793&show_for_all=17bd7d223b', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 19, 'Varyana', true, '772824852&show_for_all=90c1eb18c8', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'Varyana', true, '772823027&show_for_all=8a7cc00d37', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'Varyana', false, '772819376&show_for_all=e5f14127f1', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 19, 'Varyana', true, '772817496&show_for_all=c16a48e529', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 19, 'Varyana', true, '772816251&show_for_all=7ea55a239e', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'peln', true, '839326813&show_for_all=d0c9c7c98e', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 19, 'peln', true, '839325862&show_for_all=e6071a4103', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 19, 'peln', true, '839324720&show_for_all=8e2b6c6a89', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'peln', true, '839322828&show_for_all=7a078460a7', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'peln', true, '839298238&show_for_all=a865beabb3', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 19, 'peln', true, '839297867&show_for_all=c95885cde5', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 19, 'peln', true, '839279652&show_for_all=d8822eccae', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 19, 'peln', true, '839279359&show_for_all=943a112a0f', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'peln', true, '839278933&show_for_all=29058d7079', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 19, 'peln', true, '839277600&show_for_all=96617444f4', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 19, 'peln', true, '839277222&show_for_all=57777b033a', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'peln', true, '839276520&show_for_all=983cf85303', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 19, 'peln', true, '839270866&show_for_all=b07c8f4481', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 19, 'peln', true, '839270045&show_for_all=b1f1201962', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 19, 'peln', true, '839268011&show_for_all=b022283a2c', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 19, 'peln', true, '839245820&show_for_all=8a6e8e26e9', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 19, 'peln', true, '839243254&show_for_all=ecf2009ebc', 'second'),
    new Descriptor(e_m.witch, 5, 2, 19, 'peln', true, '839241905&show_for_all=6b915bbab6', 'second'),
    new Descriptor(e_m.furies, 5, 2, 19, 'peln', true, '839241017&show_for_all=e24449b6ab', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 19, 'peln', true, '839239895&show_for_all=b305460283', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 19, 'peln', true, '839238322&show_for_all=098d163066', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 19, 'peln', true, '839230799&show_for_all=8adaef58e8', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 19, 'peln', true, '839230078&show_for_all=1ae0c78c80', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 19, 'peln', true, '839221734&show_for_all=f73ff08d87', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 19, 'peln', true, '839219941&show_for_all=57056913fa', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'peln', true, '839143368&show_for_all=940b356722', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'peln', false, '839141433&show_for_all=20d71d52ca', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'peln', true, '839139655&show_for_all=566c565023', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'peln', true, '839138573&show_for_all=7a2e0f5c05', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'peln', true, '839137851&show_for_all=6ce5c42c13', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'peln', true, '839136399&show_for_all=a9d198c358', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'peln', true, '839134435&show_for_all=41785fdb12', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'peln', true, '839132391&show_for_all=79cb8f97cd', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'peln', true, '839131617&show_for_all=5d4c361cd9', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'peln', true, '839130102&show_for_all=8ae946ffab', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'peln', true, '839127182&show_for_all=5e2db60dd3', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'peln', true, '839125776&show_for_all=07b9c7ebae', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'peln', true, '839124763&show_for_all=95fe6330bd', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'peln', true, '839123792&show_for_all=ad497c8430', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'peln', true, '839122620&show_for_all=64a7072f33', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'peln', true, '839120574&show_for_all=da300f674f', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'peln', true, '839117836&show_for_all=49a24e320b', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'peln', true, '839116395&show_for_all=62ac973dcc', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'peln', false, '839112951&show_for_all=071826ea1a', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'peln', true, '839112250&show_for_all=5cb25cf39b', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'peln', true, '839111483&show_for_all=4e29b1120f', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'peln', true, '839110571&show_for_all=01f27bce1e', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'peln', true, '839109145&show_for_all=6cd7590224', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'peln', true, '839108345&show_for_all=c187576c11', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'peln', true, '839107293&show_for_all=8e67289534', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'peln', true, '839106240&show_for_all=8e2e2186b3', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'peln', true, '838935049&show_for_all=49af4efb22', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'peln', false, '838933258&show_for_all=7ad38dc902', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'peln', true, '838932728&show_for_all=84843e4342', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'peln', true, '838932127&show_for_all=c42911735d', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'peln', true, '838930513&show_for_all=292778f940', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'peln', true, '838929800&show_for_all=e1018a8383', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'peln', false, '838924718&show_for_all=072f25bc13', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'peln', true, '838924256&show_for_all=02d75cc9e5', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'peln', true, '838923448&show_for_all=240b80f69b', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'peln', true, '838923069&show_for_all=e9b412d4c2', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'peln', true, '838922724&show_for_all=187e8829be', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'peln', true, '838921996&show_for_all=cefd19306f', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'peln', true, '838921435&show_for_all=b8fc89f9f7', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'peln', true, '838919879&show_for_all=fbb0282474', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'peln', false, '838905489&show_for_all=487cbfccb8', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'peln', false, '838904406&show_for_all=23f2c2a62f', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'peln', true, '838903823&show_for_all=790e74d407', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'peln', true, '838903291&show_for_all=c8dac157bc', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'peln', true, '838902746&show_for_all=71eb6ab58a', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'peln', false, '838901562&show_for_all=0516b8155a', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'peln', true, '838900640&show_for_all=473b7ba6e1', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'peln', true, '838899940&show_for_all=e836f1c63d', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'peln', true, '838897747&show_for_all=633b43f915', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'peln', true, '838897337&show_for_all=61013d6213', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'peln', true, '838896289&show_for_all=6317ec3b40', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'peln', true, '838895913&show_for_all=f38ebc89b5', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'peln', true, '838894345&show_for_all=8c9d224a61', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'peln', true, '838894045&show_for_all=39bfedd2ab', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'peln', true, '838892995&show_for_all=0203006ef4', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'peln', true, '838892330&show_for_all=6485f82f5e', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'peln', true, '838661770&show_for_all=ea274f42f6', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 19, 'peln', false, '838657686&show_for_all=6f1fb785db', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 19, 'peln', true, '838654735&show_for_all=13ca36b0aa', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'peln', true, '837678746&show_for_all=6a046de92e', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'peln', false, '837675088&show_for_all=7f8ca3624f', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 19, 'peln', false, '837672028&show_for_all=62c7a5d556', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 19, 'peln', true, '837670641&show_for_all=a075e336b3', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 19, 'peln', true, '837668951&show_for_all=0068e098b3', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'peln', true, '837665920&show_for_all=617838345a', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'peln', false, '837661082&show_for_all=ec0a804cce', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 19, 'peln', true, '837659966&show_for_all=3c0991ce87', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 19, 'peln', true, '837658252&show_for_all=ed4136342c', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 19, 'peln', true, '837657077&show_for_all=84c8ca6388', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 19, 'peln', true, '837654784&show_for_all=a216099871', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 19, 'peln', true, '837653143&show_for_all=f043ca840f', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 19, 'peln', true, '837588637&show_for_all=ba81688f98', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 19, 'peln', true, '837587563&show_for_all=d52af2676d', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 19, 'peln', true, '837585096&show_for_all=c2713c3f5a', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 19, 'peln', true, '837583973&show_for_all=fb5a772410', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 19, 'peln', true, '837582493&show_for_all=a65c8c849a', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 19, 'peln', true, '837580826&show_for_all=d9ffc5e208', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 19, 'peln', true, '837578311&show_for_all=dce4fb4e32', 'second'),
    new Descriptor(e_m.furies, 3, 1, 19, 'peln', true, '837551074&show_for_all=cf91dec121', 'second'),
    new Descriptor(e_m.witch, 3, 1, 19, 'peln', true, '837550007&show_for_all=d602cb0630', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 19, 'peln', true, '837548229&show_for_all=c21d6ccaff', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 19, 'peln', true, '837546921&show_for_all=47acf24a89', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 19, 'peln', true, '837541302&show_for_all=39949ea3fe', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 19, 'peln', true, '837540055&show_for_all=895539bea9', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 19, 'peln', true, '837538042&show_for_all=fcf25c5dab', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 19, 'peln', true, '837536412&show_for_all=4ae00dfb49', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'peln', true, '837474243&show_for_all=49ab04da7b', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 19, 'peln', true, '837471737&show_for_all=577ebb9164', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'peln', true, '837469017&show_for_all=d5eb87211d', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'peln', true, '837467077&show_for_all=65b8651fbc', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'peln', true, '837461372&show_for_all=b1809638c1', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 19, 'peln', true, '837450698&show_for_all=7a4d190017', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'peln', true, '837448270&show_for_all=f24c31ed10', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'peln', true, '837446912&show_for_all=79c5edf2ca', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'peln', true, '837443686&show_for_all=2c7a1d5e04', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 19, 'peln', true, '837441546&show_for_all=a0d1a586e1', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 19, 'peln', true, '837439971&show_for_all=a2061a2c22', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'peln', true, '837437683&show_for_all=c29e94c80e', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'peln', true, '837435977&show_for_all=27107e58cc', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 19, 'peln', true, '837433087&show_for_all=34446296d8', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 19, 'peln', true, '837430100&show_for_all=7876492c6e', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 19, 'peln', true, '837425000&show_for_all=e7d6665800', 'second'),
    new Descriptor(e_m.furies, 8, 0, 19, 'peln', true, '837422412&show_for_all=3f0c54e9cd', 'second'),
    new Descriptor(e_m.witch, 8, 0, 19, 'peln', true, '837421309&show_for_all=bc171e2c00', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 19, 'peln', true, '837420053&show_for_all=563eb37d62', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'peln', true, '837416228&show_for_all=13ebe88f84', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 19, 'peln', true, '837413267&show_for_all=acb22799ad', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'peln', true, '837411884&show_for_all=a19b4ebad5', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 19, 'peln', true, '837410121&show_for_all=6b4f0d7d0e', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 19, 'peln', true, '837261567&show_for_all=77ed909c11', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'peln', true, '837233423&show_for_all=79a0ec2c9e', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'peln', true, '836791805&show_for_all=cead819cde', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 19, 'peln', false, '836789695&show_for_all=89068009e4', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 19, 'peln', true, '836788692&show_for_all=dbcb52c5aa', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 19, 'peln', true, '836787653&show_for_all=fb34b032e8', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 19, 'peln', true, '836786075&show_for_all=29b0c6f415', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 19, 'peln', true, '836784800&show_for_all=8736b4c097', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 19, 'peln', true, '836784082&show_for_all=773eb00d77', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 19, 'peln', true, '836783305&show_for_all=5324a64067', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 19, 'peln', true, '836782812&show_for_all=19444cc7a4', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 19, 'peln', true, '836781791&show_for_all=2590479845', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 19, 'peln', true, '836780792&show_for_all=8e3b8122db', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 19, 'peln', true, '836779760&show_for_all=1001343118', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 19, 'peln', false, '836777290&show_for_all=210f85c0f9', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 19, 'peln', true, '836775753&show_for_all=4388e18248', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 19, 'peln', true, '836774556&show_for_all=eb388cb545', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 19, 'peln', true, '836773224&show_for_all=ee5c6aa622', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 19, 'peln', true, '836771493&show_for_all=7d8e9bffbd', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 19, 'peln', true, '836769614&show_for_all=b2497262e9', 'second'),
    new Descriptor(e_m.furies, 9, 0, 19, 'peln', true, '836767572&show_for_all=5fa2d70831', 'second'),
    new Descriptor(e_m.witch, 9, 0, 19, 'peln', true, '836766890&show_for_all=e640a9f85b', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 19, 'peln', true, '836766045&show_for_all=602b7e2e79', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 19, 'peln', true, '836718689&show_for_all=6edf3dc479', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 19, 'peln', true, '836717419&show_for_all=1455209908', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 19, 'peln', true, '836716654&show_for_all=15a01c054d', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 19, 'peln', true, '836713563&show_for_all=a8556fe381', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 19, 'peln', false, '836712271&show_for_all=5a5856ecc3', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 19, 'peln', true, '836711201&show_for_all=64a2fd4a27', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 19, 'peln', true, '836654248&show_for_all=a17378330a', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 19, 'peln', true, '836653168&show_for_all=74b3a17fe0', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 19, 'peln', true, '836651844&show_for_all=15fe6dfc9f', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'peln', true, '836648900&show_for_all=0f1490df72', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 19, 'peln', true, '836646803&show_for_all=98af9d9bcd', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 19, 'peln', true, '836644168&show_for_all=145e357735', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 19, 'peln', true, '836642413&show_for_all=f49a688d94', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 19, 'peln', true, '836640865&show_for_all=0d65cc15bd', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 19, 'peln', true, '836639652&show_for_all=24754b5a10', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 19, 'peln', true, '836638520&show_for_all=1c627a5e59', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 19, 'peln', true, '836637346&show_for_all=1e409d848c', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 19, 'peln', true, '836635953&show_for_all=84c6c98b1a', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 19, 'peln', true, '836633890&show_for_all=56bcc45835', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 19, 'peln', true, '836630821&show_for_all=1221663a07', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 19, 'peln', true, '836627480&show_for_all=9b0833b548', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 19, 'peln', true, '836624833&show_for_all=ca4e2b960c', 'second'),
    new Descriptor(e_m.furies, 7, 1, 19, 'peln', true, '836623297&show_for_all=bd23e3aaa2', 'second'),
    new Descriptor(e_m.witch, 7, 1, 19, 'peln', true, '836622704&show_for_all=1147cee960', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 19, 'peln', true, '836621010&show_for_all=29c519371b', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 19, 'peln', true, '836619828&show_for_all=3b5402e8e2', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 19, 'peln', true, '836617713&show_for_all=8af6c6a5a9', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 19, 'peln', true, '836616855&show_for_all=8c32ae156b', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 19, 'peln', true, '836615113&show_for_all=ce5054149f', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 19, 'peln', true, '836613750&show_for_all=aa7106561e', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'peln', true, '836358726&show_for_all=89353301b3', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 19, 'peln', true, '836356607&show_for_all=733a34f393', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'peln', true, '836354693&show_for_all=e62a3dd9e5', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 19, 'peln', true, '836351756&show_for_all=48e4843299', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 19, 'peln', true, '836350806&show_for_all=f51aec5e1f', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 19, 'peln', true, '836349596&show_for_all=18501bef9c', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 19, 'peln', true, '836348863&show_for_all=72f83087f2', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 19, 'peln', true, '836347096&show_for_all=e69c5c2fd9', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 19, 'peln', true, '836345054&show_for_all=a6f573aff5', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 19, 'peln', true, '836342106&show_for_all=37efa64581', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 19, 'peln', true, '836340033&show_for_all=e770b4f28a', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 19, 'peln', true, '836336599&show_for_all=9b5aacafec', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 19, 'peln', true, '836334315&show_for_all=18e22d619d', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 19, 'peln', true, '836331067&show_for_all=c01d846e47', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 19, 'peln', true, '836326042&show_for_all=6fb7c16e7a', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 19, 'peln', true, '836255061&show_for_all=ae5bdff638', 'second'),
    new Descriptor(e_m.furies, 7, 0, 19, 'peln', true, '836253479&show_for_all=3ac57a8166', 'second'),
    new Descriptor(e_m.witch, 7, 0, 19, 'peln', true, '836252632&show_for_all=e1813f97d0', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 19, 'peln', true, '836251015&show_for_all=913ed4a3fb', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 19, 'peln', true, '836249948&show_for_all=265dfc8d17', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 19, 'peln', true, '836247828&show_for_all=ecc354f81b', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 19, 'peln', true, '836245536&show_for_all=782507f52b', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 19, 'peln', true, '836242458&show_for_all=b259926d5d', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 19, 'peln', true, '836241048&show_for_all=fe5ca9eb0d', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 19, 'peln', true, '836234500&show_for_all=2cc5a2f0b1', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'peln', true, '836233141&show_for_all=f55f4d3991', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 19, 'peln', true, '836231626&show_for_all=d1f251dbbb', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 19, 'peln', true, '836230377&show_for_all=7c89319bad', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 19, 'peln', true, '836229364&show_for_all=7561df3aa6', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 19, 'peln', true, '836227462&show_for_all=d5e492ee52', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 19, 'peln', true, '836222166&show_for_all=e0cd1ee9f3', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 19, 'peln', true, '836221118&show_for_all=50bdb4a800', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 19, 'peln', true, '836219707&show_for_all=38d44379c1', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 19, 'peln', true, '836214726&show_for_all=8671fd4074', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 19, 'peln', true, '836213538&show_for_all=df2d9dd4d0', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 19, 'peln', true, '836211769&show_for_all=c17e46a308', 'second'),
    new Descriptor(e_m.witch, 7, 0, 19, 'peln', true, '836211055&show_for_all=c8ef46b6e5', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 19, 'peln', true, '836210426&show_for_all=b956b608d9', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 19, 'peln', true, '836209534&show_for_all=8968cf5f98', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 19, 'peln', true, '836207740&show_for_all=76aa46ad5e', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 19, 'peln', true, '836207297&show_for_all=d0236c165d', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 19, 'peln', true, '836200113&show_for_all=da35f100c4', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 19, 'peln', true, '836198507&show_for_all=d4b9a8b1a3', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 19, 'peln', true, '836053795&show_for_all=76935972ae', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 18, 'BangFire', true, '792618614&show_for_all=1c42fda0cd', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 18, 'BangFire', true, '792621047&show_for_all=382295f0c9', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 18, 'BangFire', true, '792623659&show_for_all=b6e9e12115', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 18, 'BangFire', true, '792627204&show_for_all=629d3dbbc4', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 18, 'BangFire', true, '792628977&show_for_all=728ff37c73', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 18, 'BangFire', true, '792637050&show_for_all=8fcf39745a', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 18, 'BangFire', true, '792639310&show_for_all=116ac62856', 'second'),
    new Descriptor(e_m.witch, 1, 0, 18, 'BangFire', true, '792646825&show_for_all=7991c43ac1', 'second'),
    new Descriptor(e_m.furies, 1, 0, 18, 'BangFire', true, '792648355&show_for_all=fb4dd88066', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 18, 'BangFire', true, '792649567&show_for_all=24647fd012', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 18, 'BangFire', true, '792651643&show_for_all=2b3f8e6585', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 18, 'BangFire', true, '792653284&show_for_all=f8fe14255d', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 18, 'BangFire', true, '792654104&show_for_all=023afed844', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 18, 'BangFire', true, '792656564&show_for_all=334443479b', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 18, 'BangFire', true, '792658565&show_for_all=af1d6a7912', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 18, 'BangFire', true, '792659488&show_for_all=9af4b7d496', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 18, 'BangFire', true, '792660868&show_for_all=0ae9a3a2f6', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 18, 'BangFire', true, '792662015&show_for_all=fdf84160d1', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 18, 'BangFire', true, '792663265&show_for_all=85b2219899', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 18, 'BangFire', true, '792667692&show_for_all=2623c7117b', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 18, 'BangFire', true, '792669027&show_for_all=76ead9354c', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 18, 'BangFire', true, '792677426&show_for_all=a147875b69', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 18, 'BangFire', true, '792678708&show_for_all=eb3987ef5a', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 18, 'BangFire', true, '792680909&show_for_all=6dcc50129f', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 18, 'BangFire', true, '792187589&show_for_all=94a428f795', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 18, 'BangFire', true, '792189834&show_for_all=fa2749a3a6', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 18, 'BangFire', true, '792191940&show_for_all=9d5efdc001', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 18, 'BangFire', true, '792193558&show_for_all=835e9778e6', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 18, 'BangFire', true, '792196097&show_for_all=f3afb55d44', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 18, 'BangFire', true, '792199666&show_for_all=f9defc8644', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 18, 'BangFire', true, '792200755&show_for_all=2a5e01b06f', 'second'),
    new Descriptor(e_m.witch, 1, 1, 18, 'BangFire', true, '792202579&show_for_all=74132cb1e5', 'second'),
    new Descriptor(e_m.furies, 1, 1, 18, 'BangFire', true, '792204140&show_for_all=d8fe58adb6', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 18, 'BangFire', true, '792205704&show_for_all=eaa138726b', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 18, 'BangFire', true, '792207101&show_for_all=f74c337f7a', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 18, 'BangFire', true, '792208486&show_for_all=8fc5d3c5c5', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 18, 'BangFire', true, '792209350&show_for_all=09799c99dc', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 18, 'BangFire', true, '792210454&show_for_all=efa0b5b2c2', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 18, 'BangFire', true, '792317870&show_for_all=2db89ff871', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 18, 'BangFire', true, '792319089&show_for_all=8ef1fe07c4', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 18, 'BangFire', true, '792320773&show_for_all=a796049d8d', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 18, 'BangFire', true, '792322093&show_for_all=23c2adf0d3', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 18, 'BangFire', true, '792324343&show_for_all=0de55287a5', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 18, 'BangFire', true, '792326105&show_for_all=f8d51a674d', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 18, 'BangFire', true, '792332359&show_for_all=3e88a16bd2', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 18, 'BangFire', true, '792336357&show_for_all=9e82b54f55', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 18, 'BangFire', true, '792337423&show_for_all=14174e77cd', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 18, 'BangFire', true, '792338830&show_for_all=5a3646d085', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 18, 'BangFire', true, '790229319&show_for_all=1453468183', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 18, 'BangFire', true, '790237700&show_for_all=7e765fa25b', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 18, 'BangFire', true, '790239457&show_for_all=2c202b7004', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 18, 'BangFire', true, '790244025&show_for_all=69e3be89ce', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 18, 'BangFire', true, '790253874&show_for_all=c1eaa81bf3', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 18, 'BangFire', true, '790257166&show_for_all=b6eed82768', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 18, 'BangFire', true, '790261203&show_for_all=f6f6a6f647', 'second'),
    new Descriptor(e_m.furies, 2, 0, 18, 'BangFire', true, '790271782&show_for_all=9c9f7b38a7', 'second'),
    new Descriptor(e_m.witch, 2, 0, 18, 'BangFire', true, '790278216&show_for_all=d647b6c2cf', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 18, 'BangFire', true, '790469557&show_for_all=a95c28ec27', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 18, 'BangFire', true, '790475828&show_for_all=4fd1ac83e7', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 18, 'BangFire', true, '790478162&show_for_all=d851522458', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 18, 'BangFire', true, '790485844&show_for_all=17aa73c719', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 18, 'BangFire', true, '790491422&show_for_all=7b91d5498d', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 18, 'BangFire', true, '790494914&show_for_all=0f04937271', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 18, 'BangFire', true, '790497414&show_for_all=d16af1b887', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 18, 'BangFire', true, '790502257&show_for_all=575f694c30', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 0, 18, 'BangFire', true, '790507068&show_for_all=c2afc714fc', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 18, 'BangFire', true, '790512483&show_for_all=d4264c9c70', 'second'),
    new Descriptor(e_m.undead_boss, 2, 0, 18, 'BangFire', true, '790520072&show_for_all=78f5b2b10f', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 18, 'BangFire', true, '790523174&show_for_all=2d0654d100', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 18, 'BangFire', true, '790527199&show_for_all=0d758f8339', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 18, 'BangFire', true, '790536496&show_for_all=08799648f5', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 18, 'BangFire', true, '790540509&show_for_all=6437818d4c', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 18, 'BangFire', true, '789424705&show_for_all=a9732d4c87', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 18, 'BangFire', true, '789431098&show_for_all=6591591b65', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 18, 'BangFire', true, '789433646&show_for_all=e3c7195e8a', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 18, 'BangFire', true, '789447440&show_for_all=35f9ae3a60', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 18, 'BangFire', true, '789507383&show_for_all=5d8f36514a', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 18, 'BangFire', true, '789512254&show_for_all=8b2022ed34', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 18, 'BangFire', true, '789515425&show_for_all=92b89c5661', 'second'),
    new Descriptor(e_m.furies, 2, 1, 18, 'BangFire', true, '789519351&show_for_all=1339ee5e86', 'second'),
    new Descriptor(e_m.witch, 2, 1, 18, 'BangFire', true, '789523942&show_for_all=3e28c92897', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 18, 'BangFire', true, '789528301&show_for_all=58b4e971c8', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 18, 'BangFire', true, '789533341&show_for_all=8c831b3223', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 18, 'BangFire', true, '789541351&show_for_all=62d6f32a3b', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 18, 'BangFire', true, '789546358&show_for_all=d796a97ec6', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 18, 'BangFire', true, '789559725&show_for_all=97d994de1f', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 18, 'BangFire', true, '789565765&show_for_all=568d027483', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 18, 'BangFire', true, '789570036&show_for_all=65c822a58e', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 18, 'BangFire', true, '789573572&show_for_all=cbd94df3e2', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 18, 'BangFire', true, '789582174&show_for_all=88ad52c6d1', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 18, 'BangFire', true, '789588336&show_for_all=390cc84100', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 18, 'BangFire', true, '789592433&show_for_all=9f37c1ecf9', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 18, 'BangFire', true, '789601393&show_for_all=7f971e6414', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 18, 'BangFire', true, '789609878&show_for_all=3caae084ca', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 18, 'BangFire', true, '789613856&show_for_all=3f2425142a', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 18, 'BangFire', true, '779641499&show_for_all=a5c9e454dd', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 18, 'BangFire', true, '779644700&show_for_all=533f7fcff7', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 18, 'BangFire', true, '779646174&show_for_all=a644128603', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 18, 'BangFire', true, '779653037&show_for_all=ff7a2c6bf6', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 18, 'BangFire', true, '779655735&show_for_all=3ca388a9b5', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 18, 'BangFire', true, '779657699&show_for_all=9d10ce77ad', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 18, 'BangFire', true, '779689246&show_for_all=0c356d06bd', 'second'),
    new Descriptor(e_m.witch, 3, 0, 18, 'BangFire', true, '779705856&show_for_all=27dee4f57a', 'second'),
    new Descriptor(e_m.furies, 3, 0, 18, 'BangFire', true, '779708127&show_for_all=86e665ea9f', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 18, 'BangFire', true, '779710579&show_for_all=122a5759fc', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 18, 'BangFire', true, '779771142&show_for_all=694ae77b33', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 18, 'BangFire', true, '779772526&show_for_all=3a398556a4', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 18, 'BangFire', true, '779773836&show_for_all=f5caedad26', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 18, 'BangFire', true, '779775143&show_for_all=915555990d', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 18, 'BangFire', true, '779776586&show_for_all=cb6586b004', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 18, 'BangFire', true, '779777751&show_for_all=7456d35598', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 18, 'BangFire', true, '779779772&show_for_all=d9e252c59f', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 18, 'BangFire', true, '779784165&show_for_all=1b40482e3b', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 18, 'BangFire', true, '779786463&show_for_all=88313aae21', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 18, 'BangFire', true, '779801199&show_for_all=97a00b33de', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 18, 'BangFire', true, '779824838&show_for_all=4aea953f5a', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 18, 'BangFire', true, '779848193&show_for_all=1fe44cdacf', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 18, 'BangFire', true, '779851618&show_for_all=30a9b147f2', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 18, 'BangFire', true, '779852754&show_for_all=5d7810b782', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 18, 'BangFire', true, '779957863&show_for_all=034bc4b3be', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 18, 'BangFire', true, '779972104&show_for_all=062296aed3', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 18, 'BangFire', true, '784131982&show_for_all=88e72ee5bd', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 18, 'BangFire', true, '784133522&show_for_all=319d537870', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 18, 'BangFire', true, '784135097&show_for_all=f639df3270', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 18, 'BangFire', true, '779975451&show_for_all=f6966b0537', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 18, 'BangFire', true, '779976611&show_for_all=81760d88a8', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 18, 'BangFire', true, '784138602&show_for_all=c4e093939c', 'second'),
    new Descriptor(e_m.witch, 3, 1, 18, 'BangFire', true, '779980423&show_for_all=0ee239c7c7', 'second'),
    new Descriptor(e_m.furies, 3, 1, 18, 'BangFire', true, '784140213&show_for_all=394ce94968', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 18, 'BangFire', true, '779984323&show_for_all=7e03aa4478', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 18, 'BangFire', true, '784142833&show_for_all=f44cc95b47', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 18, 'BangFire', true, '779988191&show_for_all=f80b45b2fb', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 18, 'BangFire', true, '784145010&show_for_all=66b4b8ad46', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 18, 'BangFire', true, '784146229&show_for_all=e7b00dcdee', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 18, 'BangFire', true, '784147420&show_for_all=e7bf23bde4', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 18, 'BangFire', true, '779994848&show_for_all=68e321738d', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 18, 'BangFire', true, '784162440&show_for_all=dcaaa8f1c7', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 18, 'BangFire', true, '779997679&show_for_all=8d9285196d', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 18, 'BangFire', true, '779998444&show_for_all=51a48bdeb2', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 18, 'BangFire', true, '780013624&show_for_all=1c8581eccb', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 18, 'BangFire', true, '780022349&show_for_all=a0ed485330', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 18, 'BangFire', true, '780009370&show_for_all=db453fb4b3', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 18, 'BangFire', true, '780014256&show_for_all=189e7cc018', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 18, 'BangFire', true, '780028027&show_for_all=834de5d45a', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 18, 'BangFire', true, '783217789&show_for_all=82d89f5c66', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 18, 'BangFire', true, '783223770&show_for_all=32fc9be095', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 18, 'BangFire', true, '783225690&show_for_all=079cbeb391', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 18, 'BangFire', true, '783228133&show_for_all=4435e24c9e', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 18, 'BangFire', true, '783346722&show_for_all=628637bc90', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 18, 'BangFire', true, '783348813&show_for_all=54e2863104', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 18, 'BangFire', true, '783351994&show_for_all=37e9c6da00', 'second'),
    new Descriptor(e_m.furies, 4, 0, 18, 'BangFire', true, '783353549&show_for_all=f5cea5da57', 'second'),
    new Descriptor(e_m.witch, 4, 0, 18, 'BangFire', true, '783354802&show_for_all=8457469ac3', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 18, 'BangFire', true, '783356155&show_for_all=9406e016f8', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 18, 'BangFire', true, '783358103&show_for_all=e8276dc181', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 18, 'BangFire', true, '783360176&show_for_all=2f702c847d', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 18, 'BangFire', true, '783361460&show_for_all=193fbd763c', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 18, 'BangFire', true, '783362908&show_for_all=3bba0b953c', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 18, 'BangFire', true, '783365582&show_for_all=df300c9ca7', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 18, 'BangFire', true, '783366762&show_for_all=35d2d603fe', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 18, 'BangFire', true, '783368753&show_for_all=50d60ebb92', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 18, 'BangFire', true, '783370324&show_for_all=221d442573', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 18, 'BangFire', true, '783372044&show_for_all=ce4ef9da31', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 18, 'BangFire', true, '783374096&show_for_all=34488aa755', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 18, 'BangFire', true, '783377017&show_for_all=e656cd8276', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 18, 'BangFire', true, '783378569&show_for_all=abcdc36ed2', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 18, 'BangFire', true, '783382371&show_for_all=4b41a118e4', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 18, 'BangFire', true, '783386042&show_for_all=8b26a29a0f', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 18, 'BangFire', true, '783044352&show_for_all=3d56f1b461', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 18, 'BangFire', true, '783042186&show_for_all=abaee74d05', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 18, 'BangFire', true, '783046985&show_for_all=a576c4183e', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 18, 'BangFire', true, '783086100&show_for_all=045cc26f5a', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 18, 'BangFire', true, '783087787&show_for_all=f86d9a45e8', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'BangFire', true, '783089917&show_for_all=cdec73fd27', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 18, 'BangFire', true, '783091147&show_for_all=a715377ea7', 'second'),
    new Descriptor(e_m.furies, 4, 1, 18, 'BangFire', true, '783092334&show_for_all=0a69adb2cb', 'second'),
    new Descriptor(e_m.witch, 4, 1, 18, 'BangFire', true, '783095227&show_for_all=d4bdc3f8e5', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 18, 'BangFire', true, '783108825&show_for_all=06c7c63d86', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 18, 'BangFire', true, '783164467&show_for_all=3b2e2108c4', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 18, 'BangFire', true, '783166057&show_for_all=9825cb07f1', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 18, 'BangFire', true, '783167519&show_for_all=b45f500b41', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 18, 'BangFire', true, '783169398&show_for_all=c1429837ae', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 18, 'BangFire', true, '783170968&show_for_all=b7b39ea63c', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 18, 'BangFire', true, '783172005&show_for_all=3fe245932a', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 18, 'BangFire', true, '783172944&show_for_all=c83664b157', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 18, 'BangFire', true, '783173832&show_for_all=e683f3501b', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 18, 'BangFire', true, '783190578&show_for_all=4dcf816438', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 18, 'BangFire', true, '783191853&show_for_all=90c1c1bb0a', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 18, 'BangFire', true, '783194136&show_for_all=10c461c5b5', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 18, 'BangFire', true, '783195201&show_for_all=306333e7be', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 18, 'BangFire', true, '783196427&show_for_all=2a1dec8ac4', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 18, 'BangFire', true, '783199289&show_for_all=7e4d99847d', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 18, 'BangFire', true, '819469929&show_for_all=cf9e6c2f97', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 18, 'BangFire', true, '819467787&show_for_all=7e4cd6c8af', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 18, 'BangFire', true, '819468965&show_for_all=e69ba30601', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 18, 'BangFire', true, '819473305&show_for_all=b572f7252f', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 18, 'BangFire', true, '819474600&show_for_all=00a85ef8a5', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 18, 'BangFire', true, '819476327&show_for_all=527aa5504b', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 18, 'BangFire', true, '819477582&show_for_all=f696afbb44', 'second'),
    new Descriptor(e_m.furies, 5, 0, 18, 'BangFire', true, '819479341&show_for_all=98a64d11b6', 'second'),
    new Descriptor(e_m.witch, 5, 0, 18, 'BangFire', true, '819487418&show_for_all=6f8ad3bbe6', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 18, 'BangFire', true, '819488874&show_for_all=fed3e4a50d', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 18, 'BangFire', true, '819490691&show_for_all=ced0a06fa1', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 18, 'BangFire', true, '819492415&show_for_all=b9b803487d', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 18, 'BangFire', true, '819493554&show_for_all=01573d85e8', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 18, 'BangFire', true, '819497984&show_for_all=fa2687d3fe', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 18, 'BangFire', true, '819499196&show_for_all=2787d8658d', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 18, 'BangFire', true, '819501472&show_for_all=534b960812', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 18, 'BangFire', true, '819503357&show_for_all=d5ae7111a8', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 18, 'BangFire', true, '819504668&show_for_all=be37695cdb', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 18, 'BangFire', true, '819506074&show_for_all=e592604c7a', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 18, 'BangFire', true, '819529475&show_for_all=26d2e4201b', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 18, 'BangFire', true, '819532231&show_for_all=7c0f2b06af', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 18, 'BangFire', true, '819535700&show_for_all=79bcfb31c6', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 18, 'BangFire', true, '819536657&show_for_all=8617219a2b', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 18, 'BangFire', true, '819538805&show_for_all=7dc881674a', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 18, 'BangFire', true, '776809848&show_for_all=ffb3dd9263', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 18, 'BangFire', true, '776808581&show_for_all=ede0c5ea4e', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 18, 'BangFire', true, '776808141&show_for_all=4234f9a359', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 18, 'BangFire', true, '776807703&show_for_all=6a07a80c15', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 18, 'BangFire', true, '776806680&show_for_all=fe3c0bfa61', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 18, 'BangFire', true, '776806101&show_for_all=142c624692', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 18, 'BangFire', true, '776805731&show_for_all=853f509e69', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 18, 'BangFire', true, '776805180&show_for_all=552e5bda2d', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 18, 'BangFire', true, '776804474&show_for_all=138d0412be', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 18, 'BangFire', true, '776803931&show_for_all=7739fb9b59', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 18, 'BangFire', true, '776802916&show_for_all=99598ef0c4', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 18, 'BangFire', true, '776798069&show_for_all=2c72bea91e', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 18, 'BangFire', true, '776797543&show_for_all=49f7596e05', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 18, 'BangFire', true, '776796600&show_for_all=28a4d53dd0', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 18, 'BangFire', true, '776795057&show_for_all=83cb2afec4', 'second'),
    new Descriptor(e_m.furies, 5, 1, 18, 'BangFire', true, '776794337&show_for_all=acb1da800f', 'second'),
    new Descriptor(e_m.witch, 5, 1, 18, 'BangFire', true, '776793279&show_for_all=5b6fc2f687', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 18, 'BangFire', true, '776792516&show_for_all=19bd79a773', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 18, 'BangFire', true, '776791284&show_for_all=cc3666674a', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 18, 'BangFire', true, '776743878&show_for_all=3fce6d60bf', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 18, 'BangFire', true, '776743604&show_for_all=eb1d513c36', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 18, 'BangFire', true, '776742968&show_for_all=8bbe34c2f1', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 18, 'BangFire', true, '776742326&show_for_all=721cd00645', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 18, 'BangFire', true, '776741147&show_for_all=ef85f851dd', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 18, 'BangFire', true, '819794542&show_for_all=eb25d8bbbf', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 18, 'BangFire', true, '819799407&show_for_all=25f7953a61', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 18, 'BangFire', true, '819801113&show_for_all=e6a7ca4531', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 18, 'BangFire', true, '819803319&show_for_all=63f420831f', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 18, 'BangFire', true, '819805102&show_for_all=fec61feb2f', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 18, 'BangFire', true, '819836066&show_for_all=f60973f18e', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 18, 'BangFire', true, '819837576&show_for_all=2b9b97aea5', 'second'),
    new Descriptor(e_m.furies, 5, 2, 18, 'BangFire', true, '819839395&show_for_all=8857ef37da', 'second'),
    new Descriptor(e_m.witch, 5, 2, 18, 'BangFire', true, '819841436&show_for_all=ff8624e3bc', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 18, 'BangFire', true, '819842620&show_for_all=a829e1d153', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 18, 'BangFire', true, '819845722&show_for_all=6be957d798', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 18, 'BangFire', true, '819847788&show_for_all=49cc167733', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 18, 'BangFire', true, '819851031&show_for_all=04df4fdc37', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 18, 'BangFire', true, '819929081&show_for_all=89429ed18b', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 18, 'BangFire', true, '819930855&show_for_all=5991fd8407', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 18, 'BangFire', true, '819932478&show_for_all=7084327697', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 18, 'BangFire', true, '819933888&show_for_all=e3110d2500', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 18, 'BangFire', true, '819935315&show_for_all=eb14ab0660', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 18, 'BangFire', true, '819937433&show_for_all=dfbcfecadb', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 18, 'BangFire', true, '819938648&show_for_all=ddbe5f92a6', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 18, 'BangFire', true, '819942288&show_for_all=97765ea361', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 18, 'BangFire', true, '819945982&show_for_all=48a3972d7a', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 18, 'BangFire', true, '819948447&show_for_all=11ef1b78d9', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 18, 'BangFire', true, '819951426&show_for_all=187ba3b17f', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 18, 'BangFire', true, '787188795&show_for_all=88cb68e10c', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 18, 'BangFire', true, '787184456&show_for_all=df5cf2d4ab', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 18, 'BangFire', true, '787185848&show_for_all=b20e49463a', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 18, 'BangFire', true, '787191261&show_for_all=cb5d8c2ce6', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 18, 'BangFire', true, '787192434&show_for_all=e9e8580129', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 18, 'BangFire', true, '787194228&show_for_all=b730485aa6', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 18, 'BangFire', true, '787195073&show_for_all=7952493322', 'second'),
    new Descriptor(e_m.witch, 6, 0, 18, 'BangFire', true, '787196198&show_for_all=14d3280af4', 'second'),
    new Descriptor(e_m.furies, 6, 0, 18, 'BangFire', true, '787198479&show_for_all=79d86c99e4', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 18, 'BangFire', true, '787200102&show_for_all=50a6312f99', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 18, 'BangFire', true, '787202037&show_for_all=8d2f104c09', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 18, 'BangFire', true, '787203808&show_for_all=c2362911b9', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 18, 'BangFire', true, '787204451&show_for_all=1432d780d8', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 18, 'BangFire', true, '787205728&show_for_all=b44fd7661a', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 18, 'BangFire', true, '787207572&show_for_all=a06c37fb7c', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 18, 'BangFire', true, '787209486&show_for_all=86eaa4d066', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 18, 'BangFire', true, '787211139&show_for_all=2edc0d9a54', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 18, 'BangFire', true, '787213096&show_for_all=c1297ec78b', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 18, 'BangFire', true, '787214334&show_for_all=37adc55223', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 18, 'BangFire', true, '787216475&show_for_all=70b10200b2', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 18, 'BangFire', true, '787221999&show_for_all=9e86a30eb5', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 18, 'BangFire', true, '787223665&show_for_all=8b2c17af4f', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 18, 'BangFire', true, '787225868&show_for_all=fe2105f5c6', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 18, 'BangFire', true, '787227016&show_for_all=71cc20c5d8', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 18, 'BangFire', true, '786922999&show_for_all=ad7d4b59b7', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 18, 'BangFire', true, '786925662&show_for_all=e84e942c76', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 18, 'BangFire', true, '786928636&show_for_all=3227715767', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 18, 'BangFire', true, '786929773&show_for_all=0ef50a8599', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 18, 'BangFire', true, '786930784&show_for_all=999f1126b5', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 18, 'BangFire', true, '786932278&show_for_all=46b793407c', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 18, 'BangFire', true, '786933763&show_for_all=0d5b7428b4', 'second'),
    new Descriptor(e_m.furies, 6, 1, 18, 'BangFire', true, '786935195&show_for_all=c2c3ca7416', 'second'),
    new Descriptor(e_m.witch, 6, 1, 18, 'BangFire', true, '786937377&show_for_all=dc562dbecc', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 18, 'BangFire', true, '786938298&show_for_all=3e59e2c3c1', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 18, 'BangFire', true, '786939881&show_for_all=441d2fa278', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 18, 'BangFire', true, '786941811&show_for_all=08a710bba6', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 18, 'BangFire', true, '786944936&show_for_all=c76ee5d237', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 18, 'BangFire', true, '786947030&show_for_all=1272e0a085', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 18, 'BangFire', true, '786951852&show_for_all=f9a15df819', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 18, 'BangFire', true, '786952877&show_for_all=dddd57cc72', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 18, 'BangFire', true, '786954481&show_for_all=b1b7f60d0f', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 18, 'BangFire', true, '786955867&show_for_all=de4f7540c2', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 18, 'BangFire', true, '786957074&show_for_all=6694c6af1f', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 18, 'BangFire', true, '786958861&show_for_all=df00dc7817', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 18, 'BangFire', true, '786960220&show_for_all=c2a7689d7f', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 18, 'BangFire', true, '786964098&show_for_all=b2209e503a', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 18, 'BangFire', true, '786965692&show_for_all=2c604e2c51', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 18, 'BangFire', true, '786968608&show_for_all=e79d57f611', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 18, 'BangFire', true, '785383818&show_for_all=abf81e2ade', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 18, 'BangFire', true, '785386059&show_for_all=6c3c3f7ac9', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 18, 'BangFire', true, '785388323&show_for_all=7fd9204ddb', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 18, 'BangFire', true, '785389409&show_for_all=1e9ba6be16', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 18, 'BangFire', true, '785391261&show_for_all=c501186e7e', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 18, 'BangFire', true, '785393246&show_for_all=c77399a114', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 18, 'BangFire', true, '785394080&show_for_all=f058bc990b', 'second'),
    new Descriptor(e_m.witch, 7, 0, 18, 'BangFire', true, '785395136&show_for_all=6cbdfccf6b', 'second'),
    new Descriptor(e_m.furies, 7, 0, 18, 'BangFire', true, '785396430&show_for_all=0d2ba414b5', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 18, 'BangFire', true, '785398023&show_for_all=9b2354924e', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 18, 'BangFire', true, '785399664&show_for_all=870f6a0e0b', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 18, 'BangFire', true, '785401405&show_for_all=1269b941e0', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 18, 'BangFire', true, '785405750&show_for_all=5687446258', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 18, 'BangFire', true, '785408674&show_for_all=ac664ee69b', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 18, 'BangFire', true, '785410928&show_for_all=71432e9eee', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 18, 'BangFire', true, '785412148&show_for_all=c6f68499e3', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 18, 'BangFire', true, '785413341&show_for_all=d401eb00ae', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 18, 'BangFire', true, '785415127&show_for_all=db1939c5f6', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 18, 'BangFire', true, '785417625&show_for_all=aecb00d11f', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 18, 'BangFire', true, '785419492&show_for_all=b1e446791a', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 18, 'BangFire', true, '785421875&show_for_all=860268f6c9', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 18, 'BangFire', true, '785423147&show_for_all=649aa7d6ea', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 18, 'BangFire', true, '785423971&show_for_all=6276cc3d59', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 18, 'BangFire', true, '785426370&show_for_all=d322550822', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 18, 'BangFire', true, '784966832&show_for_all=c2ce56cb92', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 18, 'BangFire', true, '785062375&show_for_all=846c2a9a1b', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 18, 'BangFire', true, '785063955&show_for_all=8de4be6727', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 18, 'BangFire', true, '785065515&show_for_all=214fbe32a5', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 18, 'BangFire', true, '785066469&show_for_all=948fb7fc40', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 18, 'BangFire', true, '785069670&show_for_all=5d3f2cf05e', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 18, 'BangFire', true, '785071013&show_for_all=ad4a4b47ee', 'second'),
    new Descriptor(e_m.witch, 7, 1, 18, 'BangFire', true, '785071973&show_for_all=81f5b2d7ea', 'second'),
    new Descriptor(e_m.furies, 7, 1, 18, 'BangFire', true, '785073392&show_for_all=2a85387c85', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 18, 'BangFire', true, '785075470&show_for_all=7044d26cac', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 18, 'BangFire', true, '785085376&show_for_all=e7908cb26d', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 18, 'BangFire', true, '785087433&show_for_all=0a1b6c5a59', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 18, 'BangFire', true, '785088773&show_for_all=034ab98330', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 18, 'BangFire', true, '785090821&show_for_all=bf71996a05', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 18, 'BangFire', true, '785101341&show_for_all=99a8f54a11', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 18, 'BangFire', true, '785104290&show_for_all=8d1b1fdaf5', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 18, 'BangFire', true, '785113514&show_for_all=76d4352cbc', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 18, 'BangFire', true, '785114771&show_for_all=a02e188cb9', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 18, 'BangFire', true, '785116130&show_for_all=8c41bc911f', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 18, 'BangFire', true, '785118832&show_for_all=57e19fd690', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 18, 'BangFire', true, '785121789&show_for_all=eda5dc8f98', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 18, 'BangFire', true, '785123422&show_for_all=06ce978dd4', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 18, 'BangFire', true, '785124656&show_for_all=3d9fc6aecb', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 18, 'BangFire', true, '785128540&show_for_all=ad176a1384', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 18, 'BangFire', true, '812184397&show_for_all=3aaf0b4fef', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 18, 'BangFire', true, '812183019&show_for_all=f9bf9c3961', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 18, 'BangFire', true, '812187650&show_for_all=35d4f7f7bb', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 18, 'BangFire', true, '812186461&show_for_all=bb14953cce', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 18, 'BangFire', true, '812188730&show_for_all=d2eb8f7b92', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 18, 'BangFire', true, '812190194&show_for_all=bfa168a3cf', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 18, 'BangFire', true, '812483550&show_for_all=3623e22be5', 'second'),
    new Descriptor(e_m.furies, 8, 0, 18, 'BangFire', true, '812484509&show_for_all=4f252d5d8d', 'second'),
    new Descriptor(e_m.witch, 8, 0, 18, 'BangFire', true, '812485719&show_for_all=700ff05268', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 18, 'BangFire', true, '812486902&show_for_all=1ac3d398a4', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 18, 'BangFire', true, '812489508&show_for_all=772bea3d26', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 18, 'BangFire', true, '812491522&show_for_all=86b38b3620', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 18, 'BangFire', true, '812492560&show_for_all=7b796b8048', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 18, 'BangFire', true, '812493988&show_for_all=6b81ae7de0', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 18, 'BangFire', true, '812495935&show_for_all=d334fad3ca', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 18, 'BangFire', true, '812539879&show_for_all=7a260934f7', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'BangFire', true, '812546467&show_for_all=f33939ba9b', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 18, 'BangFire', true, '812547748&show_for_all=cf65829060', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 18, 'BangFire', true, '812725132&show_for_all=f60334cda3', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 18, 'BangFire', true, '812727728&show_for_all=3f287fb89e', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 18, 'BangFire', true, '812751714&show_for_all=bab173113e', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 18, 'BangFire', true, '812757332&show_for_all=0256a4150f', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 18, 'BangFire', true, '812758822&show_for_all=0b0cbb6f29', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 18, 'BangFire', true, '812761417&show_for_all=886f10fa0a', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 18, 'BangFire', true, '781271934&show_for_all=98d2c70296', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 18, 'BangFire', true, '781133800&show_for_all=c6e96c02e7', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 18, 'BangFire', true, '781278288&show_for_all=e1684b623b', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 18, 'BangFire', true, '781280646&show_for_all=f65669c466', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 18, 'BangFire', true, '781282118&show_for_all=6cba373232', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 18, 'BangFire', true, '781144734&show_for_all=5f30b65554', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 18, 'BangFire', true, '781285928&show_for_all=e3dce2250b', 'second'),
    new Descriptor(e_m.witch, 9, 0, 18, 'BangFire', true, '781287062&show_for_all=7be40b472a', 'second'),
    new Descriptor(e_m.furies, 9, 0, 18, 'BangFire', true, '781152232&show_for_all=f9d5cb19ec', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 18, 'BangFire', true, '781289177&show_for_all=fb99c75f68', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 18, 'BangFire', true, '781290468&show_for_all=f693e8108a', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 18, 'BangFire', true, '781291501&show_for_all=2fa5b9f269', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 18, 'BangFire', true, '781159900&show_for_all=77422984bc', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 18, 'BangFire', true, '781296336&show_for_all=615dcb9a8b', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 18, 'BangFire', true, '781299179&show_for_all=4780fcfc14', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 18, 'BangFire', true, '781301227&show_for_all=5eaf65e846', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 18, 'BangFire', true, '781302838&show_for_all=4be8573b46', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 18, 'BangFire', true, '781305729&show_for_all=ae5e97ebc9', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 18, 'BangFire', true, '781307454&show_for_all=13bccf9960', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 18, 'BangFire', true, '781311559&show_for_all=71639dd50e', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 18, 'BangFire', true, '781317607&show_for_all=fb67b4fd3d', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 18, 'BangFire', true, '781322773&show_for_all=e249d03117', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 18, 'BangFire', true, '781326441&show_for_all=184322fecc', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 18, 'BangFire', true, '781328348&show_for_all=067ae3b0f8', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 19, 'Balmung', true, '794817431&show_for_all=7ee758228a', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 19, 'Balmung', true, '794816170&show_for_all=6b7d3fb518', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 19, 'Balmung', true, '794815339&show_for_all=36489834fa', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 19, 'Balmung', true, '794815029&show_for_all=e898da964a', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 19, 'Balmung', true, '794814691&show_for_all=4254bcd0c3', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 19, 'Balmung', true, '794814127&show_for_all=cf43bd54d8', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 19, 'Balmung', true, '794813512&show_for_all=eacd00e720', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 19, 'Balmung', true, '794812763&show_for_all=90660fa906', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 19, 'Balmung', true, '794812132&show_for_all=ebc9edc818', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 19, 'Balmung', true, '794811642&show_for_all=3118aa0642', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 19, 'Balmung', true, '794805641&show_for_all=f8bd529531', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 19, 'Balmung', true, '794804464&show_for_all=1c4174f30c', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 19, 'Balmung', true, '794803860&show_for_all=f5e843b995', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 19, 'Balmung', true, '794803061&show_for_all=9c00c6d32e', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 19, 'Balmung', true, '794800328&show_for_all=7806fcc5f0', 'second'),
    new Descriptor(e_m.witch, 6, 1, 19, 'Balmung', true, '794799906&show_for_all=b0eabca8ab', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Balmung', true, '794799208&show_for_all=d95988ce85', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Balmung', false, '794798204&show_for_all=97d19f35a4', 'second'),
    new Descriptor(e_m.furies, 6, 1, 19, 'Balmung', false, '794797468&show_for_all=f5eb422a9c', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 19, 'Balmung', true, '794796819&show_for_all=ffbb25b4db', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 19, 'Balmung', true, '794796356&show_for_all=c734189846', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 19, 'Balmung', true, '794793541&show_for_all=8297683c7f', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 19, 'Balmung', true, '794792601&show_for_all=9c0ec7f879', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 19, 'Balmung', false, '794791988&show_for_all=8ad33eeabf', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 19, 'Balmung', true, '794791403&show_for_all=3f74bf7459', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 19, 'Balmung', true, '794789584&show_for_all=8c408b656c', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 19, 'Balmung', true, '794788727&show_for_all=6441e11e03', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Balmung', true, '783830740&show_for_all=b4db686372', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 19, 'Balmung', false, '783829893&show_for_all=e73802142c', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 19, 'Balmung', true, '783829376&show_for_all=0eb6d04d87', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 19, 'Balmung', true, '783828895&show_for_all=fc22f07035', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Balmung', true, '783827849&show_for_all=5b34e212cf', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 19, 'Balmung', true, '783827135&show_for_all=70f8d83c85', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 19, 'Balmung', true, '783826770&show_for_all=4f63b65722', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 19, 'Balmung', true, '783826374&show_for_all=3558866e99', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 19, 'Balmung', true, '783825705&show_for_all=429cdee790', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 19, 'Balmung', true, '783825222&show_for_all=c718a274bb', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 19, 'Balmung', true, '783824537&show_for_all=3fa624f38f', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Balmung', true, '783823819&show_for_all=41432c4fd4', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 19, 'Balmung', true, '783823363&show_for_all=5c7df5e0fd', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 19, 'Balmung', true, '783822669&show_for_all=f4eb25848e', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 19, 'Balmung', true, '783822271&show_for_all=462804d2c1', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 19, 'Balmung', true, '783821497&show_for_all=28f3cc4925', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 19, 'Balmung', true, '783820491&show_for_all=c8b1c0b8e4', 'second'),
    new Descriptor(e_m.witch, 5, 2, 19, 'Balmung', true, '783820184&show_for_all=e01b9f23fa', 'second'),
    new Descriptor(e_m.furies, 5, 2, 19, 'Balmung', true, '783819560&show_for_all=2c1a5c06e7', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 19, 'Balmung', true, '783819200&show_for_all=3fd7ce9fa6', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 19, 'Balmung', true, '783818827&show_for_all=7bd5b711f7', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 19, 'Balmung', true, '783818033&show_for_all=4bb41bf015', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 19, 'Balmung', true, '783817635&show_for_all=32ccb91f0a', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 19, 'Balmung', true, '783817105&show_for_all=90688d0797', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 19, 'Balmung', true, '783816414&show_for_all=df7633accb', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 19, 'Balmung', true, '783815424&show_for_all=c622a25583', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 19, 'Balmung', true, '783346957&show_for_all=d7425d1724', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 19, 'Balmung', true, '783346036&show_for_all=8dd0ba8547', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Balmung', true, '783345375&show_for_all=58485c27e9', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 19, 'Balmung', true, '783345028&show_for_all=49c6f14104', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Balmung', true, '783344699&show_for_all=271041c52b', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 19, 'Balmung', true, '783344234&show_for_all=8cb4b4c11f', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 19, 'Balmung', true, '783343981&show_for_all=a70804e68d', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 19, 'Balmung', true, '783343658&show_for_all=6f61c8af46', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 19, 'Balmung', true, '783343359&show_for_all=ec89f0b191', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 19, 'Balmung', true, '783342888&show_for_all=c280b0aa07', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 19, 'Balmung', true, '783342547&show_for_all=d59bdf4727', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 19, 'Balmung', true, '783342158&show_for_all=2e5f2bf570', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 19, 'Balmung', true, '783341592&show_for_all=ab227be56d', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 19, 'Balmung', true, '783341326&show_for_all=c20e3361e7', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 19, 'Balmung', true, '783341032&show_for_all=200ecfb891', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 19, 'Balmung', true, '783340259&show_for_all=eff80c5474', 'second'),
    new Descriptor(e_m.furies, 5, 0, 19, 'Balmung', true, '783339315&show_for_all=d29b73dbb8', 'second'),
    new Descriptor(e_m.witch, 5, 0, 19, 'Balmung', true, '783339052&show_for_all=349627fd22', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 19, 'Balmung', true, '783338783&show_for_all=5727cf91df', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 19, 'Balmung', true, '783338456&show_for_all=b88a8dbd76', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 19, 'Balmung', true, '783337874&show_for_all=a185fcd240', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 19, 'Balmung', true, '783337063&show_for_all=e8b0612c80', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 19, 'Balmung', true, '783336870&show_for_all=fd9dddac31', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 19, 'Balmung', true, '783336604&show_for_all=f2d5989bcf', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 19, 'Balmung', true, '783335968&show_for_all=56ae64c200', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 19, 'Balmung', true, '783226443&show_for_all=874180f413', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 19, 'Balmung', true, '783226098&show_for_all=ebe1c31883', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Balmung', true, '783225407&show_for_all=5a34266b7c', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Balmung', true, '783224511&show_for_all=c0be36d3eb', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Balmung', false, '783223865&show_for_all=883aa66e77', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Balmung', false, '783223686&show_for_all=dbec58f860', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Balmung', false, '783223029&show_for_all=623e918ae5', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 19, 'Balmung', false, '783222517&show_for_all=87f614c26f', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 19, 'Balmung', true, '783221785&show_for_all=27866a4c0a', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 19, 'Balmung', true, '783220535&show_for_all=a19496b765', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 19, 'Balmung', true, '783219913&show_for_all=6e0d728a35', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 19, 'Balmung', true, '783219423&show_for_all=037e51a6d8', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 19, 'Balmung', true, '783219029&show_for_all=e753c011d3', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 19, 'Balmung', true, '783218523&show_for_all=e87b35658d', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 19, 'Balmung', true, '783217819&show_for_all=4bc0cfa250', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 19, 'Balmung', true, '783217387&show_for_all=ebaa913e96', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 19, 'Balmung', true, '783216544&show_for_all=33034d38df', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 19, 'Balmung', true, '783215979&show_for_all=858db5a2e7', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 19, 'Balmung', true, '783214820&show_for_all=b0e10d578d', 'second'),
    new Descriptor(e_m.witch, 5, 1, 19, 'Balmung', true, '783214466&show_for_all=c1993a1fe3', 'second'),
    new Descriptor(e_m.furies, 5, 1, 19, 'Balmung', true, '783213687&show_for_all=01ce7749be', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 19, 'Balmung', true, '783212475&show_for_all=dfc4111bfd', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 19, 'Balmung', true, '783212131&show_for_all=64467b267d', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 19, 'Balmung', true, '783211614&show_for_all=b151791f1f', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 19, 'Balmung', true, '783211298&show_for_all=f043659369', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Balmung', true, '783210466&show_for_all=3f0bd6f5ef', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Balmung', false, '783209717&show_for_all=614bec12f6', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Balmung', false, '783209130&show_for_all=b426e35af2', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 19, 'Balmung', false, '783208719&show_for_all=7ff3192e13', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Balmung', true, '783208413&show_for_all=477d2eefe9', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 19, 'Balmung', false, '783208115&show_for_all=9a7736040e', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 19, 'Balmung', true, '783207319&show_for_all=cd748ce860', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 19, 'Balmung', true, '783205709&show_for_all=7e23cd3e2a', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 19, 'Balmung', true, '783205005&show_for_all=4e7ae0dd6a', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 19, 'Balmung', true, '783204525&show_for_all=28f1dcc35b', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 19, 'Balmung', true, '783202411&show_for_all=23a3fc26e7', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 19, 'Balmung', true, '783201914&show_for_all=b8dc3ba2cf', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 19, 'Balmung', true, '783201370&show_for_all=b5552cc0c0', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 19, 'Balmung', true, '783200965&show_for_all=8d3317c4ca', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 19, 'Balmung', true, '783200379&show_for_all=bacf58e9b4', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 19, 'Balmung', true, '783199828&show_for_all=7725f7826c', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 19, 'Balmung', true, '783199286&show_for_all=e2fcc564d1', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 19, 'Balmung', true, '783198761&show_for_all=668ff794cf', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 19, 'Balmung', true, '783198327&show_for_all=85051d3584', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 19, 'Balmung', true, '783197433&show_for_all=c4b0738813', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 19, 'Balmung', true, '783196206&show_for_all=46b7c65466', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 19, 'Balmung', true, '783195486&show_for_all=dd06cc266d', 'second'),
    new Descriptor(e_m.witch, 1, 0, 19, 'Balmung', true, '783195150&show_for_all=1722376919', 'second'),
    new Descriptor(e_m.furies, 1, 0, 19, 'Balmung', true, '783194761&show_for_all=345e42e641', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 19, 'Balmung', true, '783194242&show_for_all=7b6cd547ba', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 19, 'Balmung', true, '783193850&show_for_all=241f793a5a', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 19, 'Balmung', true, '783192855&show_for_all=7210422ed6', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 19, 'Balmung', true, '783192555&show_for_all=9963c26bdc', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 19, 'Balmung', true, '783192162&show_for_all=81c9c7f8eb', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 19, 'Balmung', true, '783191750&show_for_all=582201e77c', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 19, 'Balmung', true, '783190755&show_for_all=0cafce839e', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 19, 'Balmung', true, '783133702&show_for_all=42029eab20', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 19, 'Balmung', true, '783133470&show_for_all=5694f33f1e', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 19, 'Balmung', true, '783133085&show_for_all=5f946a7f05', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 19, 'Balmung', true, '783132098&show_for_all=82732ffcf3', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 19, 'Balmung', true, '783131045&show_for_all=7e5d93c2a0', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 19, 'Balmung', true, '783130125&show_for_all=be4c5ec1d2', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 19, 'Balmung', true, '783129489&show_for_all=ae2b23cf9a', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 19, 'Balmung', true, '783129045&show_for_all=3cafa235fb', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 19, 'Balmung', true, '783128532&show_for_all=950b56945a', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 19, 'Balmung', true, '783128041&show_for_all=582ab7e9d6', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 19, 'Balmung', true, '783127622&show_for_all=72f9a69949', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 19, 'Balmung', true, '783127065&show_for_all=5747fba066', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 19, 'Balmung', true, '783126592&show_for_all=9dfc5d1bab', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 19, 'Balmung', true, '783125938&show_for_all=2a08986258', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 19, 'Balmung', true, '783125443&show_for_all=7e5fe35d7e', 'second'),
    new Descriptor(e_m.witch, 1, 1, 19, 'Balmung', true, '783125047&show_for_all=63a2dc780e', 'second'),
    new Descriptor(e_m.furies, 1, 1, 19, 'Balmung', true, '783124477&show_for_all=99978790c7', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 19, 'Balmung', true, '783124049&show_for_all=10d1ea390c', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 19, 'Balmung', true, '783123614&show_for_all=7b3a4005dc', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 19, 'Balmung', true, '783122652&show_for_all=dccccc3339', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 19, 'Balmung', true, '783122365&show_for_all=06df721d61', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 19, 'Balmung', true, '783121965&show_for_all=c5ae3b73ba', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 19, 'Balmung', true, '783121458&show_for_all=57b7ae1748', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 19, 'Balmung', true, '783120424&show_for_all=92e03f8b29', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 19, 'Balmung', true, '783082509&show_for_all=2d674b1918', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 19, 'Balmung', true, '783082015&show_for_all=d2fbb7c04e', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 19, 'Balmung', true, '783081123&show_for_all=937b845b58', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Balmung', true, '783080281&show_for_all=4cfdc720c3', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 19, 'Balmung', true, '783079962&show_for_all=6843b164a8', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 19, 'Balmung', true, '783079258&show_for_all=8680d873d3', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 19, 'Balmung', true, '783078988&show_for_all=defa5cd036', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 19, 'Balmung', true, '783078533&show_for_all=bfea1b7630', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 19, 'Balmung', true, '783078223&show_for_all=d454be80b5', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 19, 'Balmung', true, '783077892&show_for_all=c4c2f7443c', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Balmung', true, '783077314&show_for_all=1f98e83025', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 19, 'Balmung', false, '783076947&show_for_all=58fef15678', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 19, 'Balmung', true, '783076541&show_for_all=2a8caad113', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 19, 'Balmung', true, '783076116&show_for_all=e2e7ee2dc0', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 19, 'Balmung', true, '783075134&show_for_all=6a42dfffac', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 19, 'Balmung', true, '783074382&show_for_all=f6f401adee', 'second'),
    new Descriptor(e_m.witch, 4, 0, 19, 'Balmung', true, '783074059&show_for_all=8ccee1abed', 'second'),
    new Descriptor(e_m.furies, 4, 0, 19, 'Balmung', true, '783073484&show_for_all=1185647353', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 19, 'Balmung', true, '783073132&show_for_all=6656444009', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Balmung', true, '783072741&show_for_all=48bf83d269', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 19, 'Balmung', false, '783072035&show_for_all=fe78a0eaec', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 19, 'Balmung', true, '783069846&show_for_all=095076e6ed', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 19, 'Balmung', true, '783069509&show_for_all=91d26a3043', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 19, 'Balmung', true, '783068608&show_for_all=164e56bcbd', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 19, 'Balmung', true, '783068118&show_for_all=991a04fb29', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 19, 'Balmung', true, '783066899&show_for_all=ab5a3ce892', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 19, 'Balmung', true, '783028204&show_for_all=54de7ae4f0', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Balmung', true, '783027898&show_for_all=e8fc0c66e2', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 19, 'Balmung', true, '783025524&show_for_all=3a7341435d', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Balmung', true, '783024350&show_for_all=7e33723837', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 19, 'Balmung', true, '783024063&show_for_all=dd60bb5932', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 19, 'Balmung', true, '783023842&show_for_all=83b4f60fe9', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 19, 'Balmung', true, '783023337&show_for_all=3d43b371db', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 19, 'Balmung', true, '783022791&show_for_all=5ebb66bef3', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 19, 'Balmung', true, '783022436&show_for_all=3d35e097c4', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 19, 'Balmung', true, '783021492&show_for_all=1ecd0865f5', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 19, 'Balmung', true, '783021004&show_for_all=ae1dbc78b6', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 19, 'Balmung', true, '783020415&show_for_all=f6cc9792af', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Balmung', true, '783020007&show_for_all=41ad0504ce', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 19, 'Balmung', false, '783019607&show_for_all=c4a0453047', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 19, 'Balmung', true, '783018416&show_for_all=3fe80de9d6', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 19, 'Balmung', true, '783017829&show_for_all=0c5b95f3a9', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Balmung', true, '783017357&show_for_all=8ec48c232a', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Balmung', false, '783016842&show_for_all=65d5fba65f', 'second'),
    new Descriptor(e_m.furies, 4, 1, 19, 'Balmung', false, '783016291&show_for_all=64395febd2', 'second'),
    new Descriptor(e_m.witch, 4, 1, 19, 'Balmung', true, '783016101&show_for_all=62fe04fcc1', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 19, 'Balmung', true, '783015881&show_for_all=17d00196e9', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 19, 'Balmung', true, '783015273&show_for_all=810dd0ffd6', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 19, 'Balmung', true, '783014508&show_for_all=aad931fb09', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 19, 'Balmung', true, '783014184&show_for_all=2920a187d3', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 19, 'Balmung', true, '783013725&show_for_all=7cf21055b4', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 19, 'Balmung', true, '783012649&show_for_all=0580558469', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 19, 'Balmung', true, '783011515&show_for_all=e26aaee088', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', true, '781833179&show_for_all=d686c09eb4', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 19, 'Balmung', false, '781832469&show_for_all=801e9f9ff7', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Balmung', true, '781831986&show_for_all=8449177605', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 19, 'Balmung', true, '781831500&show_for_all=2e63078998', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Balmung', true, '781829851&show_for_all=e2a9f99e88', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 19, 'Balmung', true, '781829349&show_for_all=a7eca6902c', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 19, 'Balmung', false, '781828900&show_for_all=a40e86bbdc', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'Balmung', true, '781827796&show_for_all=0f8191650e', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 19, 'Balmung', false, '781826751&show_for_all=c67b45413d', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 19, 'Balmung', true, '781774928&show_for_all=360ec8fddb', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 19, 'Balmung', true, '781774387&show_for_all=779d51e8de', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'Balmung', true, '781773962&show_for_all=f23dad86ba', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 19, 'Balmung', false, '781773472&show_for_all=264d01a81e', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Balmung', true, '781772731&show_for_all=f88e19baee', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 19, 'Balmung', false, '781772228&show_for_all=b51c5eafa9', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 19, 'Balmung', true, '781771668&show_for_all=a0a1658861', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 19, 'Balmung', true, '781771071&show_for_all=c379cc540a', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Balmung', true, '781769933&show_for_all=2d752ec3e4', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 19, 'Balmung', false, '781768764&show_for_all=78e9f04c83', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 19, 'Balmung', true, '781767940&show_for_all=148a0bd609', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 19, 'Balmung', false, '781767434&show_for_all=8c751de96d', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 19, 'Balmung', true, '781766499&show_for_all=2269f21d49', 'second'),
    new Descriptor(e_m.furies, 8, 0, 19, 'Balmung', true, '781766045&show_for_all=4feeab7b69', 'second'),
    new Descriptor(e_m.witch, 8, 0, 19, 'Balmung', true, '781765821&show_for_all=02a2c3254f', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 19, 'Balmung', true, '781765319&show_for_all=3d56e8fd28', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'Balmung', true, '781764899&show_for_all=38a01703aa', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 19, 'Balmung', false, '781764445&show_for_all=19b0021c7a', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 19, 'Balmung', true, '781763833&show_for_all=d5ef0047e4', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 19, 'Balmung', true, '781763337&show_for_all=520cc4a72f', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 19, 'Balmung', true, '781762632&show_for_all=68f77492d2', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 19, 'Balmung', false, '781762126&show_for_all=ee864132dc', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 19, 'Balmung', true, '781761519&show_for_all=df9f2f8af7', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 19, 'Balmung', false, '781757810&show_for_all=128937fa7f', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 19, 'Balmung', true, '781756955&show_for_all=6f947b3618', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Balmung', true, '781705739&show_for_all=64e449aedb', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 19, 'Balmung', true, '762326630&show_for_all=f21c93d25b', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 19, 'Balmung', true, '759370369&show_for_all=9776621b5d', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'tolik', true, '820071122&show_for_all=9450eb59d4', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'tolik', true, '817114437&show_for_all=4b6ce5d97e', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 16, 'tolik', true, '781129295&show_for_all=89df7f4fea', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 16, 'tolik', false, '781123601&show_for_all=b8c7af3eb6', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'tolik', true, '830372701&show_for_all=bf6968bc90', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 17, 'tolik', true, '830370905&show_for_all=767f14e3d8', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 17, 'tolik', true, '830367768&show_for_all=7eec8957d8', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'tolik', true, '830361625&show_for_all=0703881a94', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 17, 'tolik', true, '830359294&show_for_all=0a5c3925c2', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 17, 'tolik', true, '830357580&show_for_all=c34d2190c2', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 17, 'tolik', true, '830355838&show_for_all=9306b9a8ac', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'tolik', true, '830350651&show_for_all=ee19397a22', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 17, 'tolik', true, '830349187&show_for_all=0e8ef46cde', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 17, 'tolik', true, '830348087&show_for_all=1ab9325d9d', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 17, 'tolik', true, '830347280&show_for_all=924eae20f9', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 17, 'tolik', true, '830346055&show_for_all=b1c15b09c7', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 17, 'tolik', true, '830341406&show_for_all=9c5a6f9095', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 17, 'tolik', true, '830339647&show_for_all=9a1232a27f', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 17, 'tolik', true, '830327344&show_for_all=82d1eb75f0', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 17, 'tolik', true, '830256239&show_for_all=5df530a0bb', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'tolik', true, '830254995&show_for_all=e8a5732257', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'tolik', true, '830197274&show_for_all=d7ed6157ae', 'second'),
    new Descriptor(e_m.furies, 6, 1, 17, 'tolik', true, '830196192&show_for_all=8f80da9720', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 17, 'tolik', true, '830195016&show_for_all=5f9141550a', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 17, 'tolik', true, '830194223&show_for_all=bf68acccfc', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 17, 'tolik', true, '829946405&show_for_all=817447462b', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 17, 'tolik', true, '829818231&show_for_all=b22a03b0f8', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 17, 'tolik', true, '829361521&show_for_all=533bec10c2', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'tolik', true, '816766374&show_for_all=665eadf05e', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'tolik', true, '816764401&show_for_all=a7e9b6de99', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'tolik', false, '816756350&show_for_all=43ff061cf2', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 17, 'tolik', true, '816753274&show_for_all=5eca7b5cfe', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 17, 'tolik', false, '816724381&show_for_all=f0f00e29da', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'tolik', true, '816722040&show_for_all=44b953e475', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'tolik', false, '816720161&show_for_all=151b7159c4', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 17, 'tolik', true, '816711974&show_for_all=75ffec33fc', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 17, 'tolik', true, '816709770&show_for_all=1c324f6a47', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 17, 'tolik', true, '816708384&show_for_all=5c170265af', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 17, 'tolik', true, '816705129&show_for_all=f131b4ac22', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 17, 'tolik', false, '816703501&show_for_all=2995cce8ce', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 17, 'tolik', true, '816701142&show_for_all=79e0a86940', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 17, 'tolik', false, '816699497&show_for_all=9f06aeed4b', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 17, 'tolik', true, '816694020&show_for_all=59e62de489', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 17, 'tolik', true, '816692944&show_for_all=bfce10baaa', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 17, 'tolik', true, '816691682&show_for_all=4a92d97083', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 17, 'tolik', false, '816689696&show_for_all=b532327d30', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 17, 'tolik', true, '816688397&show_for_all=ccbda1d023', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 17, 'tolik', true, '816686962&show_for_all=14aaff6a02', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 17, 'tolik', true, '816685863&show_for_all=75121f823f', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 17, 'tolik', true, '816684699&show_for_all=094edb1625', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 17, 'tolik', true, '816673065&show_for_all=b9d2574ee6', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 17, 'tolik', false, '816670174&show_for_all=a8b16ab576', 'second'),
    new Descriptor(e_m.witch, 9, 0, 17, 'tolik', true, '816668289&show_for_all=b1f68043e0', 'second'),
    new Descriptor(e_m.furies, 9, 0, 17, 'tolik', true, '816662841&show_for_all=083960fa70', 'second'),
    new Descriptor(e_m.furies, 9, 0, 17, 'tolik', false, '816659750&show_for_all=7451a8b598', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 17, 'tolik', true, '816656541&show_for_all=55ccb39333', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 17, 'tolik', true, '816655428&show_for_all=5af2aa6875', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 17, 'tolik', true, '816652931&show_for_all=a65eafd1aa', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 17, 'tolik', true, '816652135&show_for_all=410212f59a', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 17, 'tolik', false, '816294903&show_for_all=c63e1bede4', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 17, 'tolik', true, '816292260&show_for_all=6d27374b14', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 17, 'tolik', false, '816290991&show_for_all=f8a4979a7c', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 16, 'tolik', true, '810816014&show_for_all=02816b595f', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 16, 'tolik', true, '810814371&show_for_all=421d7ca59f', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 16, 'tolik', true, '810811750&show_for_all=576b990424', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 16, 'tolik', true, '810798572&show_for_all=807255959f', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 16, 'tolik', true, '810635907&show_for_all=cf11275ab2', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 16, 'tolik', true, '810634008&show_for_all=4db9ecf5ed', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 16, 'tolik', true, '810632613&show_for_all=3bb7da2842', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 16, 'tolik', true, '810629038&show_for_all=167f9f9861', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 16, 'tolik', true, '810431668&show_for_all=49bd7bf63e', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 16, 'tolik', true, '810394617&show_for_all=183350ae56', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 16, 'tolik', false, '810392796&show_for_all=67778066c9', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 16, 'tolik', true, '810390033&show_for_all=dc793901f4', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 16, 'tolik', true, '810385926&show_for_all=e83c2144e5', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 16, 'tolik', true, '810384818&show_for_all=920721cd98', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 16, 'tolik', true, '810383230&show_for_all=60f2b5f97a', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 16, 'tolik', true, '810294405&show_for_all=1e6ade4dac', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 16, 'tolik', false, '810287284&show_for_all=ee610be996', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 16, 'tolik', true, '810266434&show_for_all=2f6a9705bf', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 16, 'tolik', true, '810263320&show_for_all=61f5bab21f', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 16, 'tolik', false, '810260385&show_for_all=13a0009aed', 'second'),
    new Descriptor(e_m.witch, 8, 0, 16, 'tolik', true, '810259615&show_for_all=82aedf49c1', 'second'),
    new Descriptor(e_m.furies, 8, 0, 16, 'tolik', true, '810204589&show_for_all=c5ede082a3', 'second'),
    new Descriptor(e_m.furies, 8, 0, 16, 'tolik', false, '810202905&show_for_all=c8dc23cbef', 'second'),
    new Descriptor(e_m.furies, 8, 0, 16, 'tolik', false, '810139968&show_for_all=1019ac7d76', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 16, 'tolik', true, '810138960&show_for_all=26ca808ecb', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 16, 'tolik', true, '810137274&show_for_all=fe86d064db', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 16, 'tolik', true, '810099230&show_for_all=21f1bb539d', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 16, 'tolik', true, '810098557&show_for_all=0b4648bcc1', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 16, 'tolik', true, '810097952&show_for_all=510d35e7ff', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 16, 'tolik', true, '808597190&show_for_all=82504b8265', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 16, 'tolik', true, '808596294&show_for_all=d4c996653f', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 16, 'tolik', true, '808595074&show_for_all=2f75524fe7', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 16, 'tolik', true, '808590802&show_for_all=6e7a4a1fd5', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 16, 'tolik', true, '808585943&show_for_all=6ae84fb17f', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 16, 'tolik', true, '808584935&show_for_all=d12899fb76', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 16, 'tolik', true, '808583916&show_for_all=072376eadb', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 16, 'tolik', true, '808582125&show_for_all=5f104cbac1', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 16, 'tolik', true, '808579409&show_for_all=b1743194d8', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 16, 'tolik', true, '808578437&show_for_all=ee2ae7889f', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 16, 'tolik', true, '808577661&show_for_all=cd88a0ce6a', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 16, 'tolik', true, '808479420&show_for_all=4bc208a19a', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 16, 'tolik', true, '808464647&show_for_all=aa52253c2f', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 16, 'tolik', true, '808449908&show_for_all=c641481aba', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 16, 'tolik', true, '808440203&show_for_all=489ca3fc06', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 16, 'tolik', true, '808439160&show_for_all=6c3fff53c9', 'second'),
    new Descriptor(e_m.witch, 3, 1, 16, 'tolik', true, '808437619&show_for_all=d5f4a39932', 'second'),
    new Descriptor(e_m.furies, 3, 1, 16, 'tolik', true, '808424719&show_for_all=d201ee3119', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 16, 'tolik', true, '808423853&show_for_all=57c22858a5', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 16, 'tolik', true, '808409652&show_for_all=e30744b3df', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 16, 'tolik', true, '808373313&show_for_all=a0bc50de12', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 16, 'tolik', false, '808371883&show_for_all=8964b41f5f', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 16, 'tolik', true, '808370538&show_for_all=945254df27', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 16, 'tolik', true, '808367335&show_for_all=8e04b6bf8d', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 16, 'tolik', true, '808366052&show_for_all=d12a2669cc', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 16, 'tolik', true, '808350620&show_for_all=ab212a1341', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 16, 'tolik', true, '808350177&show_for_all=b93dffb001', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 16, 'tolik', true, '808349545&show_for_all=5dd54bd43f', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 16, 'tolik', true, '808347857&show_for_all=2b4849d6f6', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 16, 'tolik', true, '808336633&show_for_all=4942d2f555', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 16, 'tolik', true, '808334671&show_for_all=df65c5c898', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 16, 'tolik', true, '808333131&show_for_all=77a93715a2', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 16, 'tolik', false, '808329660&show_for_all=7bceb55457', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 16, 'tolik', true, '808328920&show_for_all=052c8ac913', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 16, 'tolik', true, '808327636&show_for_all=b96f1ca8b5', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 16, 'tolik', true, '808326775&show_for_all=c0e655da65', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 16, 'tolik', true, '808325643&show_for_all=9af3cbb0e6', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 16, 'tolik', true, '808323078&show_for_all=d644c72945', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 16, 'tolik', true, '808321484&show_for_all=4e7ed1d8c2', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 16, 'tolik', true, '808315845&show_for_all=ceada59da6', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 16, 'tolik', true, '808314068&show_for_all=b2c03081ad', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 16, 'tolik', true, '808310789&show_for_all=295798ec2e', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 16, 'tolik', true, '808309588&show_for_all=e3abbb00bd', 'second'),
    new Descriptor(e_m.witch, 3, 0, 16, 'tolik', true, '808308892&show_for_all=a92a9b6478', 'second'),
    new Descriptor(e_m.furies, 3, 0, 16, 'tolik', true, '808307524&show_for_all=e92e30935c', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 16, 'tolik', true, '808306338&show_for_all=13be5a8671', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 16, 'tolik', true, '808302513&show_for_all=2faca780b5', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 16, 'tolik', true, '808295654&show_for_all=93ec8cec19', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 16, 'tolik', true, '808294782&show_for_all=9eb0c08007', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 16, 'tolik', true, '808174911&show_for_all=898cf71d77', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 16, 'tolik', true, '808165272&show_for_all=fcc8380390', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 16, 'tolik', true, '808164275&show_for_all=df5b209689', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 16, 'tolik', true, '808163278&show_for_all=3bebae824a', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 16, 'tolik', true, '808159532&show_for_all=880ef73c58', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 16, 'tolik', true, '808155049&show_for_all=e98ba0490b', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 16, 'tolik', true, '808150897&show_for_all=b50d95be4b', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 16, 'tolik', true, '808147940&show_for_all=b851dcf939', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 16, 'tolik', true, '808146209&show_for_all=bdd58d017c', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 16, 'tolik', true, '808145136&show_for_all=9679839365', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 16, 'tolik', true, '808143810&show_for_all=68fcdc900d', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 16, 'tolik', true, '808142921&show_for_all=1c29d1592a', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 16, 'tolik', true, '808141517&show_for_all=07e770f4d0', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 16, 'tolik', true, '808120963&show_for_all=c1a48da382', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 16, 'tolik', true, '808119396&show_for_all=2165a853c9', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 16, 'tolik', true, '808117343&show_for_all=73c4eb7284', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 16, 'tolik', true, '808113120&show_for_all=5ae614c58c', 'second'),
    new Descriptor(e_m.witch, 1, 1, 16, 'tolik', true, '808112429&show_for_all=32a3152971', 'second'),
    new Descriptor(e_m.furies, 1, 1, 16, 'tolik', true, '808111551&show_for_all=a53b437d97', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 16, 'tolik', true, '808110986&show_for_all=6eb6b11016', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 16, 'tolik', false, '808109068&show_for_all=1700d75aad', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 16, 'tolik', true, '808107447&show_for_all=b63657d877', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 16, 'tolik', true, '808106933&show_for_all=6bdb8e7314', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 16, 'tolik', true, '808105481&show_for_all=676b7573c5', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 16, 'tolik', true, '808104613&show_for_all=4e07d6d9e4', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 16, 'tolik', true, '808103824&show_for_all=9f20a0de44', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 16, 'tolik', true, '808100911&show_for_all=4c4ea6c3f9', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 16, 'tolik', true, '808099861&show_for_all=24a500a96f', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 16, 'tolik', true, '808096984&show_for_all=e439217e80', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 16, 'tolik', true, '808090136&show_for_all=a3972885cc', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 16, 'tolik', true, '808088363&show_for_all=8b4ecc5c38', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 16, 'tolik', true, '808081538&show_for_all=4edec24a9b', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 16, 'tolik', true, '808080300&show_for_all=867b41038e', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 16, 'tolik', true, '808078997&show_for_all=30f2fd6ab7', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 16, 'tolik', true, '808077124&show_for_all=200bb28596', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 16, 'tolik', true, '808076016&show_for_all=ca5e04a788', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 16, 'tolik', true, '808074920&show_for_all=c5e79026bf', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 16, 'tolik', true, '808073121&show_for_all=d7815f3cf6', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 16, 'tolik', true, '808072438&show_for_all=78742877bd', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 16, 'tolik', true, '808071575&show_for_all=bc9320e365', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 16, 'tolik', true, '808069825&show_for_all=91d92379fb', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 16, 'tolik', false, '808067424&show_for_all=82d4c69f3a', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 16, 'tolik', true, '808067061&show_for_all=d95e7fe018', 'second'),
    new Descriptor(e_m.witch, 1, 0, 16, 'tolik', true, '808020021&show_for_all=a87c01871f', 'second'),
    new Descriptor(e_m.furies, 1, 0, 16, 'tolik', true, '807995576&show_for_all=2010fb7022', 'second'),
    new Descriptor(e_m.furies, 1, 0, 16, 'tolik', false, '807991874&show_for_all=b6358803ba', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 16, 'tolik', true, '807991135&show_for_all=1020b59b81', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 16, 'tolik', true, '807990341&show_for_all=a6acce7321', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 16, 'tolik', true, '807752998&show_for_all=e99aa3f001', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 16, 'tolik', true, '807751070&show_for_all=1b5b9a1245', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 16, 'tolik', false, '807739937&show_for_all=4f37787bbd', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 16, 'tolik', true, '807737958&show_for_all=5ec1b606b2', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 16, 'tolik', true, '807553779&show_for_all=0364634935', 'second'),
    new Descriptor(e_m.undead_boss, 2, 0, 16, 'tolik', true, '807552140&show_for_all=0073f1cd73', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 16, 'tolik', true, '807549908&show_for_all=1f00718ffa', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 16, 'tolik', true, '807548319&show_for_all=5201313a60', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 16, 'tolik', false, '807545908&show_for_all=75c14ffdeb', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'tolik', true, '807463755&show_for_all=a624385a75', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'tolik', false, '807460749&show_for_all=16ef033c1b', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'tolik', false, '807430611&show_for_all=0e3ef10ea9', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 16, 'tolik', true, '807426629&show_for_all=879e5ee4d5', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 16, 'tolik', false, '807413771&show_for_all=e9ee5ecff1', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 16, 'tolik', true, '807411512&show_for_all=a1c00f8c59', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'tolik', true, '807407847&show_for_all=edadfea17e', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'tolik', false, '807400813&show_for_all=e474093c50', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 16, 'tolik', true, '807399061&show_for_all=0c79d43a8c', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 16, 'tolik', true, '807396854&show_for_all=4608e5911d', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 16, 'tolik', true, '807395435&show_for_all=86a17f9530', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 16, 'tolik', false, '807392749&show_for_all=b7e591f28a', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 16, 'tolik', true, '807377191&show_for_all=1a5b85d32f', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 16, 'tolik', true, '807372408&show_for_all=5f8a34ad7b', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 16, 'tolik', true, '807371257&show_for_all=bfbb1d5c61', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 16, 'tolik', true, '807308256&show_for_all=ea65db424a', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 16, 'tolik', true, '807304636&show_for_all=7bdc77ac4b', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 16, 'tolik', true, '806472756&show_for_all=1f81d6c267', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 16, 'tolik', false, '805717869&show_for_all=84fa5f783e', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 16, 'tolik', true, '805414807&show_for_all=5d18d07679', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 16, 'tolik', true, '805375242&show_for_all=9ab4c8193d', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 16, 'tolik', true, '805363958&show_for_all=de660ec943', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 16, 'tolik', true, '805360168&show_for_all=f434fd6627', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 16, 'tolik', true, '805358469&show_for_all=fb0cf30bb5', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 16, 'tolik', true, '805357430&show_for_all=b03e94cfc3', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 16, 'tolik', true, '805346250&show_for_all=ac1541fd80', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 16, 'tolik', true, '805345476&show_for_all=ce4ace69a7', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 16, 'tolik', true, '805344441&show_for_all=f9792cb58c', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 16, 'tolik', true, '805343565&show_for_all=1cc8f566cf', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 16, 'tolik', true, '805337699&show_for_all=b3eb782d2e', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 16, 'tolik', true, '804916788&show_for_all=874cae1ac3', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 16, 'tolik', true, '804892111&show_for_all=5aa932cb0c', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 16, 'tolik', true, '804891636&show_for_all=0f21e6fa9a', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 16, 'tolik', true, '804874424&show_for_all=d4e0d46dd4', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 16, 'tolik', false, '804854946&show_for_all=76ee7e2512', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 16, 'tolik', true, '804842258&show_for_all=42c76c7576', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 16, 'tolik', true, '804841269&show_for_all=81d2433d22', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 16, 'tolik', true, '804826082&show_for_all=b082788111', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 16, 'tolik', true, '804824952&show_for_all=ac66a885fd', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 16, 'tolik', true, '804819677&show_for_all=db2ef9b705', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 16, 'tolik', true, '804814176&show_for_all=d23725005f', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 16, 'tolik', true, '804807069&show_for_all=b496fc30b2', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 16, 'tolik', false, '804801799&show_for_all=744a94a828', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 16, 'tolik', true, '804800178&show_for_all=e74fb07dbd', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 16, 'tolik', true, '804798166&show_for_all=7cee416ac7', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 16, 'tolik', true, '804796985&show_for_all=872f0446b9', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 16, 'tolik', true, '804796205&show_for_all=86fda43a9b', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 16, 'tolik', true, '804795499&show_for_all=a2c5d69a2d', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 16, 'tolik', true, '804794735&show_for_all=cc788a571a', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 16, 'tolik', true, '804766178&show_for_all=bb195d50b1', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 16, 'tolik', true, '804764611&show_for_all=b22a0cb10a', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 16, 'tolik', true, '804761095&show_for_all=7f9e8ca742', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 16, 'tolik', true, '804760161&show_for_all=c60ea52907', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 16, 'tolik', true, '804758050&show_for_all=4541b8d1ab', 'second'),
    new Descriptor(e_m.witch, 5, 0, 16, 'tolik', true, '804757269&show_for_all=3166036547', 'second'),
    new Descriptor(e_m.furies, 5, 0, 16, 'tolik', true, '804694385&show_for_all=3752624bdf', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 16, 'tolik', true, '804693468&show_for_all=b1f513e196', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 16, 'tolik', true, '804693051&show_for_all=c668eb8773', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 16, 'tolik', true, '804669552&show_for_all=def1467324', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 16, 'tolik', true, '804666032&show_for_all=91b641d221', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 16, 'tolik', true, '804634856&show_for_all=e58928e25e', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 16, 'tolik', true, '804633904&show_for_all=5053364d3b', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 16, 'tolik', true, '804632796&show_for_all=b34c28a547', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 16, 'tolik', true, '804622409&show_for_all=7c73b7edaf', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 16, 'tolik', true, '804586971&show_for_all=f496ba1d2c', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 16, 'tolik', true, '804564636&show_for_all=cc076e9765', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 16, 'tolik', true, '804562933&show_for_all=a770c18d5a', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 16, 'tolik', true, '804561730&show_for_all=ff08a03adf', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 16, 'tolik', true, '804560089&show_for_all=cde4e36719', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 16, 'tolik', true, '804559251&show_for_all=ef87c7a909', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 16, 'tolik', true, '804558442&show_for_all=31d77c2f4a', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 16, 'tolik', true, '804557288&show_for_all=cd5470a4be', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 16, 'tolik', true, '804416137&show_for_all=1b07d2ea47', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 16, 'tolik', true, '804411990&show_for_all=1c486e75db', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 16, 'tolik', true, '804410474&show_for_all=f053d0a4ab', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 16, 'tolik', true, '804368777&show_for_all=efdff6e6a2', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 16, 'tolik', true, '804020294&show_for_all=f633e96393', 'second'),
    new Descriptor(e_m.witch, 5, 1, 16, 'tolik', true, '804016240&show_for_all=e09f14048f', 'second'),
    new Descriptor(e_m.furies, 5, 1, 16, 'tolik', true, '804012098&show_for_all=029335189a', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 16, 'tolik', true, '804011435&show_for_all=6d55bd8e05', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 16, 'tolik', true, '804006031&show_for_all=18da429bd9', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 16, 'tolik', true, '804000605&show_for_all=918a7e6c93', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 16, 'tolik', true, '803999784&show_for_all=71d41a6efa', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 16, 'tolik', true, '803998202&show_for_all=c9efc9f107', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 16, 'tolik', true, '803992523&show_for_all=8b8894ace8', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 16, 'tolik', true, '803989474&show_for_all=db1f8d14de', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 16, 'tolik', true, '803988392&show_for_all=d5231adeb0', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 16, 'tolik', true, '803987294&show_for_all=798607fa1d', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 16, 'tolik', true, '803985999&show_for_all=a16f18fddb', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 16, 'tolik', true, '803984362&show_for_all=5b5f9264e0', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 16, 'tolik', true, '803949497&show_for_all=a5674180bc', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 16, 'tolik', true, '803945344&show_for_all=76599438be', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 16, 'tolik', true, '803941330&show_for_all=0dd9915ee3', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 16, 'tolik', true, '803939633&show_for_all=64d98eb735', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 16, 'tolik', true, '803937847&show_for_all=1ac7027df9', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 16, 'tolik', true, '803936600&show_for_all=5e031177e0', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 16, 'tolik', true, '803934367&show_for_all=fcd776e2a8', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 16, 'tolik', true, '803932774&show_for_all=72a8081504', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 16, 'tolik', true, '803931117&show_for_all=48e50433da', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 16, 'tolik', true, '803928614&show_for_all=7fad37eb92', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 16, 'tolik', true, '803926417&show_for_all=f8a12295fa', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 16, 'tolik', true, '803921621&show_for_all=3fa7d342fc', 'second'),
    new Descriptor(e_m.witch, 5, 2, 16, 'tolik', true, '803919819&show_for_all=a4458b9a69', 'second'),
    new Descriptor(e_m.furies, 5, 2, 16, 'tolik', true, '803917519&show_for_all=27f33bea13', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 16, 'tolik', true, '803912324&show_for_all=174b45f751', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 16, 'tolik', true, '803830472&show_for_all=a826e50136', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 16, 'tolik', false, '802120606&show_for_all=434754a0f9', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 16, 'tolik', true, '801259909&show_for_all=bb551d9d46', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 16, 'tolik', true, '801259025&show_for_all=d0b7fb893b', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 16, 'tolik', true, '801254357&show_for_all=1e08286105', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 16, 'tolik', true, '801253034&show_for_all=333e710f77', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 16, 'tolik', true, '801251315&show_for_all=295aaf8b2c', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 16, 'tolik', true, '801248259&show_for_all=fed02b79e4', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 16, 'tolik', true, '801221459&show_for_all=2aa2dd912f', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 16, 'tolik', true, '801219388&show_for_all=9ee7c3a103', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 16, 'tolik', false, '801051161&show_for_all=85f2128c93', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 16, 'tolik', false, '801036860&show_for_all=16d3f9f8d0', 'second'),
    new Descriptor(e_m.witch, 4, 0, 16, 'tolik', true, '801036163&show_for_all=6e2fac6619', 'second'),
    new Descriptor(e_m.furies, 4, 0, 16, 'tolik', true, '801035376&show_for_all=1c7d9a0e8e', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 16, 'tolik', true, '801023282&show_for_all=4700b5e039', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 16, 'tolik', true, '801022122&show_for_all=f83aadea2d', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 16, 'tolik', true, '800960568&show_for_all=e00442d303', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 16, 'tolik', true, '800958901&show_for_all=f3a50327fb', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 16, 'tolik', true, '800957869&show_for_all=4a71caa41d', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 16, 'tolik', true, '800943503&show_for_all=d7f528210a', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 16, 'tolik', true, '799868687&show_for_all=4dfd49e664', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 16, 'tolik', true, '799865083&show_for_all=2dbacf33d7', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 16, 'tolik', true, '798074892&show_for_all=89bcb17f43', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 16, 'tolik', true, '798073184&show_for_all=eac0ab46e2', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 16, 'tolik', true, '798068135&show_for_all=4ce47441fa', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 16, 'tolik', true, '797996519&show_for_all=9d5ae23f35', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 16, 'tolik', true, '797972093&show_for_all=cf2f2c9015', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 16, 'tolik', true, '797955576&show_for_all=2b31a5e43c', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 16, 'tolik', true, '797948913&show_for_all=514af83f90', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 16, 'tolik', true, '797935721&show_for_all=9a44b202db', 'second'),
    new Descriptor(e_m.witch, 7, 0, 16, 'tolik', true, '797931907&show_for_all=dfb5a96284', 'second'),
    new Descriptor(e_m.furies, 7, 0, 16, 'tolik', true, '797930531&show_for_all=f85456697e', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 16, 'tolik', true, '797928529&show_for_all=2674e60207', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 16, 'tolik', true, '797926857&show_for_all=d066b7c110', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 16, 'tolik', true, '797921577&show_for_all=d163467e3f', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 16, 'tolik', true, '797916703&show_for_all=3ede4aff0f', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 16, 'tolik', true, '797914412&show_for_all=2cba4d2fb9', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 16, 'tolik', true, '797791650&show_for_all=6d74456259', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 16, 'tolik', true, '797788835&show_for_all=3b2ba6388f', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 16, 'tolik', true, '797787263&show_for_all=3fb8621cab', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 16, 'tolik', true, '797785430&show_for_all=e607cf732e', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 16, 'tolik', true, '797773717&show_for_all=830cb0cfe4', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 16, 'tolik', true, '797770224&show_for_all=6c4513286b', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 16, 'tolik', true, '797753685&show_for_all=2402fdd3cf', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 16, 'tolik', true, '797749618&show_for_all=6a9e0e5be8', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 16, 'tolik', true, '797747418&show_for_all=2310cf7410', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 16, 'tolik', true, '797745714&show_for_all=35b6678406', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 16, 'tolik', true, '797744601&show_for_all=7815a9279c', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 16, 'tolik', true, '797743452&show_for_all=b7fa0f0a75', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 16, 'tolik', true, '797736398&show_for_all=7c0c22c011', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 16, 'tolik', true, '797717689&show_for_all=a525980d35', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 16, 'tolik', true, '797716515&show_for_all=cd75000c86', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 16, 'tolik', true, '797711554&show_for_all=b90ec56f2a', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 16, 'tolik', true, '797708885&show_for_all=171725760a', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 16, 'tolik', true, '797573465&show_for_all=1cf09b319b', 'second'),
    new Descriptor(e_m.witch, 7, 1, 16, 'tolik', true, '797546936&show_for_all=78a832cc4d', 'second'),
    new Descriptor(e_m.furies, 7, 1, 16, 'tolik', true, '797546173&show_for_all=7235afabe3', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 16, 'tolik', true, '797545493&show_for_all=0d2d20d99c', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 16, 'tolik', true, '797536811&show_for_all=b6833c7213', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 16, 'tolik', true, '797533305&show_for_all=4d5875bc80', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 16, 'tolik', true, '797436927&show_for_all=8d674ec3fc', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 16, 'tolik', true, '797435624&show_for_all=a0a8c2ea2d', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 16, 'tolik', true, '796226306&show_for_all=8284c4c6c1', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 16, 'tolik', true, '796225375&show_for_all=33e70ca56b', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 16, 'tolik', true, '796224471&show_for_all=b9904f1aac', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 16, 'tolik', true, '796218312&show_for_all=486f726db0', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 16, 'tolik', true, '796217377&show_for_all=701f2ef177', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 16, 'tolik', true, '796216439&show_for_all=0679824c42', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 16, 'tolik', true, '796214590&show_for_all=7587005788', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 16, 'tolik', true, '796213501&show_for_all=79df017a7c', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 16, 'tolik', true, '796208600&show_for_all=c9c28a610e', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 16, 'tolik', true, '796202409&show_for_all=a7ccccc1e3', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 16, 'tolik', true, '796132844&show_for_all=dd93c82383', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 16, 'tolik', true, '796131814&show_for_all=d577bc0617', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 16, 'tolik', true, '796130396&show_for_all=ab96e02b4e', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 16, 'tolik', true, '796124889&show_for_all=7f2761a4b1', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 16, 'tolik', true, '796124418&show_for_all=08e5641b52', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 16, 'tolik', true, '796092192&show_for_all=0630bec019', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 16, 'tolik', true, '796088315&show_for_all=3a14e0bcfb', 'second'),
    new Descriptor(e_m.witch, 6, 0, 16, 'tolik', true, '796087502&show_for_all=26b264f599', 'second'),
    new Descriptor(e_m.furies, 6, 0, 16, 'tolik', true, '796085378&show_for_all=e9c92479d1', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 16, 'tolik', true, '796083241&show_for_all=241fa49a9e', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 16, 'tolik', true, '796082025&show_for_all=c973f7e565', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 16, 'tolik', true, '795378597&show_for_all=e5bf27fb16', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 16, 'tolik', true, '795377828&show_for_all=46f50c0ecf', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 16, 'tolik', true, '795376930&show_for_all=b7c732426e', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 16, 'tolik', true, '795332793&show_for_all=5752350d3b', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 16, 'tolik', true, '795331439&show_for_all=0a99e4560a', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 16, 'tolik', true, '795325203&show_for_all=73344b232f', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 16, 'tolik', true, '795288698&show_for_all=6ce6e98380', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 16, 'tolik', true, '795286514&show_for_all=e82a216718', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 16, 'tolik', true, '795285989&show_for_all=b7ac2bc73d', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 16, 'tolik', true, '795285765&show_for_all=81a8a1218f', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 16, 'tolik', true, '795285348&show_for_all=ece4333faa', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 16, 'tolik', true, '795260881&show_for_all=3ac2985701', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 16, 'tolik', true, '795259615&show_for_all=046a541d36', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 16, 'tolik', true, '795255383&show_for_all=aeac4c116e', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 16, 'tolik', true, '795253622&show_for_all=037a5ef410', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 16, 'tolik', true, '795248767&show_for_all=6db8d20f3e', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 16, 'tolik', true, '795247183&show_for_all=503c5a2027', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 16, 'tolik', true, '795239567&show_for_all=cccabac0bb', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 16, 'tolik', true, '795237282&show_for_all=6e06ad3872', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 16, 'tolik', true, '795232659&show_for_all=5b489f1e38', 'second'),
    new Descriptor(e_m.witch, 6, 1, 16, 'tolik', true, '795207929&show_for_all=4a7308e433', 'second'),
    new Descriptor(e_m.furies, 6, 1, 16, 'tolik', true, '795206069&show_for_all=a202fbee72', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 16, 'tolik', true, '795204868&show_for_all=a22ace57e9', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 16, 'tolik', true, '795195702&show_for_all=dfd082e472', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 16, 'tolik', true, '795193365&show_for_all=0aae55a5cd', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 16, 'tolik', true, '795191820&show_for_all=7d327006a9', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 16, 'tolik', true, '795190420&show_for_all=df50afeabb', 'second'),
    new Descriptor(e_m.witch, 2, 0, 16, 'tolik', true, '787510851&show_for_all=26fba0f23d', 'second'),
    new Descriptor(e_m.furies, 2, 0, 16, 'tolik', true, '787504456&show_for_all=cbd9857e23', 'second'),
    new Descriptor(e_m.furies, 2, 0, 16, 'tolik', false, '787497332&show_for_all=2f025273c2', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 16, 'tolik', true, '787496296&show_for_all=8b42f93a28', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 16, 'tolik', true, '787495449&show_for_all=d226b75b59', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 16, 'tolik', true, '787084763&show_for_all=625a16941c', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 16, 'tolik', false, '787074629&show_for_all=8b3e903fe7', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 16, 'tolik', true, '787072726&show_for_all=fd18d987d2', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'tolik', true, '787070360&show_for_all=c8cf363691', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 16, 'tolik', false, '787068307&show_for_all=48778be388', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 16, 'tolik', false, '784747513&show_for_all=72d306ea99', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 16, 'tolik', true, '783426608&show_for_all=d7893cb047', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 16, 'tolik', true, '783422677&show_for_all=e96a643e79', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 16, 'tolik', true, '783420240&show_for_all=1651d7e381', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 16, 'tolik', true, '783417702&show_for_all=fd8fd3de31', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 16, 'tolik', true, '783414426&show_for_all=0be7700f75', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 16, 'tolik', true, '783412180&show_for_all=2cab510ef1', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 16, 'tolik', true, '783409518&show_for_all=0e11e546f7', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 16, 'tolik', true, '783406097&show_for_all=afb19d68c5', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 1, 16, 'tolik', true, '783401671&show_for_all=40ea75b3e9', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 16, 'tolik', true, '783399141&show_for_all=714ca87a94', 'second'),
    new Descriptor(e_m.third_undeads, 2, 1, 16, 'tolik', true, '783397368&show_for_all=423a423414', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 16, 'tolik', true, '783395005&show_for_all=9884241c21', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 16, 'tolik', true, '783390495&show_for_all=e0bea1162c', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 16, 'tolik', true, '783387842&show_for_all=a7d5d390ac', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 16, 'tolik', true, '783367929&show_for_all=208648604b', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 16, 'tolik', true, '783366157&show_for_all=1c9145d14f', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 1, 16, 'tolik', true, '783362464&show_for_all=e5c0962eb6', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 16, 'tolik', true, '783360898&show_for_all=5e645e8c95', 'second'),
    new Descriptor(e_m.witch, 2, 1, 16, 'tolik', true, '783358529&show_for_all=847b3909b9', 'second'),
    new Descriptor(e_m.furies, 2, 1, 16, 'tolik', true, '783356039&show_for_all=4b97220e8a', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 16, 'tolik', true, '783351920&show_for_all=940098e53a', 'second'),
    new Descriptor(e_m.spiders, 2, 1, 16, 'tolik', true, '783330719&show_for_all=8304806b73', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 16, 'tolik', true, '783326907&show_for_all=63389e649a', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 16, 'tolik', true, '783324415&show_for_all=c47bbdffba', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 16, 'tolik', true, '783323662&show_for_all=c2b9f63efd', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 16, 'tolik', true, '779391076&show_for_all=fef7502ea4', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 16, 'tolik', true, '779390655&show_for_all=829efcda7e', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 16, 'tolik', true, '779390387&show_for_all=1c4d039731', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 16, 'tolik', true, '779389862&show_for_all=d988d4fd34', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 16, 'tolik', true, '779389616&show_for_all=3640ee09c7', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 16, 'tolik', true, '779389427&show_for_all=bc1c42847b', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 16, 'tolik', true, '779388923&show_for_all=5de7c667d6', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 16, 'tolik', true, '779388632&show_for_all=577ef29fcd', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 16, 'tolik', true, '779371577&show_for_all=11190ce7fd', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 16, 'tolik', true, '779370963&show_for_all=b82b8f3f4e', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 16, 'tolik', true, '779366725&show_for_all=0d78e92f9c', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 16, 'tolik', true, '779206276&show_for_all=1e08a4b62f', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 16, 'tolik', true, '778868161&show_for_all=48ae7baae4', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 16, 'tolik', true, '778862528&show_for_all=48a478d926', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 16, 'tolik', true, '778802314&show_for_all=feb5c32ec3', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 16, 'tolik', true, '778801344&show_for_all=43c1afd6f5', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 16, 'tolik', true, '778800300&show_for_all=8f5f3a574e', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 16, 'tolik', true, '778797155&show_for_all=ffd49664ef', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 16, 'tolik', true, '778795741&show_for_all=a181290806', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 16, 'tolik', true, '778794106&show_for_all=65f3aa3e89', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 16, 'tolik', true, '778792592&show_for_all=2102e092c6', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 16, 'tolik', true, '778791468&show_for_all=d25ac37c93', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 16, 'tolik', true, '778788954&show_for_all=ca39699b07', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 16, 'tolik', true, '778785208&show_for_all=1afb0f1696', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 16, 'tolik', true, '778729269&show_for_all=362874f665', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 16, 'tolik', true, '778726494&show_for_all=a525ebe349', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 16, 'tolik', true, '778716967&show_for_all=f55326db01', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 16, 'tolik', true, '778714428&show_for_all=290dde677a', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 16, 'tolik', true, '778647164&show_for_all=aa8500b9a0', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 16, 'tolik', true, '778645662&show_for_all=895fc17a34', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 16, 'tolik', true, '778640946&show_for_all=4e72dbcf58', 'second'),
    new Descriptor(e_m.witch, 4, 1, 16, 'tolik', true, '778638538&show_for_all=500621ebdc', 'second'),
    new Descriptor(e_m.furies, 4, 1, 16, 'tolik', true, '778636395&show_for_all=e976a8bc98', 'second'),
    new Descriptor(e_m.furies, 4, 1, 16, 'tolik', false, '778630200&show_for_all=3560592ea8', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 16, 'tolik', true, '778628934&show_for_all=e929ce7bb8', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 16, 'tolik', true, '778605638&show_for_all=3310bc14f3', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 16, 'tolik', true, '778598092&show_for_all=c3c8aa0846', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 16, 'tolik', true, '778597005&show_for_all=71767ad89d', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 16, 'tolik', true, '778596401&show_for_all=026a9745ba', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 16, 'tolik', true, '778494494&show_for_all=154f7511ad', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 16, 'tolik', true, '778199695&show_for_all=f8264b4d1f', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 16, 'tolik', true, '777900640&show_for_all=c566044cc3', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 16, 'tolik', true, '777176338&show_for_all=6707eb22d0', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 16, 'tolik', true, '777175072&show_for_all=0868c51b02', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 16, 'tolik', true, '777173619&show_for_all=851fba207a', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 16, 'tolik', true, '775731324&show_for_all=787225b03b', 'second'),
    new Descriptor(e_m.witch, 4, 0, 16, 'tolik', true, '775730540&show_for_all=8755f3ae60', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 16, 'tolik', true, '775659603&show_for_all=047c2155b0', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 16, 'tolik', true, '775658077&show_for_all=fa3acf8874', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 16, 'tolik', true, '775657466&show_for_all=fc861ebb16', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 16, 'tolik', true, '775655660&show_for_all=1200dbcf4d', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 16, 'tolik', true, '775653673&show_for_all=5cece88ecb', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 16, 'tolik', true, '775652114&show_for_all=9037cbd4cc', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 16, 'tolik', true, '775650303&show_for_all=8e2c783e85', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 16, 'tolik', true, '775624351&show_for_all=3687e86761', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 16, 'tolik', true, '775618650&show_for_all=dacab3c5a5', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 16, 'tolik', true, '775617398&show_for_all=17b7c0cd3b', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 16, 'tolik', true, '775606430&show_for_all=2d12afa310', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 16, 'tolik', true, '775605186&show_for_all=80d54ed090', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 16, 'tolik', true, '775587735&show_for_all=a9e6d91849', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 16, 'tolik', true, '775586903&show_for_all=117d0ef678', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 16, 'tolik', true, '775585542&show_for_all=dfea32539c', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 16, 'tolik', true, '775583825&show_for_all=f400235bab', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 16, 'tolik', true, '775581987&show_for_all=b8dbbdda20', 'second'),
    new Descriptor(e_m.witch, 9, 0, 16, 'tolik', true, '775580797&show_for_all=82331e8167', 'second'),
    new Descriptor(e_m.witch, 9, 0, 16, 'tolik', false, '775576971&show_for_all=a50751281d', 'second'),
    new Descriptor(e_m.witch, 9, 0, 16, 'tolik', false, '775563782&show_for_all=6fb2ec3b04', 'second'),
    new Descriptor(e_m.witch, 9, 0, 16, 'tolik', false, '775302497&show_for_all=e2148c6817', 'second'),
    new Descriptor(e_m.furies, 9, 0, 16, 'tolik', true, '774351795&show_for_all=d611c5b994', 'second'),
    new Descriptor(e_m.furies, 9, 0, 16, 'tolik', false, '774349586&show_for_all=c12e035f3b', 'second'),
    new Descriptor(e_m.furies, 9, 0, 16, 'tolik', false, '774347512&show_for_all=719c46f550', 'second'),
    new Descriptor(e_m.furies, 9, 0, 16, 'tolik', false, '774329757&show_for_all=2700da0252', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 16, 'tolik', true, '774328895&show_for_all=80d7052bdc', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 16, 'tolik', true, '774328116&show_for_all=8bc5f53221', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 16, 'tolik', false, '774262806&show_for_all=db21ecb077', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 16, 'tolik', true, '774156594&show_for_all=7cbcbd8415', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 16, 'tolik', true, '774156366&show_for_all=92b7b87925', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 16, 'tolik', true, '774156196&show_for_all=e24a868bd2', 'second'),
    new Descriptor(e_m.furies, 4, 0, 16, 'tolik', true, '773027118&show_for_all=d290e6c463', 'second'),
    new Descriptor(e_m.furies, 4, 0, 16, 'tolik', false, '773024675&show_for_all=8ccee3486c', 'second'),
    new Descriptor(e_m.furies, 4, 0, 16, 'tolik', false, '773023416&show_for_all=8cda304a63', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 16, 'tolik', true, '773017723&show_for_all=846fd4dcc3', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 16, 'tolik', false, '773015908&show_for_all=1e095edc3a', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 16, 'tolik', true, '773014395&show_for_all=983bf4f431', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 16, 'tolik', true, '773011321&show_for_all=6fa6506a90', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 16, 'tolik', true, '773010137&show_for_all=1ca2b2eb25', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 16, 'tolik', true, '773008733&show_for_all=63f541e261', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 16, 'tolik', false, '772978995&show_for_all=292365f4fe', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 16, 'tolik', false, '772975597&show_for_all=11e99a13eb', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 16, 'tolik', true, '772971862&show_for_all=0c41331298', 'second'),
    new Descriptor(e_m.last_fight, 6, 1, 17, 'CreatorOfWidows', true, '783254289&show_for_all=26371a325f', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 1, 17, 'CreatorOfWidows', true, '783253023&show_for_all=ad30b3bada', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'CreatorOfWidows', true, '783250012&show_for_all=fb0c86053b', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 1, 17, 'CreatorOfWidows', true, '783248249&show_for_all=5ee2a3e6e6', 'second'),
    new Descriptor(e_m.undead_boss, 6, 1, 17, 'CreatorOfWidows', true, '783247345&show_for_all=3543e91be6', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 1, 17, 'CreatorOfWidows', true, '783245858&show_for_all=340e5b6bda', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 1, 17, 'CreatorOfWidows', true, '783244740&show_for_all=814ed8f165', 'second'),
    new Descriptor(e_m.disciple, 6, 1, 17, 'CreatorOfWidows', true, '783243948&show_for_all=13bdeed306', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 1, 17, 'CreatorOfWidows', true, '783243247&show_for_all=92029c65fc', 'second'),
    new Descriptor(e_m.vampires, 6, 1, 17, 'CreatorOfWidows', true, '783242674&show_for_all=ce5ee5ae9d', 'second'),
    new Descriptor(e_m.third_undeads, 6, 1, 17, 'CreatorOfWidows', true, '783241606&show_for_all=441d9b02f5', 'second'),
    new Descriptor(e_m.second_undeads, 6, 1, 17, 'CreatorOfWidows', true, '783240691&show_for_all=f79cc548a0', 'second'),
    new Descriptor(e_m.second_wisp, 6, 1, 17, 'CreatorOfWidows', true, '783239441&show_for_all=1a884bafcc', 'second'),
    new Descriptor(e_m.first_wisp, 6, 1, 17, 'CreatorOfWidows', true, '783237882&show_for_all=3c6d7e5949', 'second'),
    new Descriptor(e_m.first_undeads, 6, 1, 17, 'CreatorOfWidows', true, '783237031&show_for_all=99f6e300ad', 'second'),
    new Descriptor(e_m.harpies, 6, 1, 17, 'CreatorOfWidows', true, '783232806&show_for_all=87b795cb2e', 'second'),
    new Descriptor(e_m.furies, 6, 1, 17, 'CreatorOfWidows', true, '783231544&show_for_all=36021b074c', 'second'),
    new Descriptor(e_m.witch, 6, 1, 17, 'CreatorOfWidows', true, '783230492&show_for_all=3304b2c68d', 'second'),
    new Descriptor(e_m.spider_lair, 6, 1, 17, 'CreatorOfWidows', true, '783229638&show_for_all=f72f426d16', 'second'),
    new Descriptor(e_m.spiders, 6, 1, 17, 'CreatorOfWidows', true, '783229011&show_for_all=9381be11c8', 'second'),
    new Descriptor(e_m.three_heroes, 6, 1, 17, 'CreatorOfWidows', true, '783226725&show_for_all=38f69a9725', 'second'),
    new Descriptor(e_m.son_ambush, 6, 1, 17, 'CreatorOfWidows', true, '783192584&show_for_all=d18421a1cf', 'second'),
    new Descriptor(e_m.ambush, 6, 1, 17, 'CreatorOfWidows', true, '783191634&show_for_all=3a99867c42', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 1, 17, 'CreatorOfWidows', true, '783188949&show_for_all=7e74bf6847', 'second'),
    new Descriptor(e_m.last_fight, 8, 0, 17, 'CreatorOfWidows', true, '783019255&show_for_all=95bd1a25d7', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 17, 'CreatorOfWidows', true, '783014032&show_for_all=c8c9af8286', 'second'),
    new Descriptor(e_m.crypt_witch, 8, 0, 17, 'CreatorOfWidows', true, '783011083&show_for_all=ce7b225652', 'second'),
    new Descriptor(e_m.pirate_crypt, 8, 0, 17, 'CreatorOfWidows', true, '783010595&show_for_all=ab672a5a32', 'second'),
    new Descriptor(e_m.disciple, 8, 0, 17, 'CreatorOfWidows', true, '783009864&show_for_all=fb234bab0c', 'second'),
    new Descriptor(e_m.nekr_hero, 8, 0, 17, 'CreatorOfWidows', true, '783009095&show_for_all=bdfe9e45f7', 'second'),
    new Descriptor(e_m.tomb_hero, 8, 0, 17, 'CreatorOfWidows', true, '783008329&show_for_all=0b689cb4a3', 'second'),
    new Descriptor(e_m.crypt_guards, 8, 0, 17, 'CreatorOfWidows', true, '783007624&show_for_all=d8c0d4cf20', 'second'),
    new Descriptor(e_m.undead_boss, 8, 0, 17, 'CreatorOfWidows', true, '783006801&show_for_all=6d7707043c', 'second'),
    new Descriptor(e_m.vampires, 8, 0, 17, 'CreatorOfWidows', true, '783005760&show_for_all=d8c4c7b3cd', 'second'),
    new Descriptor(e_m.third_undeads, 8, 0, 17, 'CreatorOfWidows', true, '783005112&show_for_all=8d381836b0', 'second'),
    new Descriptor(e_m.second_undeads, 8, 0, 17, 'CreatorOfWidows', true, '783003999&show_for_all=05896a48cd', 'second'),
    new Descriptor(e_m.second_wisp, 8, 0, 17, 'CreatorOfWidows', true, '783002262&show_for_all=7f18d33747', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 17, 'CreatorOfWidows', true, '783000952&show_for_all=76e68e95b9', 'second'),
    new Descriptor(e_m.first_wisp, 8, 0, 17, 'CreatorOfWidows', false, '782998147&show_for_all=72f19c1095', 'second'),
    new Descriptor(e_m.first_undeads, 8, 0, 17, 'CreatorOfWidows', true, '782997050&show_for_all=b7668c000d', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 17, 'CreatorOfWidows', true, '782943748&show_for_all=88771b954f', 'second'),
    new Descriptor(e_m.harpies, 8, 0, 17, 'CreatorOfWidows', false, '782943578&show_for_all=ca0864e0b3', 'second'),
    new Descriptor(e_m.furies, 8, 0, 17, 'CreatorOfWidows', true, '782941104&show_for_all=326a62af73', 'second'),
    new Descriptor(e_m.witch, 8, 0, 17, 'CreatorOfWidows', true, '782940586&show_for_all=590f6fac59', 'second'),
    new Descriptor(e_m.spider_lair, 8, 0, 17, 'CreatorOfWidows', true, '782939858&show_for_all=138a3a54b8', 'second'),
    new Descriptor(e_m.spiders, 8, 0, 17, 'CreatorOfWidows', true, '782939335&show_for_all=c8f4785fac', 'second'),
    new Descriptor(e_m.three_heroes, 8, 0, 17, 'CreatorOfWidows', true, '782937826&show_for_all=8b136ea7d3', 'second'),
    new Descriptor(e_m.son_ambush, 8, 0, 17, 'CreatorOfWidows', true, '782937313&show_for_all=82b4edd507', 'second'),
    new Descriptor(e_m.ambush, 8, 0, 17, 'CreatorOfWidows', true, '782936507&show_for_all=1fbdbf425a', 'second'),
    new Descriptor(e_m.hungry_zombies, 8, 0, 17, 'CreatorOfWidows', true, '782934528&show_for_all=92bc141530', 'second'),
    new Descriptor(e_m.last_fight, 2, 1, 17, 'CreatorOfWidows', true, '782052362&show_for_all=6af147b796', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 1, 17, 'CreatorOfWidows', true, '782046083&show_for_all=a27f8e8e78', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 1, 17, 'CreatorOfWidows', true, '782045466&show_for_all=485602665c', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 1, 17, 'CreatorOfWidows', true, '782043014&show_for_all=b621aaeecf', 'second'),
    new Descriptor(e_m.disciple, 2, 1, 17, 'CreatorOfWidows', true, '782041507&show_for_all=693293e764', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 1, 17, 'CreatorOfWidows', true, '782040530&show_for_all=9c2c80ba5d', 'second'),
    new Descriptor(e_m.undead_boss, 2, 1, 17, 'CreatorOfWidows', true, '782039453&show_for_all=d97b8f9cdf', 'second'),
    new Descriptor(e_m.vampires, 2, 1, 17, 'CreatorOfWidows', true, '782037380&show_for_all=0a805dcbfc', 'second'),
    new Descriptor(e_m.second_undeads, 2, 1, 17, 'CreatorOfWidows', true, '782029913&show_for_all=a170fae446', 'second'),
    new Descriptor(e_m.second_wisp, 2, 1, 17, 'CreatorOfWidows', true, '782025906&show_for_all=cdc59d6466', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 17, 'CreatorOfWidows', true, '782021736&show_for_all=18b769f268', 'second'),
    new Descriptor(e_m.first_wisp, 2, 1, 17, 'CreatorOfWidows', false, '782021145&show_for_all=e78f49578d', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 17, 'CreatorOfWidows', true, '782017885&show_for_all=7288d9402c', 'second'),
    new Descriptor(e_m.witch, 2, 1, 17, 'CreatorOfWidows', true, '782017027&show_for_all=5cd1185b18', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 17, 'CreatorOfWidows', true, '781850302&show_for_all=8febd3df82', 'second'),
    new Descriptor(e_m.spider_lair, 2, 1, 17, 'CreatorOfWidows', true, '781848939&show_for_all=d41d5cbfdb', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 17, 'CreatorOfWidows', true, '781847726&show_for_all=9ecb274f90', 'second'),
    new Descriptor(e_m.harpies, 2, 1, 17, 'CreatorOfWidows', false, '781847179&show_for_all=38c1e06785', 'second'),
    new Descriptor(e_m.three_heroes, 2, 1, 17, 'CreatorOfWidows', true, '781835231&show_for_all=ec592acf7f', 'second'),
    new Descriptor(e_m.son_ambush, 2, 1, 17, 'CreatorOfWidows', true, '781834056&show_for_all=9b2e692d33', 'second'),
    new Descriptor(e_m.ambush, 2, 1, 17, 'CreatorOfWidows', true, '781831640&show_for_all=d478c00a0d', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 17, 'CreatorOfWidows', true, '781828214&show_for_all=3975951062', 'second'),
    new Descriptor(e_m.first_undeads, 2, 1, 17, 'CreatorOfWidows', false, '781826272&show_for_all=17fe86b7bb', 'second'),
    new Descriptor(e_m.last_fight, 2, 0, 17, 'CreatorOfWidows', true, '781655818&show_for_all=3b2cbe584d', 'second'),
    new Descriptor(e_m.vampires, 2, 0, 17, 'CreatorOfWidows', true, '781645257&show_for_all=47069e10bb', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 17, 'CreatorOfWidows', true, '781620775&show_for_all=501f44bad1', 'second'),
    new Descriptor(e_m.pirate_crypt, 2, 0, 17, 'CreatorOfWidows', true, '781620138&show_for_all=b776b9b7ac', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 17, 'CreatorOfWidows', true, '781617809&show_for_all=292576231e', 'second'),
    new Descriptor(e_m.crypt_witch, 2, 0, 17, 'CreatorOfWidows', false, '781616841&show_for_all=ccb55b6ce4', 'second'),
    new Descriptor(e_m.tomb_hero, 2, 0, 17, 'CreatorOfWidows', true, '781614229&show_for_all=6ee5d233b1', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 17, 'CreatorOfWidows', true, '781611918&show_for_all=c8fbef1fa3', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 17, 'CreatorOfWidows', false, '781610728&show_for_all=2227827bbe', 'second'),
    new Descriptor(e_m.crypt_guards, 2, 0, 17, 'CreatorOfWidows', false, '781610150&show_for_all=1a78b4c548', 'second'),
    new Descriptor(e_m.third_undeads, 2, 0, 17, 'CreatorOfWidows', true, '781609191&show_for_all=c1b46b08f9', 'second'),
    new Descriptor(e_m.second_undeads, 2, 0, 17, 'CreatorOfWidows', true, '781601506&show_for_all=01cfe73dd3', 'second'),
    new Descriptor(e_m.second_wisp, 2, 0, 17, 'CreatorOfWidows', true, '781599752&show_for_all=86f402eb35', 'second'),
    new Descriptor(e_m.disciple, 2, 0, 17, 'CreatorOfWidows', true, '781595852&show_for_all=bc06e8a1a3', 'second'),
    new Descriptor(e_m.nekr_hero, 2, 0, 17, 'CreatorOfWidows', true, '781595058&show_for_all=341349881a', 'second'),
    new Descriptor(e_m.first_wisp, 2, 0, 17, 'CreatorOfWidows', true, '781592302&show_for_all=20c06613f6', 'second'),
    new Descriptor(e_m.first_undeads, 2, 0, 17, 'CreatorOfWidows', true, '781590299&show_for_all=de5602f39e', 'second'),
    new Descriptor(e_m.harpies, 2, 0, 17, 'CreatorOfWidows', true, '781588096&show_for_all=7d4596c19e', 'second'),
    new Descriptor(e_m.furies, 2, 0, 17, 'CreatorOfWidows', true, '781587262&show_for_all=8afba8e2bc', 'second'),
    new Descriptor(e_m.witch, 2, 0, 17, 'CreatorOfWidows', true, '781586589&show_for_all=e62c8e389f', 'second'),
    new Descriptor(e_m.spider_lair, 2, 0, 17, 'CreatorOfWidows', true, '781584782&show_for_all=9337af41aa', 'second'),
    new Descriptor(e_m.spiders, 2, 0, 17, 'CreatorOfWidows', true, '781584239&show_for_all=7faa82e659', 'second'),
    new Descriptor(e_m.three_heroes, 2, 0, 17, 'CreatorOfWidows', true, '781583696&show_for_all=f1627b8c6e', 'second'),
    new Descriptor(e_m.son_ambush, 2, 0, 17, 'CreatorOfWidows', true, '781573581&show_for_all=1e609c30d7', 'second'),
    new Descriptor(e_m.ambush, 2, 0, 17, 'CreatorOfWidows', true, '781573378&show_for_all=5a0aab12a1', 'second'),
    new Descriptor(e_m.hungry_zombies, 2, 0, 17, 'CreatorOfWidows', true, '781572403&show_for_all=e8c487ed18', 'second'),
    new Descriptor(e_m.last_fight, 3, 0, 17, 'CreatorOfWidows', true, '780551345&show_for_all=a6191744dd', 'second'),
    new Descriptor(e_m.undead_boss, 3, 0, 17, 'CreatorOfWidows', true, '780549078&show_for_all=800ee3c374', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 17, 'CreatorOfWidows', true, '780547229&show_for_all=21d06552c0', 'second'),
    new Descriptor(e_m.vampires, 3, 0, 17, 'CreatorOfWidows', true, '780546069&show_for_all=640598c1af', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 17, 'CreatorOfWidows', true, '780545062&show_for_all=43c9414974', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 0, 17, 'CreatorOfWidows', true, '780543173&show_for_all=1dd31b0314', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 0, 17, 'CreatorOfWidows', true, '780542386&show_for_all=200dcda218', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 0, 17, 'CreatorOfWidows', true, '780540322&show_for_all=a91ad8a3c5', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 0, 17, 'CreatorOfWidows', true, '780539586&show_for_all=3263a17f84', 'second'),
    new Descriptor(e_m.third_undeads, 3, 0, 17, 'CreatorOfWidows', true, '780538647&show_for_all=87ce426ab3', 'second'),
    new Descriptor(e_m.second_undeads, 3, 0, 17, 'CreatorOfWidows', true, '780537676&show_for_all=5108eb3bed', 'second'),
    new Descriptor(e_m.second_wisp, 3, 0, 17, 'CreatorOfWidows', true, '780536021&show_for_all=d921f07531', 'second'),
    new Descriptor(e_m.disciple, 3, 0, 17, 'CreatorOfWidows', true, '780532809&show_for_all=4c5e212480', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 0, 17, 'CreatorOfWidows', true, '780530767&show_for_all=b35a869fa2', 'second'),
    new Descriptor(e_m.first_wisp, 3, 0, 17, 'CreatorOfWidows', true, '780529592&show_for_all=0f64f4e9cf', 'second'),
    new Descriptor(e_m.first_undeads, 3, 0, 17, 'CreatorOfWidows', true, '780528253&show_for_all=e4cc0bfc6d', 'second'),
    new Descriptor(e_m.harpies, 3, 0, 17, 'CreatorOfWidows', true, '780525352&show_for_all=80dd1b23ec', 'second'),
    new Descriptor(e_m.furies, 3, 0, 17, 'CreatorOfWidows', true, '780523104&show_for_all=f2f7db243f', 'second'),
    new Descriptor(e_m.witch, 3, 0, 17, 'CreatorOfWidows', true, '780490280&show_for_all=65c1cb0ef4', 'second'),
    new Descriptor(e_m.spider_lair, 3, 0, 17, 'CreatorOfWidows', true, '780489115&show_for_all=e2c20af2dc', 'second'),
    new Descriptor(e_m.spiders, 3, 0, 17, 'CreatorOfWidows', true, '780488175&show_for_all=96a7c76719', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 17, 'CreatorOfWidows', true, '780475958&show_for_all=163be36213', 'second'),
    new Descriptor(e_m.three_heroes, 3, 0, 17, 'CreatorOfWidows', false, '780475014&show_for_all=5fb57a3904', 'second'),
    new Descriptor(e_m.son_ambush, 3, 0, 17, 'CreatorOfWidows', true, '780471666&show_for_all=3f631c9469', 'second'),
    new Descriptor(e_m.ambush, 3, 0, 17, 'CreatorOfWidows', true, '780447194&show_for_all=4047b617d9', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 0, 17, 'CreatorOfWidows', true, '780445802&show_for_all=7176da5c92', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', true, '780244399&show_for_all=a214f3d5e8', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', false, '780243552&show_for_all=808792cc59', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', false, '780242543&show_for_all=eafb442e25', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', false, '780241906&show_for_all=ec7bce2071', 'second'),
    new Descriptor(e_m.last_fight, 3, 1, 17, 'CreatorOfWidows', false, '780241043&show_for_all=6cd28b632c', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'CreatorOfWidows', true, '780239825&show_for_all=8ed4e40076', 'second'),
    new Descriptor(e_m.vampires, 3, 1, 17, 'CreatorOfWidows', true, '780239222&show_for_all=9b74a3c5bf', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 17, 'CreatorOfWidows', true, '780237280&show_for_all=5885d0f4bb', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 17, 'CreatorOfWidows', false, '780236346&show_for_all=67e4311095', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 17, 'CreatorOfWidows', false, '780235496&show_for_all=7f8dd46243', 'second'),
    new Descriptor(e_m.pirate_crypt, 3, 1, 17, 'CreatorOfWidows', true, '780235187&show_for_all=bc7441fbf7', 'second'),
    new Descriptor(e_m.crypt_witch, 3, 1, 17, 'CreatorOfWidows', true, '780233317&show_for_all=0953b6a714', 'second'),
    new Descriptor(e_m.tomb_hero, 3, 1, 17, 'CreatorOfWidows', true, '780232506&show_for_all=d9a4a73df8', 'second'),
    new Descriptor(e_m.crypt_guards, 3, 1, 17, 'CreatorOfWidows', true, '780231820&show_for_all=7198d5c296', 'second'),
    new Descriptor(e_m.third_undeads, 3, 1, 17, 'CreatorOfWidows', true, '780231328&show_for_all=4651d40436', 'second'),
    new Descriptor(e_m.second_undeads, 3, 1, 17, 'CreatorOfWidows', true, '780230469&show_for_all=4ca92d9737', 'second'),
    new Descriptor(e_m.second_wisp, 3, 1, 17, 'CreatorOfWidows', true, '780228563&show_for_all=5a444548fa', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 17, 'CreatorOfWidows', true, '780226924&show_for_all=9c033a24a1', 'second'),
    new Descriptor(e_m.disciple, 3, 1, 17, 'CreatorOfWidows', false, '780226435&show_for_all=74ac1bbbce', 'second'),
    new Descriptor(e_m.nekr_hero, 3, 1, 17, 'CreatorOfWidows', true, '780225852&show_for_all=9acdc58996', 'second'),
    new Descriptor(e_m.first_wisp, 3, 1, 17, 'CreatorOfWidows', true, '780225153&show_for_all=ad73c89d43', 'second'),
    new Descriptor(e_m.first_undeads, 3, 1, 17, 'CreatorOfWidows', true, '780224358&show_for_all=8d825e7622', 'second'),
    new Descriptor(e_m.furies, 3, 1, 17, 'CreatorOfWidows', true, '780223571&show_for_all=cd89c49529', 'second'),
    new Descriptor(e_m.witch, 3, 1, 17, 'CreatorOfWidows', true, '780222841&show_for_all=968de4d0c4', 'second'),
    new Descriptor(e_m.spider_lair, 3, 1, 17, 'CreatorOfWidows', true, '780222278&show_for_all=04bc3babfb', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 17, 'CreatorOfWidows', true, '780221826&show_for_all=d697cbe674', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 17, 'CreatorOfWidows', false, '780221252&show_for_all=d304fb7478', 'second'),
    new Descriptor(e_m.spiders, 3, 1, 17, 'CreatorOfWidows', false, '780220926&show_for_all=68e49666e1', 'second'),
    new Descriptor(e_m.three_heroes, 3, 1, 17, 'CreatorOfWidows', true, '780219363&show_for_all=0593693cc7', 'second'),
    new Descriptor(e_m.harpies, 3, 1, 17, 'CreatorOfWidows', true, '780217521&show_for_all=28b19f4472', 'second'),
    new Descriptor(e_m.son_ambush, 3, 1, 17, 'CreatorOfWidows', true, '780217088&show_for_all=269e146252', 'second'),
    new Descriptor(e_m.ambush, 3, 1, 17, 'CreatorOfWidows', true, '780216379&show_for_all=8445edfa6a', 'second'),
    new Descriptor(e_m.hungry_zombies, 3, 1, 17, 'CreatorOfWidows', true, '780215422&show_for_all=ec1acf4928', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'CreatorOfWidows', true, '780204879&show_for_all=bb4213c97a', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'CreatorOfWidows', false, '780204026&show_for_all=3f8a78cd51', 'second'),
    new Descriptor(e_m.undead_boss, 3, 1, 17, 'CreatorOfWidows', false, '780203513&show_for_all=89470c8196', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'CreatorOfWidows', true, '779182349&show_for_all=042718ce91', 'second'),
    new Descriptor(e_m.last_fight, 9, 0, 17, 'CreatorOfWidows', false, '779181509&show_for_all=1c2333ed62', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'CreatorOfWidows', true, '779178424&show_for_all=084a0beafb', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 17, 'CreatorOfWidows', true, '779174768&show_for_all=0e4cb07d83', 'second'),
    new Descriptor(e_m.vampires, 9, 0, 17, 'CreatorOfWidows', false, '779173502&show_for_all=72abe69447', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 17, 'CreatorOfWidows', true, '779165787&show_for_all=dafc66ba0e', 'second'),
    new Descriptor(e_m.pirate_crypt, 9, 0, 17, 'CreatorOfWidows', true, '779164993&show_for_all=cf428761c9', 'second'),
    new Descriptor(e_m.crypt_witch, 9, 0, 17, 'CreatorOfWidows', true, '779163713&show_for_all=9004b90e9b', 'second'),
    new Descriptor(e_m.tomb_hero, 9, 0, 17, 'CreatorOfWidows', true, '779162743&show_for_all=28f905276a', 'second'),
    new Descriptor(e_m.crypt_guards, 9, 0, 17, 'CreatorOfWidows', true, '779162129&show_for_all=523d2295d2', 'second'),
    new Descriptor(e_m.third_undeads, 9, 0, 17, 'CreatorOfWidows', true, '779161456&show_for_all=c063bd9032', 'second'),
    new Descriptor(e_m.second_undeads, 9, 0, 17, 'CreatorOfWidows', true, '779158882&show_for_all=7b20d76e99', 'second'),
    new Descriptor(e_m.second_wisp, 9, 0, 17, 'CreatorOfWidows', true, '779153377&show_for_all=84a62d196e', 'second'),
    new Descriptor(e_m.disciple, 9, 0, 17, 'CreatorOfWidows', true, '779142430&show_for_all=d954d8e701', 'second'),
    new Descriptor(e_m.nekr_hero, 9, 0, 17, 'CreatorOfWidows', true, '779141491&show_for_all=9e1e4bdbf8', 'second'),
    new Descriptor(e_m.first_wisp, 9, 0, 17, 'CreatorOfWidows', true, '779139813&show_for_all=a9bdf6426e', 'second'),
    new Descriptor(e_m.first_undeads, 9, 0, 17, 'CreatorOfWidows', true, '779138598&show_for_all=79db0f1373', 'second'),
    new Descriptor(e_m.furies, 9, 0, 17, 'CreatorOfWidows', true, '779130438&show_for_all=55618ffd5a', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'CreatorOfWidows', true, '779125531&show_for_all=ac17b8f8d4', 'second'),
    new Descriptor(e_m.harpies, 9, 0, 17, 'CreatorOfWidows', false, '779125128&show_for_all=cedc56e35a', 'second'),
    new Descriptor(e_m.witch, 9, 0, 17, 'CreatorOfWidows', true, '779109288&show_for_all=935c8e05b2', 'second'),
    new Descriptor(e_m.spider_lair, 9, 0, 17, 'CreatorOfWidows', true, '779108526&show_for_all=fb14cbc5c1', 'second'),
    new Descriptor(e_m.spiders, 9, 0, 17, 'CreatorOfWidows', true, '779108057&show_for_all=98b884de69', 'second'),
    new Descriptor(e_m.three_heroes, 9, 0, 17, 'CreatorOfWidows', true, '779009043&show_for_all=df778b9bee', 'second'),
    new Descriptor(e_m.son_ambush, 9, 0, 17, 'CreatorOfWidows', true, '779008363&show_for_all=51238ff65c', 'second'),
    new Descriptor(e_m.ambush, 9, 0, 17, 'CreatorOfWidows', true, '779007656&show_for_all=6433e9be5c', 'second'),
    new Descriptor(e_m.hungry_zombies, 9, 0, 17, 'CreatorOfWidows', true, '779006688&show_for_all=84a1ce8746', 'second'),
    new Descriptor(e_m.undead_boss, 9, 0, 17, 'CreatorOfWidows', true, '778980685&show_for_all=e0e7cb7a2b', 'second'),
    new Descriptor(e_m.last_fight, 7, 1, 17, 'CreatorOfWidows', true, '778046313&show_for_all=423cfe2894', 'second'),
    new Descriptor(e_m.undead_boss, 7, 1, 17, 'CreatorOfWidows', true, '778045008&show_for_all=987213a02b', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 17, 'CreatorOfWidows', true, '778040259&show_for_all=8458da0602', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 17, 'CreatorOfWidows', true, '778037696&show_for_all=e2b71e7bca', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 1, 17, 'CreatorOfWidows', true, '778036122&show_for_all=d15db2c620', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 17, 'CreatorOfWidows', true, '778032861&show_for_all=42e767abea', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 17, 'CreatorOfWidows', false, '778030770&show_for_all=fdb7818443', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 1, 17, 'CreatorOfWidows', false, '778028773&show_for_all=673185ee1d', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 1, 17, 'CreatorOfWidows', true, '778027727&show_for_all=ee2d536c91', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 1, 17, 'CreatorOfWidows', true, '778026668&show_for_all=49e4e8c6d9', 'second'),
    new Descriptor(e_m.third_undeads, 7, 1, 17, 'CreatorOfWidows', true, '778025659&show_for_all=8f00713d0d', 'second'),
    new Descriptor(e_m.second_undeads, 7, 1, 17, 'CreatorOfWidows', true, '778024441&show_for_all=7834a59dd6', 'second'),
    new Descriptor(e_m.second_wisp, 7, 1, 17, 'CreatorOfWidows', true, '778019628&show_for_all=b199037d78', 'second'),
    new Descriptor(e_m.vampires, 7, 1, 17, 'CreatorOfWidows', true, '778018565&show_for_all=de8d087712', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 17, 'CreatorOfWidows', true, '778017505&show_for_all=c0c763c289', 'second'),
    new Descriptor(e_m.disciple, 7, 1, 17, 'CreatorOfWidows', false, '778016895&show_for_all=4fcce29392', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 1, 17, 'CreatorOfWidows', true, '778016175&show_for_all=71b4eae0c2', 'second'),
    new Descriptor(e_m.first_wisp, 7, 1, 17, 'CreatorOfWidows', true, '778003082&show_for_all=a77183aca4', 'second'),
    new Descriptor(e_m.first_undeads, 7, 1, 17, 'CreatorOfWidows', true, '778001361&show_for_all=cb9d06c65b', 'second'),
    new Descriptor(e_m.harpies, 7, 1, 17, 'CreatorOfWidows', true, '777988972&show_for_all=18540540ea', 'second'),
    new Descriptor(e_m.furies, 7, 1, 17, 'CreatorOfWidows', true, '777988035&show_for_all=583be7b1dd', 'second'),
    new Descriptor(e_m.witch, 7, 1, 17, 'CreatorOfWidows', true, '777980205&show_for_all=0e1f8766ba', 'second'),
    new Descriptor(e_m.spider_lair, 7, 1, 17, 'CreatorOfWidows', true, '777979143&show_for_all=83d6c4931a', 'second'),
    new Descriptor(e_m.spiders, 7, 1, 17, 'CreatorOfWidows', true, '777970038&show_for_all=dc925624fb', 'second'),
    new Descriptor(e_m.three_heroes, 7, 1, 17, 'CreatorOfWidows', true, '777968771&show_for_all=1c30e58153', 'second'),
    new Descriptor(e_m.son_ambush, 7, 1, 17, 'CreatorOfWidows', true, '777964172&show_for_all=49356f388b', 'second'),
    new Descriptor(e_m.ambush, 7, 1, 17, 'CreatorOfWidows', true, '777963326&show_for_all=ddfb23a1f1', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 1, 17, 'CreatorOfWidows', true, '777957463&show_for_all=3d1b05dc68', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 17, 'CreatorOfWidows', true, '777704602&show_for_all=c334b666ba', 'second'),
    new Descriptor(e_m.last_fight, 7, 0, 17, 'CreatorOfWidows', false, '777703413&show_for_all=595d78eb0b', 'second'),
    new Descriptor(e_m.undead_boss, 7, 0, 17, 'CreatorOfWidows', true, '777701069&show_for_all=82f9bdb773', 'second'),
    new Descriptor(e_m.vampires, 7, 0, 17, 'CreatorOfWidows', true, '777699820&show_for_all=67e4425533', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 17, 'CreatorOfWidows', true, '777696488&show_for_all=d03281fd04', 'second'),
    new Descriptor(e_m.pirate_crypt, 7, 0, 17, 'CreatorOfWidows', true, '777694940&show_for_all=49602b507c', 'second'),
    new Descriptor(e_m.crypt_witch, 7, 0, 17, 'CreatorOfWidows', true, '777692255&show_for_all=3f8d7289ca', 'second'),
    new Descriptor(e_m.tomb_hero, 7, 0, 17, 'CreatorOfWidows', true, '777683633&show_for_all=89f22f2cc6', 'second'),
    new Descriptor(e_m.crypt_guards, 7, 0, 17, 'CreatorOfWidows', true, '777682461&show_for_all=ec35b22b42', 'second'),
    new Descriptor(e_m.third_undeads, 7, 0, 17, 'CreatorOfWidows', true, '777677864&show_for_all=b895a3ceaa', 'second'),
    new Descriptor(e_m.second_undeads, 7, 0, 17, 'CreatorOfWidows', true, '777676211&show_for_all=ec57c9e879', 'second'),
    new Descriptor(e_m.second_wisp, 7, 0, 17, 'CreatorOfWidows', true, '777658676&show_for_all=d2ef048f74', 'second'),
    new Descriptor(e_m.disciple, 7, 0, 17, 'CreatorOfWidows', true, '777655033&show_for_all=87989c49fa', 'second'),
    new Descriptor(e_m.nekr_hero, 7, 0, 17, 'CreatorOfWidows', true, '777643191&show_for_all=c724655303', 'second'),
    new Descriptor(e_m.first_wisp, 7, 0, 17, 'CreatorOfWidows', true, '777640944&show_for_all=e8375b6157', 'second'),
    new Descriptor(e_m.first_undeads, 7, 0, 17, 'CreatorOfWidows', true, '777483279&show_for_all=a46407f375', 'second'),
    new Descriptor(e_m.furies, 7, 0, 17, 'CreatorOfWidows', true, '777481487&show_for_all=95aba55eff', 'second'),
    new Descriptor(e_m.witch, 7, 0, 17, 'CreatorOfWidows', true, '777480614&show_for_all=c221113e3d', 'second'),
    new Descriptor(e_m.spider_lair, 7, 0, 17, 'CreatorOfWidows', true, '777466920&show_for_all=74ae7c60dc', 'second'),
    new Descriptor(e_m.spiders, 7, 0, 17, 'CreatorOfWidows', true, '777465874&show_for_all=df5fbadd7c', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 17, 'CreatorOfWidows', true, '777448682&show_for_all=1771550e6b', 'second'),
    new Descriptor(e_m.three_heroes, 7, 0, 17, 'CreatorOfWidows', false, '777447036&show_for_all=7e0645721b', 'second'),
    new Descriptor(e_m.son_ambush, 7, 0, 17, 'CreatorOfWidows', true, '777436328&show_for_all=81b67d7727', 'second'),
    new Descriptor(e_m.harpies, 7, 0, 17, 'CreatorOfWidows', true, '777434366&show_for_all=c8a91826c7', 'second'),
    new Descriptor(e_m.ambush, 7, 0, 17, 'CreatorOfWidows', true, '777433099&show_for_all=a0fdcac0b6', 'second'),
    new Descriptor(e_m.hungry_zombies, 7, 0, 17, 'CreatorOfWidows', true, '777430125&show_for_all=7b1b75d0b4', 'second'),
    new Descriptor(e_m.last_fight, 1, 1, 17, 'CreatorOfWidows', true, '777032410&show_for_all=5c3414cf5f', 'second'),
    new Descriptor(e_m.undead_boss, 1, 1, 17, 'CreatorOfWidows', true, '777031231&show_for_all=5d8a33803d', 'second'),
    new Descriptor(e_m.vampires, 1, 1, 17, 'CreatorOfWidows', true, '777030414&show_for_all=1252265dff', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 17, 'CreatorOfWidows', true, '777028468&show_for_all=c8b163061f', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 1, 17, 'CreatorOfWidows', true, '777027965&show_for_all=7ed5ed4eaa', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 1, 17, 'CreatorOfWidows', true, '777026932&show_for_all=e162f5e17a', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 17, 'CreatorOfWidows', true, '777026256&show_for_all=76de5c21d3', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 1, 17, 'CreatorOfWidows', false, '777025601&show_for_all=ce6cd8485f', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 1, 17, 'CreatorOfWidows', true, '777025066&show_for_all=00aa0a81e2', 'second'),
    new Descriptor(e_m.third_undeads, 1, 1, 17, 'CreatorOfWidows', true, '777023667&show_for_all=bb8687888b', 'second'),
    new Descriptor(e_m.second_undeads, 1, 1, 17, 'CreatorOfWidows', true, '777022665&show_for_all=661d47e2cc', 'second'),
    new Descriptor(e_m.second_wisp, 1, 1, 17, 'CreatorOfWidows', true, '777021451&show_for_all=1e6b550ddc', 'second'),
    new Descriptor(e_m.disciple, 1, 1, 17, 'CreatorOfWidows', true, '777019260&show_for_all=c6a38220d8', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 1, 17, 'CreatorOfWidows', true, '777017758&show_for_all=2017c37838', 'second'),
    new Descriptor(e_m.first_wisp, 1, 1, 17, 'CreatorOfWidows', true, '777016664&show_for_all=cc92e9c79d', 'second'),
    new Descriptor(e_m.first_undeads, 1, 1, 17, 'CreatorOfWidows', true, '777013103&show_for_all=1274307777', 'second'),
    new Descriptor(e_m.furies, 1, 1, 17, 'CreatorOfWidows', true, '777011992&show_for_all=5e41ec0d9f', 'second'),
    new Descriptor(e_m.witch, 1, 1, 17, 'CreatorOfWidows', true, '777011276&show_for_all=63c8d06c4b', 'second'),
    new Descriptor(e_m.spider_lair, 1, 1, 17, 'CreatorOfWidows', true, '777010296&show_for_all=7c7e1ba9e1', 'second'),
    new Descriptor(e_m.spiders, 1, 1, 17, 'CreatorOfWidows', true, '777009595&show_for_all=a8c4de9429', 'second'),
    new Descriptor(e_m.three_heroes, 1, 1, 17, 'CreatorOfWidows', true, '777007901&show_for_all=48eb78c72e', 'second'),
    new Descriptor(e_m.son_ambush, 1, 1, 17, 'CreatorOfWidows', true, '777007225&show_for_all=b1418a6b22', 'second'),
    new Descriptor(e_m.harpies, 1, 1, 17, 'CreatorOfWidows', true, '777006634&show_for_all=e42eb6ce36', 'second'),
    new Descriptor(e_m.ambush, 1, 1, 17, 'CreatorOfWidows', true, '777005781&show_for_all=a8927a2615', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 1, 17, 'CreatorOfWidows', true, '777004689&show_for_all=c0a9a9d5a7', 'second'),
    new Descriptor(e_m.last_fight, 1, 0, 17, 'CreatorOfWidows', true, '776896091&show_for_all=c3b8426e4d', 'second'),
    new Descriptor(e_m.vampires, 1, 0, 17, 'CreatorOfWidows', true, '776895219&show_for_all=7f52e531a4', 'second'),
    new Descriptor(e_m.undead_boss, 1, 0, 17, 'CreatorOfWidows', true, '776894644&show_for_all=8b1ec08407', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'CreatorOfWidows', true, '776880774&show_for_all=f621b11232', 'second'),
    new Descriptor(e_m.pirate_crypt, 1, 0, 17, 'CreatorOfWidows', true, '776879850&show_for_all=b13569f38c', 'second'),
    new Descriptor(e_m.crypt_witch, 1, 0, 17, 'CreatorOfWidows', true, '776878472&show_for_all=776850f9d9', 'second'),
    new Descriptor(e_m.tomb_hero, 1, 0, 17, 'CreatorOfWidows', true, '776877315&show_for_all=331179066f', 'second'),
    new Descriptor(e_m.crypt_guards, 1, 0, 17, 'CreatorOfWidows', true, '776876044&show_for_all=bdf17b52d6', 'second'),
    new Descriptor(e_m.third_undeads, 1, 0, 17, 'CreatorOfWidows', true, '776874422&show_for_all=0333b3a99e', 'second'),
    new Descriptor(e_m.second_undeads, 1, 0, 17, 'CreatorOfWidows', true, '776871589&show_for_all=241134add7', 'second'),
    new Descriptor(e_m.second_wisp, 1, 0, 17, 'CreatorOfWidows', true, '776869911&show_for_all=c8540279d1', 'second'),
    new Descriptor(e_m.disciple, 1, 0, 17, 'CreatorOfWidows', true, '776865744&show_for_all=d8a21ce83c', 'second'),
    new Descriptor(e_m.nekr_hero, 1, 0, 17, 'CreatorOfWidows', true, '776864471&show_for_all=f909ee5f9d', 'second'),
    new Descriptor(e_m.first_wisp, 1, 0, 17, 'CreatorOfWidows', true, '776863149&show_for_all=36af426f1d', 'second'),
    new Descriptor(e_m.first_undeads, 1, 0, 17, 'CreatorOfWidows', true, '776861816&show_for_all=624e9c9ad8', 'second'),
    new Descriptor(e_m.furies, 1, 0, 17, 'CreatorOfWidows', true, '776853563&show_for_all=428ae592cf', 'second'),
    new Descriptor(e_m.witch, 1, 0, 17, 'CreatorOfWidows', true, '776853018&show_for_all=556b5281f0', 'second'),
    new Descriptor(e_m.spider_lair, 1, 0, 17, 'CreatorOfWidows', true, '776851850&show_for_all=d6f247d17c', 'second'),
    new Descriptor(e_m.spiders, 1, 0, 17, 'CreatorOfWidows', true, '776835689&show_for_all=b4d9ca3955', 'second'),
    new Descriptor(e_m.three_heroes, 1, 0, 17, 'CreatorOfWidows', true, '776834128&show_for_all=e45d273e07', 'second'),
    new Descriptor(e_m.son_ambush, 1, 0, 17, 'CreatorOfWidows', true, '776833218&show_for_all=682b661f88', 'second'),
    new Descriptor(e_m.harpies, 1, 0, 17, 'CreatorOfWidows', true, '776832525&show_for_all=a18e913e20', 'second'),
    new Descriptor(e_m.ambush, 1, 0, 17, 'CreatorOfWidows', true, '776831619&show_for_all=895f831436', 'second'),
    new Descriptor(e_m.hungry_zombies, 1, 0, 17, 'CreatorOfWidows', true, '776830187&show_for_all=ecb42416f3', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', true, '776737067&show_for_all=e67b036e46', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', false, '776736180&show_for_all=54fb996295', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', false, '776735716&show_for_all=fd04e62b99', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', false, '776734762&show_for_all=2c37d276d3', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', false, '776734399&show_for_all=a1961238d8', 'second'),
    new Descriptor(e_m.last_fight, 5, 1, 17, 'CreatorOfWidows', false, '776733001&show_for_all=b37b2d05a7', 'second'),
    new Descriptor(e_m.vampires, 5, 1, 17, 'CreatorOfWidows', true, '776732179&show_for_all=01d2455c9f', 'second'),
    new Descriptor(e_m.undead_boss, 5, 1, 17, 'CreatorOfWidows', true, '776731633&show_for_all=41388a3cc0', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 17, 'CreatorOfWidows', true, '776729954&show_for_all=79007fc58e', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 1, 17, 'CreatorOfWidows', true, '776729542&show_for_all=626eba8986', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 1, 17, 'CreatorOfWidows', true, '776728725&show_for_all=99f5beb15f', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 1, 17, 'CreatorOfWidows', true, '776727910&show_for_all=8b3994775f', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 1, 17, 'CreatorOfWidows', true, '776727228&show_for_all=efb48b1f50', 'second'),
    new Descriptor(e_m.third_undeads, 5, 1, 17, 'CreatorOfWidows', true, '776725859&show_for_all=8c239c07b1', 'second'),
    new Descriptor(e_m.second_undeads, 5, 1, 17, 'CreatorOfWidows', true, '776725294&show_for_all=ccabb560f8', 'second'),
    new Descriptor(e_m.second_wisp, 5, 1, 17, 'CreatorOfWidows', true, '776724549&show_for_all=c4731cbed9', 'second'),
    new Descriptor(e_m.disciple, 5, 1, 17, 'CreatorOfWidows', true, '776721868&show_for_all=e3e723dcac', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 1, 17, 'CreatorOfWidows', true, '776721375&show_for_all=77b38fbffb', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 17, 'CreatorOfWidows', true, '776720465&show_for_all=b7a2490a46', 'second'),
    new Descriptor(e_m.first_wisp, 5, 1, 17, 'CreatorOfWidows', false, '776714701&show_for_all=f88010a42a', 'second'),
    new Descriptor(e_m.first_undeads, 5, 1, 17, 'CreatorOfWidows', true, '776713995&show_for_all=ab064e060c', 'second'),
    new Descriptor(e_m.furies, 5, 1, 17, 'CreatorOfWidows', true, '776713343&show_for_all=d76b39adc1', 'second'),
    new Descriptor(e_m.witch, 5, 1, 17, 'CreatorOfWidows', true, '776711954&show_for_all=39f6ceec3b', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 17, 'CreatorOfWidows', true, '776711315&show_for_all=d4445cdad2', 'second'),
    new Descriptor(e_m.spider_lair, 5, 1, 17, 'CreatorOfWidows', false, '776710769&show_for_all=123083be3d', 'second'),
    new Descriptor(e_m.spiders, 5, 1, 17, 'CreatorOfWidows', true, '776710163&show_for_all=b1058f330e', 'second'),
    new Descriptor(e_m.three_heroes, 5, 1, 17, 'CreatorOfWidows', true, '776610681&show_for_all=b72e7827c6', 'second'),
    new Descriptor(e_m.son_ambush, 5, 1, 17, 'CreatorOfWidows', true, '776610014&show_for_all=951b87ce0b', 'second'),
    new Descriptor(e_m.harpies, 5, 1, 17, 'CreatorOfWidows', true, '776609591&show_for_all=c2197bae48', 'second'),
    new Descriptor(e_m.ambush, 5, 1, 17, 'CreatorOfWidows', true, '776608863&show_for_all=dedee50096', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 1, 17, 'CreatorOfWidows', true, '776607883&show_for_all=85e472df46', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 17, 'CreatorOfWidows', true, '776601035&show_for_all=b3164f109d', 'second'),
    new Descriptor(e_m.last_fight, 5, 2, 17, 'CreatorOfWidows', false, '776596149&show_for_all=7346b62230', 'second'),
    new Descriptor(e_m.vampires, 5, 2, 17, 'CreatorOfWidows', true, '776594892&show_for_all=0e3f4f7672', 'second'),
    new Descriptor(e_m.undead_boss, 5, 2, 17, 'CreatorOfWidows', true, '776594161&show_for_all=94eb021fd9', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 17, 'CreatorOfWidows', true, '776591653&show_for_all=88debcaab1', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 2, 17, 'CreatorOfWidows', true, '776590003&show_for_all=4dadc36e01', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 2, 17, 'CreatorOfWidows', true, '776589026&show_for_all=e845dafcba', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 2, 17, 'CreatorOfWidows', true, '776587383&show_for_all=b58829759f', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 2, 17, 'CreatorOfWidows', true, '776586385&show_for_all=b67ab63938', 'second'),
    new Descriptor(e_m.third_undeads, 5, 2, 17, 'CreatorOfWidows', true, '776585091&show_for_all=5d9d6e1290', 'second'),
    new Descriptor(e_m.second_undeads, 5, 2, 17, 'CreatorOfWidows', true, '776584023&show_for_all=333f95af60', 'second'),
    new Descriptor(e_m.second_wisp, 5, 2, 17, 'CreatorOfWidows', true, '776581907&show_for_all=0b4333ce39', 'second'),
    new Descriptor(e_m.disciple, 5, 2, 17, 'CreatorOfWidows', true, '776579814&show_for_all=0c5832be8f', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 2, 17, 'CreatorOfWidows', true, '776578097&show_for_all=0915af7ce8', 'second'),
    new Descriptor(e_m.first_wisp, 5, 2, 17, 'CreatorOfWidows', true, '776576224&show_for_all=96f54ff8ff', 'second'),
    new Descriptor(e_m.first_undeads, 5, 2, 17, 'CreatorOfWidows', true, '776543682&show_for_all=5ee31d4ded', 'second'),
    new Descriptor(e_m.furies, 5, 2, 17, 'CreatorOfWidows', true, '776539822&show_for_all=8b2f0ecf74', 'second'),
    new Descriptor(e_m.witch, 5, 2, 17, 'CreatorOfWidows', true, '776539124&show_for_all=6660f346e4', 'second'),
    new Descriptor(e_m.spider_lair, 5, 2, 17, 'CreatorOfWidows', true, '776538520&show_for_all=a043ec73c8', 'second'),
    new Descriptor(e_m.spiders, 5, 2, 17, 'CreatorOfWidows', true, '776535615&show_for_all=6d4539d484', 'second'),
    new Descriptor(e_m.three_heroes, 5, 2, 17, 'CreatorOfWidows', true, '776534303&show_for_all=f4b7e3c3e2', 'second'),
    new Descriptor(e_m.son_ambush, 5, 2, 17, 'CreatorOfWidows', true, '776533140&show_for_all=0269e46ebd', 'second'),
    new Descriptor(e_m.harpies, 5, 2, 17, 'CreatorOfWidows', true, '776532106&show_for_all=1e3917e95d', 'second'),
    new Descriptor(e_m.ambush, 5, 2, 17, 'CreatorOfWidows', true, '776531208&show_for_all=b064259848', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 2, 17, 'CreatorOfWidows', true, '776529929&show_for_all=6b1bcfe729', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'CreatorOfWidows', true, '776419627&show_for_all=86cdfe8816', 'second'),
    new Descriptor(e_m.last_fight, 5, 0, 17, 'CreatorOfWidows', false, '776418325&show_for_all=ef340faa61', 'second'),
    new Descriptor(e_m.undead_boss, 5, 0, 17, 'CreatorOfWidows', true, '776416953&show_for_all=36b65e6fa0', 'second'),
    new Descriptor(e_m.vampires, 5, 0, 17, 'CreatorOfWidows', true, '776416426&show_for_all=d2933249c9', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 17, 'CreatorOfWidows', true, '776414992&show_for_all=8808ae82fe', 'second'),
    new Descriptor(e_m.pirate_crypt, 5, 0, 17, 'CreatorOfWidows', true, '776414477&show_for_all=009372f3cf', 'second'),
    new Descriptor(e_m.crypt_witch, 5, 0, 17, 'CreatorOfWidows', true, '776413659&show_for_all=b8f8388acf', 'second'),
    new Descriptor(e_m.tomb_hero, 5, 0, 17, 'CreatorOfWidows', true, '776400100&show_for_all=7d79e635af', 'second'),
    new Descriptor(e_m.crypt_guards, 5, 0, 17, 'CreatorOfWidows', true, '776399562&show_for_all=3a7a724596', 'second'),
    new Descriptor(e_m.third_undeads, 5, 0, 17, 'CreatorOfWidows', true, '776398681&show_for_all=edd464665a', 'second'),
    new Descriptor(e_m.second_undeads, 5, 0, 17, 'CreatorOfWidows', true, '776398104&show_for_all=1e583076cc', 'second'),
    new Descriptor(e_m.second_wisp, 5, 0, 17, 'CreatorOfWidows', true, '776397484&show_for_all=947589c6d0', 'second'),
    new Descriptor(e_m.disciple, 5, 0, 17, 'CreatorOfWidows', true, '776395704&show_for_all=33e5951a4c', 'second'),
    new Descriptor(e_m.nekr_hero, 5, 0, 17, 'CreatorOfWidows', true, '776395106&show_for_all=1eebc72ec1', 'second'),
    new Descriptor(e_m.first_wisp, 5, 0, 17, 'CreatorOfWidows', true, '776394207&show_for_all=8a97a09ad0', 'second'),
    new Descriptor(e_m.first_undeads, 5, 0, 17, 'CreatorOfWidows', true, '776393537&show_for_all=cd92f80338', 'second'),
    new Descriptor(e_m.furies, 5, 0, 17, 'CreatorOfWidows', true, '776385337&show_for_all=6d55e38079', 'second'),
    new Descriptor(e_m.witch, 5, 0, 17, 'CreatorOfWidows', true, '776384658&show_for_all=0cc1c722f3', 'second'),
    new Descriptor(e_m.spider_lair, 5, 0, 17, 'CreatorOfWidows', true, '776383940&show_for_all=ccf284b49d', 'second'),
    new Descriptor(e_m.spiders, 5, 0, 17, 'CreatorOfWidows', true, '776383433&show_for_all=fda18ae439', 'second'),
    new Descriptor(e_m.three_heroes, 5, 0, 17, 'CreatorOfWidows', true, '776381884&show_for_all=430c2a5b65', 'second'),
    new Descriptor(e_m.son_ambush, 5, 0, 17, 'CreatorOfWidows', true, '776381546&show_for_all=3954e910f5', 'second'),
    new Descriptor(e_m.harpies, 5, 0, 17, 'CreatorOfWidows', true, '776380760&show_for_all=5403fd37b3', 'second'),
    new Descriptor(e_m.ambush, 5, 0, 17, 'CreatorOfWidows', true, '776379681&show_for_all=3a1ba673d4', 'second'),
    new Descriptor(e_m.hungry_zombies, 5, 0, 17, 'CreatorOfWidows', true, '776378538&show_for_all=86d1f6181a', 'second'),
    new Descriptor(e_m.last_fight, 6, 0, 17, 'CreatorOfWidows', true, '775930164&show_for_all=862e779edf', 'second'),
    new Descriptor(e_m.undead_boss, 6, 0, 17, 'CreatorOfWidows', true, '775926733&show_for_all=a339574c09', 'second'),
    new Descriptor(e_m.vampires, 6, 0, 17, 'CreatorOfWidows', true, '775925259&show_for_all=9316523f1f', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'CreatorOfWidows', true, '775921805&show_for_all=5464f4eaba', 'second'),
    new Descriptor(e_m.crypt_witch, 6, 0, 17, 'CreatorOfWidows', true, '775920237&show_for_all=af0a376866', 'second'),
    new Descriptor(e_m.pirate_crypt, 6, 0, 17, 'CreatorOfWidows', true, '775919015&show_for_all=4403bbe9cc', 'second'),
    new Descriptor(e_m.tomb_hero, 6, 0, 17, 'CreatorOfWidows', true, '775917534&show_for_all=1ae6fa1885', 'second'),
    new Descriptor(e_m.crypt_guards, 6, 0, 17, 'CreatorOfWidows', true, '775915500&show_for_all=280b34c460', 'second'),
    new Descriptor(e_m.third_undeads, 6, 0, 17, 'CreatorOfWidows', true, '775908291&show_for_all=c59ee48ed0', 'second'),
    new Descriptor(e_m.second_undeads, 6, 0, 17, 'CreatorOfWidows', true, '775896173&show_for_all=c7c1adf115', 'second'),
    new Descriptor(e_m.second_wisp, 6, 0, 17, 'CreatorOfWidows', true, '775894519&show_for_all=71dd66040f', 'second'),
    new Descriptor(e_m.disciple, 6, 0, 17, 'CreatorOfWidows', true, '775891941&show_for_all=1e5c32ce68', 'second'),
    new Descriptor(e_m.nekr_hero, 6, 0, 17, 'CreatorOfWidows', true, '775890854&show_for_all=f1b5063b2e', 'second'),
    new Descriptor(e_m.first_wisp, 6, 0, 17, 'CreatorOfWidows', true, '775889613&show_for_all=44ffedf2c7', 'second'),
    new Descriptor(e_m.first_undeads, 6, 0, 17, 'CreatorOfWidows', true, '775887746&show_for_all=7efb7ee3ae', 'second'),
    new Descriptor(e_m.furies, 6, 0, 17, 'CreatorOfWidows', true, '775882996&show_for_all=2009c2c70f', 'second'),
    new Descriptor(e_m.witch, 6, 0, 17, 'CreatorOfWidows', true, '775882330&show_for_all=4cee4c7b54', 'second'),
    new Descriptor(e_m.spider_lair, 6, 0, 17, 'CreatorOfWidows', true, '775881385&show_for_all=87812bca42', 'second'),
    new Descriptor(e_m.spiders, 6, 0, 17, 'CreatorOfWidows', true, '775880735&show_for_all=8a535b4135', 'second'),
    new Descriptor(e_m.three_heroes, 6, 0, 17, 'CreatorOfWidows', true, '775879740&show_for_all=31c670a83d', 'second'),
    new Descriptor(e_m.son_ambush, 6, 0, 17, 'CreatorOfWidows', true, '775879223&show_for_all=c18ef476bb', 'second'),
    new Descriptor(e_m.harpies, 6, 0, 17, 'CreatorOfWidows', true, '775878362&show_for_all=cfa1de0a0e', 'second'),
    new Descriptor(e_m.ambush, 6, 0, 17, 'CreatorOfWidows', true, '775877021&show_for_all=6f0e324902', 'second'),
    new Descriptor(e_m.hungry_zombies, 6, 0, 17, 'CreatorOfWidows', true, '775875900&show_for_all=2b449e3afd', 'second'),
    new Descriptor(e_m.last_fight, 4, 0, 17, 'CreatorOfWidows', true, '774653832&show_for_all=768f9494c3', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 17, 'CreatorOfWidows', true, '774652260&show_for_all=c61090812f', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 17, 'CreatorOfWidows', false, '774651387&show_for_all=b9429636dd', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 17, 'CreatorOfWidows', false, '774650978&show_for_all=79ce794075', 'second'),
    new Descriptor(e_m.vampires, 4, 0, 17, 'CreatorOfWidows', false, '774650327&show_for_all=915200b17a', 'second'),
    new Descriptor(e_m.undead_boss, 4, 0, 17, 'CreatorOfWidows', true, '774649653&show_for_all=5dace03147', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 0, 17, 'CreatorOfWidows', true, '774649186&show_for_all=64d68b84ad', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'CreatorOfWidows', true, '774647355&show_for_all=916ce91782', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 0, 17, 'CreatorOfWidows', true, '774646567&show_for_all=ec919d462b', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 0, 17, 'CreatorOfWidows', true, '774645691&show_for_all=0e0fb7cd4e', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'CreatorOfWidows', true, '774644554&show_for_all=09ad9194c1', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 0, 17, 'CreatorOfWidows', false, '774643837&show_for_all=d7910b4259', 'second'),
    new Descriptor(e_m.third_undeads, 4, 0, 17, 'CreatorOfWidows', true, '774640576&show_for_all=d7ec0bd64b', 'second'),
    new Descriptor(e_m.second_undeads, 4, 0, 17, 'CreatorOfWidows', true, '774639536&show_for_all=c46d6092d9', 'second'),
    new Descriptor(e_m.second_wisp, 4, 0, 17, 'CreatorOfWidows', true, '774612817&show_for_all=ae8416fa68', 'second'),
    new Descriptor(e_m.disciple, 4, 0, 17, 'CreatorOfWidows', true, '774612145&show_for_all=1e51d7039f', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 0, 17, 'CreatorOfWidows', true, '774611985&show_for_all=8ca1eebb5c', 'second'),
    new Descriptor(e_m.first_wisp, 4, 0, 17, 'CreatorOfWidows', true, '774611740&show_for_all=68706b07e2', 'second'),
    new Descriptor(e_m.first_undeads, 4, 0, 17, 'CreatorOfWidows', true, '774611530&show_for_all=1b71ac0616', 'second'),
    new Descriptor(e_m.furies, 4, 0, 17, 'CreatorOfWidows', true, '774611291&show_for_all=bf080aab31', 'second'),
    new Descriptor(e_m.witch, 4, 0, 17, 'CreatorOfWidows', true, '774611127&show_for_all=1485175e98', 'second'),
    new Descriptor(e_m.spider_lair, 4, 0, 17, 'CreatorOfWidows', true, '774610944&show_for_all=a353a18783', 'second'),
    new Descriptor(e_m.spiders, 4, 0, 17, 'CreatorOfWidows', true, '774610759&show_for_all=b3d15badd5', 'second'),
    new Descriptor(e_m.three_heroes, 4, 0, 17, 'CreatorOfWidows', true, '774610351&show_for_all=c5e0eaf855', 'second'),
    new Descriptor(e_m.son_ambush, 4, 0, 17, 'CreatorOfWidows', true, '774610206&show_for_all=10fe464618', 'second'),
    new Descriptor(e_m.harpies, 4, 0, 17, 'CreatorOfWidows', true, '774609882&show_for_all=469a8192f1', 'second'),
    new Descriptor(e_m.ambush, 4, 0, 17, 'CreatorOfWidows', true, '774609608&show_for_all=268041bd50', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 0, 17, 'CreatorOfWidows', true, '774608898&show_for_all=afa6c1f4d2', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'CreatorOfWidows', true, '772945176&show_for_all=3dd3283557', 'second'),
    new Descriptor(e_m.last_fight, 4, 1, 17, 'CreatorOfWidows', false, '772944415&show_for_all=a842aa7f6d', 'second'),
    new Descriptor(e_m.undead_boss, 4, 1, 17, 'CreatorOfWidows', true, '772942967&show_for_all=854fac0bdd', 'second'),
    new Descriptor(e_m.crypt_witch, 4, 1, 17, 'CreatorOfWidows', true, '772941985&show_for_all=787f2bb857', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 17, 'CreatorOfWidows', true, '772939147&show_for_all=e3483c4f41', 'second'),
    new Descriptor(e_m.pirate_crypt, 4, 1, 17, 'CreatorOfWidows', true, '772938112&show_for_all=b3df8dc098', 'second'),
    new Descriptor(e_m.tomb_hero, 4, 1, 17, 'CreatorOfWidows', true, '772937294&show_for_all=d5c4d0de89', 'second'),
    new Descriptor(e_m.crypt_guards, 4, 1, 17, 'CreatorOfWidows', true, '772936384&show_for_all=55a09d7a04', 'second'),
    new Descriptor(e_m.third_undeads, 4, 1, 17, 'CreatorOfWidows', true, '772935772&show_for_all=c245f48dfe', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'CreatorOfWidows', true, '772934948&show_for_all=42128113fc', 'second'),
    new Descriptor(e_m.second_undeads, 4, 1, 17, 'CreatorOfWidows', true, '772934158&show_for_all=b950011002', 'second'),
    new Descriptor(e_m.second_wisp, 4, 1, 17, 'CreatorOfWidows', true, '772932457&show_for_all=29fb449036', 'second'),
    new Descriptor(e_m.vampires, 4, 1, 17, 'CreatorOfWidows', true, '772930948&show_for_all=00b6ade619', 'second'),
    new Descriptor(e_m.disciple, 4, 1, 17, 'CreatorOfWidows', true, '772930015&show_for_all=b7ad8a73e9', 'second'),
    new Descriptor(e_m.nekr_hero, 4, 1, 17, 'CreatorOfWidows', true, '772929229&show_for_all=14b775b18e', 'second'),
    new Descriptor(e_m.first_wisp, 4, 1, 17, 'CreatorOfWidows', true, '772928153&show_for_all=a955380247', 'second'),
    new Descriptor(e_m.first_undeads, 4, 1, 17, 'CreatorOfWidows', true, '772926781&show_for_all=e7c9e4bbd2', 'second'),
    new Descriptor(e_m.harpies, 4, 1, 17, 'CreatorOfWidows', true, '772925704&show_for_all=5d8eb5b996', 'second'),
    new Descriptor(e_m.furies, 4, 1, 17, 'CreatorOfWidows', true, '772924592&show_for_all=5637a5b87f', 'second'),
    new Descriptor(e_m.witch, 4, 1, 17, 'CreatorOfWidows', true, '772923913&show_for_all=744ad546cb', 'second'),
    new Descriptor(e_m.spider_lair, 4, 1, 17, 'CreatorOfWidows', true, '772923047&show_for_all=a2c738cfc5', 'second'),
    new Descriptor(e_m.spiders, 4, 1, 17, 'CreatorOfWidows', true, '772922621&show_for_all=c199b99adf', 'second'),
    new Descriptor(e_m.three_heroes, 4, 1, 17, 'CreatorOfWidows', true, '772921390&show_for_all=e8da3ae167', 'second'),
    new Descriptor(e_m.son_ambush, 4, 1, 17, 'CreatorOfWidows', true, '772920782&show_for_all=6d914dd86c', 'second'),
    new Descriptor(e_m.ambush, 4, 1, 17, 'CreatorOfWidows', true, '772919559&show_for_all=41311f42bf', 'second'),
    new Descriptor(e_m.hungry_zombies, 4, 1, 17, 'CreatorOfWidows', true, '772915087&show_for_all=b0fd6bb944', 'second'),
  ];
}
  
//----------------------------------------------------------------------------//
  
}());  // wrapper end

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