[grilo-plugins/wip/jfelder/theaudiodb-artist-art: 5/5] theaudiobd: Add support for artist art



commit 1d6c5908f8935ab433e13931ce81036c05b5db4d
Author: Jean Felder <jfelder src gnome org>
Date:   Sat Jul 27 23:18:18 2019 +0200

    theaudiobd: Add support for artist art
    
    Before, we could only resolve thumbnail for albums. With this commit,
    if only artist key is set, we can resolve the artist thumbnail as
    well. That means we remove the album as a required metadata-key for
    resolve operation and allow it to be optional.
    
    The unit test is also updated to test the artist art retrieval.

 src/lua-factory/sources/grl-theaudiodb-cover.lua   | 45 +++++++++-----
 tests/lua-factory/sources/data/config.ini          |  6 ++
 .../sources/data/theaudiodb_coldplay.txt           |  1 +
 .../sources/data/theaudiodb_systemofadown.txt      |  1 +
 tests/lua-factory/sources/test_lua_theaudiodb.c    | 69 ++++++++++++++++++++++
 5 files changed, 108 insertions(+), 14 deletions(-)
---
diff --git a/src/lua-factory/sources/grl-theaudiodb-cover.lua 
b/src/lua-factory/sources/grl-theaudiodb-cover.lua
index b7127336..efa7bce1 100644
--- a/src/lua-factory/sources/grl-theaudiodb-cover.lua
+++ b/src/lua-factory/sources/grl-theaudiodb-cover.lua
@@ -27,7 +27,7 @@
 source = {
   id = "grl-theaudiodb-cover",
   name = "TheAudioDB Cover",
-  description = "a source for music covers",
+  description = "a source for album covers and artist art",
   supported_keys = { 'thumbnail' },
   supported_media = { 'audio' },
   config_keys = {
@@ -35,7 +35,8 @@ source = {
   },
   resolve_keys = {
     ["type"] = "audio",
-    required = { "artist", "album" },
+    required = { "artist" },
+    optional = { "album" },
   },
   tags = { 'music', 'net:internet' },
 }
@@ -48,9 +49,14 @@ netopts = {
 -- Source utils --
 ------------------
 theaudiodb = {}
-covers_fields = {"strAlbumThumb", "strAlbumThumbBack", "strAlbumCDart", "strAlbumSpine"}
+covers_fields = {
+  album = {"strAlbumThumb", "strAlbumThumbBack", "strAlbumCDart", "strAlbumSpine"},
+  artists = {"strArtistThumb", "strArtistClearart", "strArtistFanart", "strArtistFanart2", 
"strArtistFanart3"}
+}
 
-THEAUDIODB_SEARCH_ALBUM = 'https://theaudiodb.com/api/v1/json/%s/searchalbum.php?s=%s&a=%s'
+THEAUDIODB_ROOT_URL = "https://theaudiodb.com/api/v1/json/%s/";
+THEAUDIODB_SEARCH_ALBUM = THEAUDIODB_ROOT_URL .. "searchalbum.php?s=%s&a=%s"
+THEAUDIODB_SEARCH_ARTIST = THEAUDIODB_ROOT_URL .. "search.php?s=%s"
 
 ---------------------------------
 -- Handlers of Grilo functions --
@@ -61,29 +67,40 @@ function grl_source_init (configs)
   return true
 end
 
+-- Resolve operation is able to download artist arts or album cover arts.
+-- To download an album cover art, both artist and album keys have to be set.
+-- To download an artist art, only the artist key has to be set.
 function grl_source_resolve()
   local url, keys
   local artist, album
+  local search_type
 
   keys = grl.get_media_keys()
-  if not keys or not keys.artist or not keys.album
-    or #keys.artist == 0 or #keys.album == 0 then
+
+  if not keys.artist or #keys.artist == 0 then
     grl.callback()
     return
   end
 
-  -- Prepare artist and album strings to the url
+  -- Prepare artist and optional album strings to the url
   artist = grl.encode(keys.artist)
-  album = grl.encode(keys.album)
-  url = string.format(THEAUDIODB_SEARCH_ALBUM, theaudiodb.api_key, artist, album)
-  grl.fetch(url, netopts, fetch_cb)
+  if keys.album and  #keys.album > 0 then
+    search_type = "album"
+    album = grl.encode(keys.album)
+    url = string.format(THEAUDIODB_SEARCH_ALBUM, theaudiodb.api_key, artist, album)
+  else
+    search_type = "artists"
+    url = string.format(THEAUDIODB_SEARCH_ARTIST, theaudiodb.api_key, artist)
+  end
+
+  grl.fetch(url, netopts, fetch_cb, search_type)
 end
 
 ---------------
 -- Utilities --
 ---------------
 
-function fetch_cb(result)
+function fetch_cb(result, search_type)
   local json = {}
 
   if not result then
@@ -92,15 +109,15 @@ function fetch_cb(result)
   end
 
   json = grl.lua.json.string_to_table(result)
-  if not json or not json.album or #json.album == 0 then
+  if not json or not json[search_type] or #json[search_type] == 0 then
     grl.callback()
     return
   end
 
   local media = {}
   local thumb = {}
-  for _, val in ipairs(covers_fields) do
-    thumb[#thumb + 1] = json.album[1][val] or nil
+  for _, val in ipairs(covers_fields[search_type]) do
+    thumb[#thumb + 1] = json[search_type][1][val] or nil
   end
 
   media.thumbnail = thumb
diff --git a/tests/lua-factory/sources/data/config.ini b/tests/lua-factory/sources/data/config.ini
index 4844157b..04ce1798 100644
--- a/tests/lua-factory/sources/data/config.ini
+++ b/tests/lua-factory/sources/data/config.ini
@@ -19,3 +19,9 @@ data = acoustid_radiohead_paranoid_android.txt
 data = theaudiodb_pixies_doolittle.txt
 [https://theaudiodb.com/api/v1/json/THEAUDIODB_TEST_MOCK_API_KEY/searchalbum.php?s=nirvana&a=nevermind]
 data = theaudiodb_radiohead_nevermind.txt
+[https://theaudiodb.com/api/v1/json/THEAUDIODB_TEST_MOCK_API_KEY/search.php?s=coldplay]
+data = theaudiodb_coldplay.txt
+[https://theaudiodb.com/api/v1/json/THEAUDIODB_TEST_MOCK_API_KEY/search.php?s=coldplay]
+data = theaudiodb_coldplay.txt
+[https://theaudiodb.com/api/v1/json/THEAUDIODB_TEST_MOCK_API_KEY/search.php?s=system%20of%20a%20down]
+data = theaudiodb_systemofadown.txt
diff --git a/tests/lua-factory/sources/data/theaudiodb_coldplay.txt 
b/tests/lua-factory/sources/data/theaudiodb_coldplay.txt
new file mode 100644
index 00000000..559c1708
--- /dev/null
+++ b/tests/lua-factory/sources/data/theaudiodb_coldplay.txt
@@ -0,0 +1 @@
+{"artists":[{"idArtist":"111239","strArtist":"Coldplay","strArtistStripped":null,"strArtistAlternate":"","strLabel":"Parlophone","idLabel":"45114","intFormedYear":"1996","intBornYear":"1996","intDiedYear":null,"strDisbanded":null,"strStyle":"Rock/Pop","strGenre":"Alternative
 
Rock","strMood":"Happy","strWebsite":"www.coldplay.com","strFacebook":"www.facebook.com/coldplay","strTwitter":"www.twitter.com/coldplay","strBiographyEN":"Coldplay
 are a British alternative rock band formed in 1996 by lead vocalist Chris Martin and lead guitarist Jonny 
Buckland at University College London. After they formed Pectoralz, Guy Berryman joined the group as a 
bassist and they changed their name to Starfish. Will Champion joined as a drummer, backing vocalist, and 
multi-instrumentalist, completing the line-up. Manager Phil Harvey is often considered an unofficial fifth 
member. The band renamed themselves \"Coldplay\" in 1998, before recording and releasing three EPs; Safety in 
1998, Brothers &
  Sisters
  as a single in 1999 and The Blue Room in the same year. The latter was their first release on a major 
label, after signing to Parlophone.\n\nThey achieved worldwide fame with the release of the single \"Yellow\" 
in 2000, followed by their debut album released in the same year, Parachutes, which was nominated for the 
Mercury Prize. The band's second album, A Rush of Blood to the Head (2002), was released to critical acclaim 
and won multiple awards, including NME's Album of the Year, and has been widely considered the best of the 
Nelson-produced Coldplay albums. Their next release, X&Y, the best-selling album worldwide in 2005, was met 
with mostly positive reviews upon its release, though some critics felt that it was inferior to its 
predecessor. The band's fourth studio album, Viva la Vida or Death and All His Friends (2008), was produced 
by Brian Eno and released again to largely favourable reviews, earning several Grammy nominations and wins at 
the 51st Grammy Awards. On 2
 4 Octobe
 r 2011, they released their fifth studio album, Mylo Xyloto, which was met with mixed to positive reviews, 
and was the UK's best-selling rock album of 2011.\n\nThe band has won a number of music awards throughout 
their career, including seven Brit Awards winning Best British Group three times, four MTV Video Music 
Awards, and seven Grammy Awards from twenty nominations. As one of the world's best-selling music artists, 
Coldplay have sold over 55 million records worldwide. In December 2009, Rolling Stone readers voted the group 
the fourth best artist of the 2000s.\n\nColdplay have been an active supporter of various social and 
political causes, such as Oxfam's Make Trade Fair campaign and Amnesty International. The group have also 
performed at various charity projects such as Band Aid 20, Live 8, Sound Relief, Hope for Haiti Now: A Global 
Benefit for Earthquake Relief, The Secret Policeman's Ball, and the Teenage Cancer 
Trust.","strBiographyDE":"Coldplay ist eine britische Po
 p-Rock-B
 and, bestehend aus Chris Martin, Jonny Buckland, Will Champion und Guy Berryman. Sie geh\u00f6rt zu den 
bekanntesten Vertretern des Britpop und ist eine der weltweit erfolgreichsten Bands des vergangenen 
Jahrzehnts. Die Band hat knapp 60 Millionen Tontr\u00e4ger weltweit verkauft, davon 40 Millionen Alben. 
Martin, Berryman, Buckland und Champion lernten sich als Studenten am University College London kennen und 
gr\u00fcndeten im September 1996 eine Band. Martin studierte Alte Geschichte, Buckland Mathematik, 
Astrophysik und Astronomie und Champion Anthropologie. Berryman studierte zun\u00e4chst 
Ingenieurswissenschaften und sp\u00e4ter Architektur. Im Gegensatz zu allen anderen Bandmitgliedern schloss 
er kein Studium ab.\nChris Martin und Jonny Buckland, die sich in der Orientierungswoche am College 
kennenlernten, waren die ersten Mitglieder der Band. Sie spielten zun\u00e4chst in einer Band namens 
\u201ePectoralz\u201c, bis Guy Berryman, ein Klassenkamerad der beiden, hinzus
 tie\u00d
 f. Urspr\u00fcnglich gr\u00fcndeten die vier Mitglieder die Band unter dem Namen \u201eStarfish\u201c. Unter 
diesem Namen spielte die Band zun\u00e4chst einige Gigs in kleineren Clubs in Camden. Phil Harvey, ein 
Studienkollege und Freund von Chris, wurde hierf\u00fcr als Manager engagiert.\nIm M\u00e4rz 1998 erschien 
die Safety EP, von der nur 500 Kopien ver\u00f6ffentlicht wurden. Diese diente gr\u00f6\u00dftenteils als 
Demo, sodass lediglich 50 Kopien in den offiziellen Verkauf gingen. Die EP ist somit eine Rarit\u00e4t und 
wird unter Sammlern enorm hoch gehandelt. Coldplay wurden daraufhin vom kleinen Independent-Label Fierce 
Panda Records unter Vertrag genommen. Die erste Ver\u00f6ffentlichung war die Brothers and Sisters EP, die im 
Februar 1999 in gerade einmal vier Tagen aufgenommen wurde.\nIm Fr\u00fchling 1999 unterschrieben Coldplay 
einen F\u00fcnf-Alben-Vertrag bei Parlophone, wo sie bis heute unter Vertrag sind. Nach ihrem ersten Auftritt 
beim Glastonbury Festival
  ging di
 e Band ins Studio, um ihre dritte EP The Blue Room aufzunehmen, von der im Oktober 5000 St\u00fcck in den 
Verkauf gingen. Bei der Produktion kam es zu Streitereien innerhalb der Band, sodass Champion durch Martin 
aus der Band geworfen wurde, jedoch kurz darauf wieder zur\u00fcckgeholt wurde. Um weiteren \u00c4rger zu 
vermeiden, beschlossen die vier, Regeln innerhalb der Band einzuf\u00fchren: 1. Gewinne werden geteilt, 2. 
Drogenkonsum f\u00fchrt zum Ausschluss aus der Band.","strBiographyFR":"Coldplay est un groupe de rock 
britannique form\u00e9 \u00e0 Londres en 1996 par le chanteur, guitariste et pianiste Chris Martin et le 
guitariste Jon Buckland. Le bassiste Guy Berryman rejoint ensuite la formation, qui prend le nom de Starfish 
avant que le batteur Will Champion devienne membre \u00e0 son tour et que le producteur Phil Harvey s'associe 
avec eux dans leur entreprise3. En 1998, le groupe voit le jour sous son appellation d\u00e9finitive et sort 
deux premiers EPs. Ils en p
 rofitent
  alors pour signer chez le label Parlophone2.\nAvec cinq albums studio publi\u00e9s, le dernier \u00e9tant 
Mylo Xyloto, sorti le 24 octobre 20114, Coldplay est aujourd'hui l'un des plus grands groupes \u00e0 
succ\u00e8s du nouveau mill\u00e9naire avec pr\u00e8s de 60 millions d'albums vendus5. Critiqu\u00e9 mais 
r\u00e9guli\u00e8rement r\u00e9compens\u00e9, le groupe a remport\u00e9 8 Brit Awards, 7 Grammy Awards, 6 Q 
Awards et 5 NME Awards. Il est aussi \u00e9lu en d\u00e9cembre 2009, quatri\u00e8me meilleur artiste des 
ann\u00e9es 2000 par les lecteurs du magazine Rolling Stone6.\nLe groupe prend cause dans diff\u00e9rentes 
\u0153uvres caritatives et officie depuis ses d\u00e9buts pour le commerce \u00e9quitable aux c\u00f4t\u00e9s 
d'Oxfam international7 et d'Amnesty International8. Cet engagement les conduit \u00e0 participer \u00e0 des 
groupes caritatifs tels que Band Aid 20 et \u00e0 jouer dans des concerts tels que le Live 8, le Fairplay7, 
le Sound Relief, le Hope for 
 Haiti No
 w7 ou le Teenage Cancer Trust9. Chris Martin et Jonny Buckland se rencontrent en septembre 1996 \u00e0 
l\u2019University College de Londres. Les deux amis, passionn\u00e9s de musique, passent le reste de 
l'ann\u00e9e universitaire \u00e0 la planification d'un groupe, finalement appel\u00e9 Pectoralz. Ils sont 
bient\u00f4t rejoints par Guy Berryman, qui \u00e9tudie \u00e0 la m\u00eame universit\u00e9. Le groupe est 
form\u00e9 en 1997. Un ami de Chris Martin, Phil Harvey, est engag\u00e9 comme manager. Le 8 janvier 1998, 
ils recrutent un quatri\u00e8me membre, Will Champion qui devient le batteur alors qu\u2019il n'a jamais 
touch\u00e9 une batterie de sa vie. A peine engag\u00e9, Will Champion organise le premier concert du groupe 
au Laurel Tree de Londres. Pour ce concert donn\u00e9 le 16 janvier 1998, ils se baptisent provisoirement 
Starfish10.\nLe nom Coldplay est propos\u00e9 par Tim Crompton11, un ami commun d'universit\u00e9 qui a 
d'abord imagin\u00e9 ce nom pour son pro
 pre grou
 pe, avant de l'abandonner, le trouvant trop d\u00e9primant. Chris Martin et ses acolytes trouvent ce nom 
parfait et d\u00e9cident de le 
garder.","strBiographyCN":"\u9177\u73a9\u6a02\u5718\uff08\u82f1\u8bed\uff1aColdplay\uff09\u662f\u6210\u7acb\u65bc1997\u5e74\u3001\u4f86\u81ea\u502b\u6566\u7684\u82f1\u570b\u53e6\u985e\u6416\u6efe\u6a02\u5718\u3002\u5718\u54e1\u5305\u62ec\u514b\u91cc\u65af\u00b7\u99ac\u6c40\uff08\u4e3b\u5531\u3001\u9375\u76e4\u3001\u5409\u4ed6\uff09\u3001\u5f37\u5c3c\u00b7\u90a6\u85cd\uff08\u4e3b\u594f\u5409\u4ed6\uff09\u3001\u84cb\u00b7\u8c9d\u745e\u66fc\uff08\u8c9d\u65af\u5409\u4ed6\uff09\u53ca\u5a01\u723e\u00b7\u67e5\u6069\uff08\u9f13\u3001\u5408\u97f3\u3001\u5176\u4ed6\u6a02\u5668\uff09\u3002\u6a02\u5718\u6700\u65e9\u6210\u5f62\u65bc\u99ac\u6c40\u8207\u90a6\u85cd\u5c31\u8b80\u65bc\u502b\u6566\u5927\u5b78\u5b78\u9662
 
(UCL)\u6642\u671f\u3002\n\u9177\u73a9\u6a02\u5718\u7684\u65e9\u671f\u4f5c\u54c1\u5e38\u88ab\u8207\u96fb\u53f0\u53f8\u4ee4\u3001U2\u3001\u5091
 \u592b\u
 
00b7\u5df4\u514b\u5229\u53ca\u5d14\u7dad\u65af\u76f8\u63d0\u4e26\u8ad6[1]\u30022000\u5e74\uff0c\u4ed6\u5011\u4ee5\u55ae\u66f2\u300aYellow\u300b\u6f38\u7372\u95dc\u6ce8\uff0c\u96a8\u5f8c\u767c\u884c\u9996\u5f35\u5c08\u8f2f\u300a\u964d\u843d\u5098\u300b\uff0c\u521d\u8a66\u557c\u8072\u4fbf\u5728\u570b\u969b\u9593\u5927\u653e\u7570\u5f69\uff0c\u4e26\u4ee5\u8a72\u5c08\u8f2f\u7372\u6c34\u661f\u97f3\u6a02\u734e\u63d0\u540d\u30022002\u5e74\uff0c\u9177\u73a9\u6a02\u5718\u4ee5\u7b2c\u4e8c\u5f35\u5c08\u8f2f\u300a\u73a9\u904e\u982d\u300b\uff0c\u596a\u5f97NME\u96dc\u8a8c\u5e74\u5ea6\u6700\u4f73\u5c08\u8f2f\u734e\u7b49\u591a\u9805\u5927\u734e\u3002\u9177\u73a9\u6a02\u5718\u63a5\u8457\u57282005\u5e74\u767c\u884c\u300aXY\u5bc6\u78bc\u300b\u5c08\u8f2f\uff0c\u96d6\u7136\u53cd\u61c9\u4e0d\u5982\u4e0a\u8ff0\u4f5c\u54c1\u71b1\u70c8\uff0c\u4f46\u4ecd\u666e\u904d\u7372\u5f97\u6b63\u9762\u8a55\u50f9\u30022008\u5e74\uff0c\u9177\u73a9\u6a02\u5718\u8207\u88fd\u4f5c\u4eba\u5e03\u840a\u6069\u00b7\u4f0a\
 u8afe\uf
 
f0c\u63a8\u51fa\u7b2c\u56db\u5f35\u5c08\u8f2f\u300a\u73a9\u9177\u4eba\u751f\u300b\uff0c\u5ee3\u53d7\u597d\u8a55\uff0c\u52c7\u596a\u845b\u840a\u7f8e\u7b49\u591a\u9805\u5927\u734e[2]\u30022011\u5e74\uff0c\u4ed6\u5011\u7e7c\u7e8c\u8207\u5e03\u840a\u6069\u00b7\u4f0a\u8afe\u5408\u4f5c\uff0c\u767c\u884c\u4e86\u7b2c\u4e94\u5f35\u5c08\u8f2f\u300a\u5f69\u7e6a\u4eba\u751f\u300b\uff0c\u548c\u4e4b\u524d\u7684\u5e7e\u5f35\u5c08\u8f2f\u4e00\u6a23\u53d6\u5f97\u4e86\u71b1\u70c8\u7684\u53cd\u97ff\u3002\u5728\u5168\u7403\uff0c\u9177\u73a9\u6a02\u5718\u5df2\u64c1\u6709\u8d85\u904e\u4e94\u5343\u842c\u7684\u5c08\u8f2f\u92b7\u552e\u91cf[3]\u3002\n\u81ea\u767c\u884c\u4e86\u300a\u964d\u843d\u5098\u300b\u5f8c\uff0c\u9177\u73a9\u6a02\u5718\u7684\u6bcf\u5f35\u5c08\u8f2f\u4f5c\u54c1\u7686\u4f86\u6709\u81ea\u5404\u65b9\u7684\u5f71\u97ff\uff0c\u5982\u300a\u73a9\u904e\u982d\u300b\u7684\u56de\u8072\u8207\u5154\u4eba\u5408\u5531\u5718[4]\u3001\u51f1\u7279\u00b7\u5e03\u5e0c\u3001\u55ac\u6cbb\u00b7\u54c8\u91c
 c\u68ee[
 
5]\u8207\u8b2c\u601d\u5408\u5531\u5718[6]\uff0c\u300aXY\u5bc6\u78bc\u300b\u7684\u5f37\u5c3c\u00b7\u51f1\u8a31\u8207\u767c\u96fb\u5ee0\u6a02\u5718[7]\uff0c\u4ee5\u53ca\u300a\u73a9\u9177\u4eba\u751f\u300b\u7684\u5e03\u52d2\u5408\u5531\u5718\u3001\u62f1\u5eca\u4e4b\u706b\u6a02\u5718\u8207\u6211\u7684\u8840\u8165\u60c5\u4eba\u7bc0\u5408\u5531\u5718[8]\u3002\u9177\u73a9\u6a02\u5718\u540c\u6642\u4e5f\u7a4d\u6975\u6295\u8eab\u65bc\u793e\u6703\u8207\u653f\u6cbb\u7d44\u7e54\u6d3b\u52d5\uff0c\u5982\u6a02\u65bd\u6703\u7684\u8cbf\u6613\u8981\u516c\u5e73\u6d3b\u52d5\u53ca\u570b\u969b\u7279\u8d66\u7d44\u7e54\u7b49\u3002\u9177\u73a9\u6a02\u5718\u4ea6\u53c3\u8207\u6f14\u51fa\u5404\u5f0f\u6148\u5584\u6d3b\u52d5\u4e2d\uff0c\u5982Band
 Aid 
20\u3001\u73fe\u5834\u516b\u65b9\u3001\u9752\u5c11\u5e74\u764c\u75c7\u7c4c\u6b3e\u97f3\u6a02\u6703\u7b49[9]\u3002","strBiographyIT":"
 Coldplay sono un gruppo alternative rock britannico formatosi a Londra nel 1997. La band \u00e8 composta da 
Chris Martin (voc
 e, tasti
 ere, chitarra), Jonny Buckland (chitarra), Guy Berryman (basso) e Will Champion (batteria). I Coldplay 
raggiunsero la fama mondiale con il loro singolo Yellow, contenuto nel loro album di debutto Parachutes 
(2000). Il brano divent\u00f2 presto una hit e nel luglio 2000 arriv\u00f2 a piazzarsi alla quarta posizione 
della classifica dei singoli britannica. Il loro secondo album A Rush of Blood to the Head (2002) segna la 
loro consacrazione e consente alla band di acquisire notoriet\u00e0 in tutto il mondo. L'album si piazz\u00f2 
direttamente al 1\u00ba posto della UK Albums Chart e al 5\u00ba posto della Billboard 200. La loro 
successiva pubblicazione, X&Y (2005) ricevette una fredda accoglienza da parte della critica, ma riusc\u00ec 
comunque a tenere i ritmi di vendita dei precedenti album. Con il loro quarto album in studio Viva la Vida or 
Death and All His Friends, trainato dalla hit Viva la vida e prodotto da Brian Eno, la band ottenne numerose 
recensioni favorevoli, oltre
  alla vi
 ttoria di tre Grammy. I Coldplay con il loro quarto album in studio hanno raggiunto il traguardo dei 50 
milioni totali di dischi venduti.\n\nLo stile dei Coldplay del periodo Parachutes \u00e8 comparabile con 
quello dei Radiohead, degli U2, dei Travis e a quello di Jeff Buckley.[9] Per A Rush of Blood to the Head, i 
Coldplay si rifanno a stili pi\u00f9 similari a The Beatles, Echo & the Bunnymen, Kate Bush e George 
Harrison; per X&Y vengono influenzati da Johnny Cash e Kraftwerk, mentre si basano sullo stile dei Blur, 
degli Arcade Fire e dei My Bloody Valentine per Viva la Vida or Death and all his Friends.\n\nLa band ha 
anche molto a cuore le questioni politiche e sociali del mondo, sono impegnati attivamente nella causa 
portata avanti da Oxfam ed hanno sostenuto altre importanti cause suonando in concerti come il Live 8 e 
partecipando al Band 
Aid.","strBiographyJP":"\u5927\u8846\u6027\u3092\u5f37\u304f\u6301\u3064\u697d\u66f2\u304c\u591a\u304f\u3001\u73fe\u5728\u306e\u97f3
 \u697d\u
 
30b7\u30fc\u30f3\u306b\u304a\u3044\u3066\u6700\u3082\u5927\u304d\u306a\u5546\u696d\u7684\u6210\u529f\u3092\u5f97\u3066\u3044\u308b\u30d0\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308b\u3002
 
1997\u5e74\u306b\u30ed\u30f3\u30c9\u30f3\u3067\u7d50\u6210\u3055\u308c\u308b\u3002\u30e1\u30f3\u30d0\u30fc\u306f\u3001\u30af\u30ea\u30b9\u30fb\u30de\u30fc\u30c6\u30a3\u30f3\uff08\u30dc\u30fc\u30ab\u30eb\u30fb\u30ae\u30bf\u30fc\u30fb\u30d4\u30a2\u30ce\uff09\u3001\u30b8\u30e7\u30cb\u30fc\u30fb\u30d0\u30c3\u30af\u30e9\u30f3\u30c9\uff08\u30ae\u30bf\u30fc\uff09\u3001\u30ac\u30a4\u30fb\u30d9\u30ea\u30fc\u30de\u30f3\uff08\u30d9\u30fc\u30b9\uff09\u3001\u30a6\u30a3\u30eb\u30fb\u30c1\u30e3\u30f3\u30d4\u30aa\u30f3\uff08\u30c9\u30e9\u30e0\uff09\u304b\u3089\u69cb\u6210\u3055\u308c\u308b\u3002\u30e1\u30f3\u30d0\u30fc4\u4eba\u3068\u3082\u6559\u5e2b\u306e\u606f\u5b50\u305f\u3061\u3067\u3042\u308b\u3002\n2000\u5e74\u3001\u30c7\u30d3\u30e5\u30fc\u30fb\u30a2\u30eb\u30d0\u30e0\u300e\u30d1\u30e9\u30b7\u30e5\
 u30fc\u3
 
0c4\u300f\u3068\u30b7\u30f3\u30b0\u30eb\u300cYellow\u300d\u306e\u5927\u30d2\u30c3\u30c8\u306b\u3088\u308a\u4e16\u754c\u7684\u306a\u6210\u529f\u3092\u5f97\u305f\u3002\u73fe\u5728\u307e\u3067\u306b\u7dcf\u8a086600\u4e07\u679a\u4ee5\u4e0a\u306e\u30a2\u30eb\u30d0\u30e0\u3092\u58f2\u308a\u4e0a\u3052\u30012000\u5e74\u4ee3\u306b\u304a\u3051\u308b\u6700\u3082\u6210\u529f\u3057\u305f\u30d0\u30f3\u30c9\u306e\u3072\u3068\u3064\u3067\u3042\u308b\u3002\u300e\u30d1\u30e9\u30b7\u30e5\u30fc\u30c4\u300f\u306f\u5168\u4e16\u754c\u3067\u7d04950\u4e07\u679a\u30012nd\u30a2\u30eb\u30d0\u30e0\u300e\u9759\u5bc2\u306e\u4e16\u754c\u300f\u306f\u7d041400\u4e07\u679a\u30013rd\u30a2\u30eb\u30d0\u30e0\u3068\u306a\u308b\u300eX&Y\u300f\u306f\u7d041000\u4e07\u679a\u306e\u30bb\u30fc\u30eb\u30b9\u3092\u8a18\u9332\u3057\u305f\u3002\u30d6\u30e9\u30a4\u30a2\u30f3\u30fb\u30a4\u30fc\u30ce\u3092\u30d7\u30ed\u30c7\u30e5\u30fc\u30b5\u30fc\u306b\u8fce\u3048\u305f4\u679a\u76ee\u3068\u306a\u308b\u30b9\u30bf\u30b8\u30aa\u3
 0fb\u30a
 
2\u30eb\u30d0\u30e0\u3001\u300e\u7f8e\u3057\u304d\u751f\u547d\u300f\u306f2008\u5e746\u6708\u306b\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u3001\u7d043,300\u4e07\u679a\u306e\u5927\u30d2\u30c3\u30c8\u3092\u8a18\u9332\u3057\u305f\u3002\u300c\u30a4\u30a8\u30ed\u30fc\u300d\u3001\u300c\u30b9\u30d4\u30fc\u30c9\u30fb\u30aa\u30d6\u30fb\u30b5\u30a6\u30f3\u30c9\u300d\u30842003\u5e74\u306b\u30b0\u30e9\u30df\u30fc\u8cde\u300c\u6700\u512a\u79c0\u30ec\u30b3\u30fc\u30c9\u8cde\u300d\u3092\u53d7\u8cde\u3057\u305f\u300c\u30af\u30ed\u30c3\u30af\u30b9\u300d\u3001\u3055\u3089\u306b\u6700\u65b0\u30b7\u30f3\u30b0\u30eb\u300c\u7f8e\u3057\u304d\u751f\u547d\u300d\u3068\u3044\u3063\u305f\u6570\u591a\u304f\u306e\u30d2\u30c3\u30c8\u66f2\u304c\u3042\u308b\u3053\u3068\u3067\u77e5\u3089\u308c\u308b\u3002\n\u30b3\u30fc\u30eb\u30c9\u30d7\u30ec\u30a4\u306f\u3055\u307e\u3056\u307e\u306a\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u306e\u5f71\u97ff\u3092\u53d7\u3051\u3066\u3044\u308b\u3002\u30ae\u30bf\u30fc\u3068\u30d5\u30a1
 \u30eb\u
 
30bb\u30c3\u30c8\u30dc\u30fc\u30ab\u30eb\u4e2d\u5fc3\u306e\u66f2\u304c\u591a\u3044\u30ec\u30c7\u30a3\u30aa\u30d8\u30c3\u30c9\u3084\u30c8\u30e9\u30f4\u30a3\u30b9\u3092\u306f\u3058\u3081\u3001U2\u304b\u3089\u3082\u5f37\u3044\u5f71\u97ff\u3092\u53d7\u3051\u3066\u3044\u308b\u3068\u3055\u308c\u308b\u3002\u300e\u30d1\u30e9\u30b7\u30e5\u30fc\u30c4\u300f\u4ee5\u964d\u306f\u4ed6\u65b9\u9762\u304b\u3089\u306e\u5f71\u97ff\u3092\u5f97\u305f\u3068\u3055\u308c\u3001\u300e\u9759\u5bc2\u306e\u4e16\u754c\u300f\u3067\u306f\u30a8\u30b3\u30fc&\u30b6\u30fb\u30d0\u30cb\u30fc\u30e1\u30f3\u3084\u30b8\u30e7\u30fc\u30b8\u30fb\u30cf\u30ea\u30b9\u30f3\u3001\u300eX&Y\u300f\u3067\u306f\u30b8\u30e7\u30cb\u30fc\u30fb\u30ad\u30e3\u30c3\u30b7\u30e5\u304b\u3089\u306e\u5f71\u97ff\u3084\u30af\u30e9\u30d5\u30c8\u30ef\u30fc\u30af\u7684\u4f5c\u98a8\u306b\u3082\u6311\u6226\u3057\u3066\u3044\u308b\u3002\n\u30b3\u30fc\u30eb\u30c9\u30d7\u30ec\u30a4\u306f\u30d5\u30a7\u30a2\u30c8\u30ec\u30fc\u30c9\u3084\u30a2\u30e0\u30c
 d\u30b9\
 
u30c6\u30a3\u30fb\u30a4\u30f3\u30bf\u30fc\u30ca\u30b7\u30e7\u30ca\u30eb\u306a\u3069\u306e\u793e\u4f1a\u7684\u30fb\u653f\u6cbb\u7684\u904b\u52d5\u3092\u6d3b\u767a\u306b\u652f\u6301\u3057\u3066\u3044\u308b\u3002\u3055\u3089\u306b\u30d0\u30f3\u30c9\u30fb\u30a8\u30a4\u30c9\u3084LIVE
 
8\u306a\u3069\u306e\u6148\u5584\u30b3\u30f3\u30b5\u30fc\u30c8\u306b\u304a\u3044\u3066\u3082\u516c\u6f14\u3092\u884c\u3063\u3066\u3044\u308b\u3002","strBiographyRU":"\u00abColdplay\u00bb
 (\u043f\u0440\u043e\u0438\u0437\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a\u0430\u043a 
\u041a\u043e\u043b\u0434\u043f\u043b\u044d\u0300\u0439) \u2014 
\u0431\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430\u044f 
\u0440\u043e\u043a-\u0433\u0440\u0443\u043f\u043f\u0430. \u041d\u0430\u0447\u0430\u0432 
\u0438\u0433\u0440\u0430\u0442\u044c \u043e\u0441\u0435\u043d\u044c\u044e 1996 \u0433\u043e\u0434\u0430, 
\u0438 \u0432\u044b\u043f\u0443\u0441\u0442\u0438\u0432 \u0441\u0432\u043e\u044e 
\u043f\u0435\u0440\u0432\u0443\u
 044e \u0
 434\u0435\u043c\u043e-\u0437\u0430\u043f\u0438\u0441\u044c Safety \u0432 1998 
\u0433\u0440\u0443\u043f\u043f\u0430 \u043f\u043e\u0448\u043b\u0430 \u043f\u043e 
\u0434\u043e\u0440\u043e\u0433\u0435 \u0441\u043b\u0430\u0432\u044b, \u043d\u043e 
\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0443\u0441\u043f\u0435\u0445\u0430 \u0432 
\u043c\u0438\u0440\u0435 Coldplay \u0434\u043e\u0431\u0438\u043b\u0438\u0441\u044c 
\u0442\u043e\u043b\u044c\u043a\u043e \u0432 2000 \u0433\u043e\u0434\u0443, \u043f\u043e\u0441\u043b\u0435 
\u0432\u044b\u0445\u043e\u0434\u0430 \u0438\u0445 \u0432\u0442\u043e\u0440\u043e\u0433\u043e 
\u0441\u0438\u043d\u0433\u043b\u0430 \u00abYellow\u00bb \u0438\u0437 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430 Parachutes, 
\u0432\u043e\u0440\u0432\u0430\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u043d\u0430 
\u0432\u0435\u0440\u0448\u0438\u043d\u044b \u0432\u0441\u0435\u0445 \u0447\u0430\u0440\u0442\u043e\u0432 
\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u04
 40\u0438
 \u0442\u0430\u043d\u0438\u0438 \u0438 \u0421\u043e\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u044b\u0445 
\u0428\u0442\u0430\u0442\u043e\u0432 \u0410\u043c\u0435\u0440\u0438\u043a\u0438. 
\u0410\u043b\u044c\u0431\u043e\u043c\u044b Coldplay \u0440\u0430\u0437\u043e\u0448\u043b\u0438\u0441\u044c 
\u0442\u0438\u0440\u0430\u0436\u043e\u043c \u0431\u043e\u043b\u0435\u0435 80 
\u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 
\u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u0432.\n\n\u0413\u0440\u0443\u043f\u043f\u0430 
\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u0438\u0435 \u0432 
\u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 
\u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 
\u043f\u0440\u043e\u0435\u043a\u0442\u0430\u0445, \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u043a Band Aid 
20, Live 8, \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0432 
\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u0
 434\u043
 5\u0442\u0435\u0439, \u0431\u043e\u043b\u044c\u043d\u044b\u0445 \u0440\u0430\u043a\u043e\u043c. 
\u0422\u0430\u043a\u0436\u0435 Coldplay \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u0438 \u043d\u0430 
\u0437\u0430\u043a\u0440\u044b\u0442\u0438\u0438 
\u043f\u0430\u0440\u0430\u043b\u0438\u043c\u043f\u0438\u0439\u0441\u043a\u0438\u0445 \u0438\u0433\u0440 2012 
\u0432 \u041b\u043e\u043d\u0434\u043e\u043d\u0435.\n\n\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 
Coldplay \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f 
\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u043c\u0438 
\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043a\u0430\u043c\u0438 
\u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 
\u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0438 
\u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 
\u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0439, \u0432 
\u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438 \u041e\u043a\u0441\u0444
 \u044d\u
 043c \u2014 Make Trade Fair \u0438 
\u041c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0439 
\u0410\u043c\u043d\u0438\u0441\u0442\u0438\u0438.\n\n\u0412 \u0434\u0435\u043a\u0430\u0431\u0440\u0435 2012 
\u0433\u043e\u0434\u0430 \u043f\u043e\u0440\u0442\u0430\u043b Last.fm \u043d\u0430\u0437\u0432\u0430\u043b 
Coldplay \u043b\u0443\u0447\u0448\u0438\u043c 
\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043c \u0437\u0430 10 \u043b\u0435\u0442 
\u0441\u043a\u0440\u043e\u0431\u0431\u043b\u0438\u043d\u0433\u0430.\n\nColdplay 
\u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043f\u0440\u0435\u043c\u0438\u044e 
\u0413\u0440\u044d\u043c\u043c\u0438 \u0437\u0430 \u0432\u0441\u0435 
\u0430\u043b\u044c\u0431\u043e\u043c\u044b, \u043a\u0440\u043e\u043c\u0435 A Rush of Blood to the Head. 
\u041f\u0435\u0441\u043d\u0438 \u00abIn My Place\u00bb (\u0432 2003 \u0433\u043e\u0434\u0443), \u00abSpeed of 
Sound\u00bb (\u0432 2006), \u00abTalk\u00bb (\u0432 2007)
 , \u00ab
 Viva la Vida\u00bb (\u0432 2009), \u00abLife in Technicolor II\u00bb (2009), \u00abParadise\u00bb (\u0432 
2012), \u00abEvery Teardrop Is a Waterfall\u00bb (\u0432 2012) \u0438 \u00abCharlie Brown\u00bb (\u0432 2013) 
Coldplay \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438\u043b\u0438 
\u0431\u044b\u043b\u0438 \u043d\u043e\u043c\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u044b 
\u043d\u0430 \u043f\u0440\u0435\u043c\u0438\u0438 
\u0413\u0440\u044d\u043c\u043c\u0438.","strBiographyES":"Coldplay es una banda brit\u00e1nica de rock 
alternativo formada en Londres en 1996. El grupo est\u00e1 integrado por Chris Martin (voz, teclado, 
guitarra), Jon Buckland (guitarra principal), Guy Berryman (bajo el\u00e9ctrico) y Will Champion 
(bater\u00eda, coros y otros instrumentos). Los primeros trabajos de Coldplay hicieron que la banda fuera 
comparada repetidas veces con artistas como Oasis, Radiohead, INXS, U2 y Travis. Alcanzaron el \u00e9xito 
inter
 nacional
  con el lanzamiento de su sencillo \u00abYellow\u00bb, seguido por su \u00e1lbum de debut, Parachutes 
(2000), que fue nominado a los Premios Mercury. Su segundo \u00e1lbum, A Rush of Blood to the Head (2002) 
gan\u00f3 m\u00faltiples premios, incluido el de \u00c1lbum del A\u00f1o seg\u00fan el semanario NME. Pese a 
que su tercer \u00e1lbum, X&Y (2005) no caus\u00f3 tanto entusiasmo, tuvo igualmente una recepci\u00f3n 
positiva. El cuarto \u00e1lbum de estudio de la banda, Viva la Vida or Death and All His Friends (2008) fue 
producido por Brian Eno y gener\u00f3 excelentes cr\u00edticas, llegando a recibir nominaciones a los premios 
Grammy y otra clase de homenajes. Coldplay ha vendido internacionalmente 50 millones de copias.\nTras el 
lanzamiento de Parachutes, la banda recibi\u00f3 la influencia de otros artistas, tales como Kate Bush, U2, 
George Harrison, y Muse en A Rush of Blood to the Head, Johnny Cash en X&Y y Blur y Arcade Fire en Viva la 
Vida. Coldplay ha sido siempre
  un grup
 o defensor activo de varias causas pol\u00edticas y sociales como la campa\u00f1a de Oxfam Make Trade Fair y 
Amnist\u00eda Internacional. Adem\u00e1s han participado en muchos proyectos de caridad como Band Aid 20, 
Live 8, Sound Relief, Hope for Haiti Now: A Global Benefit for Earthquake Relief y Teenage Cancer Trust. Su 
nuevo \u00e1lbum, Mylo Xyloto debut\u00f3 en el n\u00famero 1 en 21 pa\u00edses. Debutando tambi\u00e9n en UK 
con 208.000 copias, muy lejos de su \u00e1lbum antecesor Viva la Vida or Death and All His Friends. Hasta la 
fecha el \u00e1lbum ha vendido m\u00e1s de 6 millones copias, siendo el mejor \u00e1lbum de rock vendido a 
nivel mundial desde el anterior \u00e1lbum de la banda publicado en 2008.","strBiographyPT":"Coldplay \u00e9 
uma banda de rock alternativo brit\u00e2nica formada em 1996 pelo vocalista Chris Martin eo guitarrista Jonny 
Buckland no University College London. Depois de formado Pectoralz, Guy Berryman se juntou ao grupo como 
baixista e eles 
 mudaram 
 o nome para Starfish. Will Champion entrou como baterista, backing vocal e multi-instrumentista, completando 
o line-up. Gerente de Phil Harvey \u00e9 muitas vezes considerado um quinto membro n\u00e3o oficial. A 
pr\u00f3pria banda \"Coldplay\" rebatizado em 1998, antes de gravar e lan\u00e7ar tr\u00eas EPs; 
Seguran\u00e7a em 1998, Brothers & Sisters como um single em 1999 e The Blue Room, no mesmo ano. O 
\u00faltimo foi o primeiro lan\u00e7amento em uma grande gravadora, depois de assinar com a Parlophone.\nEles 
alcan\u00e7aram a fama mundial com o lan\u00e7amento do single \"Yellow\", em 2000, seguido por seu 
\u00e1lbum de estr\u00e9ia lan\u00e7ado no mesmo ano, Parachutes, que foi indicado para o Mercury Prize. O 
segundo \u00e1lbum da banda, A Rush of Blood ao Chefe (2002), foi lan\u00e7ado para aclama\u00e7\u00e3o da 
cr\u00edtica e ganhou v\u00e1rios pr\u00eamios, incluindo \u00c1lbum do Ano da NME, e tem sido amplamente 
considerado o melhor dos \u00e1lbuns do Coldplay Ne
 lson pro
 duzidos. Seu pr\u00f3ximo lan\u00e7amento, X & Y, o \u00e1lbum mais vendido em todo o mundo em 2005, foi 
recebido com cr\u00edticas positivas sobre o seu lan\u00e7amento, embora alguns cr\u00edticos sentiram que 
era inferior ao seu antecessor. O quarto \u00e1lbum de est\u00fadio da banda, Viva la Vida ou Morte e Todos 
os Seus Amigos (2008), foi produzido por Brian Eno e lan\u00e7ado novamente para coment\u00e1rios amplamente 
favor\u00e1veis, ganhando v\u00e1rias indica\u00e7\u00f5es ao Grammy e vit\u00f3rias no Grammy Awards 51. Em 
24 de outubro de 2011, eles lan\u00e7aram seu quinto \u00e1lbum de est\u00fadio, Mylo Xyloto, que foi 
recebido com misto de coment\u00e1rios positivos, e foi best-seller \u00e1lbum de rock do Reino Unido de 
2011.\nA banda j\u00e1 ganhou v\u00e1rios pr\u00eamios ao longo da sua carreira, incluindo sete Brit Awards 
ganhando Melhor Grupo Brit\u00e2nico tr\u00eas vezes, quatro MTV Video Music Awards, e sete Pr\u00eamios 
Grammy de vinte indica\u00e7\u0
 0f5es. C
 omo um dos artistas da m\u00fasica mais vendidos do mundo, o Coldplay j\u00e1 venderam mais de 55 
milh\u00f5es de discos em todo o mundo. Em dezembro de 2009, do Rolling leitores Pedra votado o grupo a 
quarta melhor artista da d\u00e9cada de 2000.\nColdplay tem sido um apoiante activo de v\u00e1rias causas 
sociais e pol\u00edticas, como a campanha Make Trade Fair da Oxfam e Anistia Internacional. O grupo 
tamb\u00e9m participou de v\u00e1rios projetos de caridade como o Band Aid 20, Live 8, Sound Relief, Hope for 
Haiti Now: A Benefit Global para Earthquake Relief, Bola do Secret Policeman, eo Teenage Cancer 
Trust.","strBiographySE":"Coldplay, \u00e4r ett brittiskt rockband som bildades 1996 i University College 
London.\n\nBandmedlemmarna Chris Martin (gitarr, vokalist, piano/keyboards), Guy Berryman (bas), Jonny 
Buckland (gitarr, k\u00f6r) och Will Champion (trummor, k\u00f6r) tr\u00e4ffade varandra som studenter 
p\u00e5 University College London.\n\nBandet har s\u00e5lt \u00
 f6ver 60
  miljoner skivor \u00f6ver hela v\u00e4rlden, varav \u201dA Rush of Blood to the Head\u201d som deras mest 
s\u00e5lda skiva, med \u00f6ver 16 miljoner s\u00e5lda skivor och fick 9 plantinum i hemlandet 
Storbritannien.\n\nBandet sl\u00e4ppte tre EP:s innan debutalbumet Parachutes kom ut. Dessa heter The Safety 
EP, Brothers and sisters och The Blue Room. Med l\u00e5ten Yellow fick de sitt genombrott och har p\u00e5 
senare tid (framf\u00f6rallt med albumet X&Y som \u00e4r mer arenarock \u00e4n de tidigare) blivit 
j\u00e4mf\u00f6rda med bland andra U2 och Radiohead. Sj\u00e4lva s\u00e4ger sig Coldplay ha inspirerats 
musikaliskt till stor del av grupper s\u00e5som U2 och norska a-ha.\n\nColdplay hette till en b\u00f6rjan 
Starfish. N\u00e5gra kompisar till Guy, Jon, Chris och Will hade ett band som hette Coldplay, s\u00e5 
n\u00e4r de bytte namn s\u00e5 \u00f6verl\u00e4ts namnet till d\u00e5varande Starfish som allts\u00e5 blev 
Coldplay. De fick namnet av sina kompisar eftersom de 
 tyckte a
 tt de l\u00e4t \u201dalltf\u00f6r deprimerande\u201d. ","strBiographyNL":"Coldplay is een Britse 
alternatieverockband, die in 1996 in Londen werd gevormd. De leden zijn zanger Chris Martin, gitarist Jonny 
Buckland, drummer Will Champion en bassist Guy Berryman.\n\nIn het begin werd Coldplay vergeleken met andere 
artiesten en bands, waaronder Radiohead, U2 en Travis. De band brak met de single Yellow door, gevolgd door 
hun debuutalbum Parachutes (2000). A Rush of Blood to the Head (2002), het tweede album, betekende hun 
definitieve doorbraak. Het album won ook meerdere prijzen. In 2005 kwam het album X&Y, dat in zestien landen 
op nummer \u00e9\u00e9n kwam. Het vierde album, Viva la Vida or Death and All His Friends, werd samen met 
Brian Eno geproduceerd en ontving meerdere Grammy's. Hun vijfde album Mylo Xyloto is tevens weer geproduceerd 
door Eno. Grote hits van Coldplay zijn onder meer Speed of Sound, Clocks, Yellow, Viva La Vida, Talk, Fix You 
en Paradise.","strBiographyHU
 ":"A Col
 dplay egy angol alternat\u00edv rockegy\u00fcttes, amely 1998 janu\u00e1rj\u00e1ban alakult. Tagjai: Chris 
Martin \u00e9nekes-git\u00e1ros-zongorista, Jonny Buckland git\u00e1ros, Guy Berryman basszusgit\u00e1ros 
\u00e9s Will Champion dobos. T\u00f6bb mint 30 milli\u00f3 lemezt adtak el \u00e9s olyan ismert 
sl\u00e1gereik vannak, mint p\u00e9ld\u00e1ul a Yellow, a Scientist, a Speed of Sound, Grammy-d\u00edjas 
Clocks, vagy a az \u00f6t\u00f6dik st\u00fadi\u00f3albumukr\u00f3l a \"Paradise\" . Az egy\u00fcttes 
egy\u00e9bk\u00e9nt jelenleg h\u00e9t Grammy-d\u00edj birtokosa.\nVil\u00e1gh\u00edrn\u00e9vre a Yellow 
c\u00edm\u0171 dalukkal tettek szert, melyet deb\u00fct\u00e1l\u00f3 albumuk, a Parachutes (2000) 
k\u00f6vetett. 2002-ben jelent meg m\u00e1sodik albumuk A Rush of Blood to the Head c\u00edmmel, amelyet a 
Rolling Stone magazin bev\u00e1lasztott minden id\u0151k 500 legjobb albuma k\u00f6z\u00e9. A 
k\u00f6vetkez\u0151 st\u00fadi\u00f3albumuk, az X&Y (2005) tal\u00e1n k
 ev\u00e9
 sb\u00e9 lelkes, de m\u00e9g mindig pozit\u00edv fogadtat\u00e1sban r\u00e9szes\u00fclt. Negyedik 
st\u00fadi\u00f3albumuk, a Viva la Vida or Death and All His Friends (2008), melynek t\u00e1rsproducere Brian 
Eno volt, ism\u00e9t pozit\u00edv fogadtat\u00e1sra tal\u00e1lt, az \u00f6t\u00f6dik 
st\u00fadi\u00f3albumukat, a \"Mylo Xyloto\"-t (2011), pedig egy kisebb st\u00edlus v\u00e1lt\u00e1s 
jellemez.","strBiographyNO":"Coldplay er et britisk band som spiller alternativ rock, dannet i London, 
England i 1998. Gruppen best\u00e5r av vokalist/pianist/gitarist Chris Martin, sologitarist Jonny Buckland, 
bassist Guy Berryman og trommeslager/multiinstrumentalist Will Champion. Coldplay har solgt over 40 millioner 
plater p\u00e5 verdensbasis, og er kjent for hitl\u00e5ter som \u00abYellow\u00bb, \u00abThe Scientist\u00bb, 
\u00abClocks\u00bb, \u00abSpeed Of Sound\u00bb, \u00abFix You\u00bb og \u00abViva La Vida\u00bb.\n\nColdplays 
gjennombrudd kom med singelen \u00abYellow\u00bb fra d
 ebutalbu
 met Parachutes i \u00e5r 2000, og albumet ble nominert til Mercury Prize. Oppf\u00f8lgeren, A Rush Of Blood 
To The Head, kom i 2002 og ble en stor suksess. Albumet vant diverse priser, blant annet NME sin pris for 
\u00e5rets album. Bandets neste utgivelse, X&Y ble utgitt tre \u00e5r senere, til omtrent samme respons som 
forl\u00f8peren. Coldplays fjerde album, Viva la Vida or Death and All His Friends, fra 2008 ble produsert av 
Brian Eno og fikk s\u00e6rdeles god kritikk, og ble nominert til flere Grammy-priser. Bandets femte album, 
Mylo Xyloto, ble sluppet ut 24. oktober 2011. Alle Coldplays album har nytt kommersiell 
suksess.","strBiographyIL":"\u05e7\u05d5\u05dc\u05d3\u05e4\u05dc\u05d9\u05d9 
(\u05d1\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea: Coldplay) \u05d4\u05d9\u05d0 \u05dc\u05d4\u05e7\u05ea 
\u05e4\u05d5\u05e4 \u05e8\u05d5\u05e7 \u05d1\u05e8\u05d9\u05d8\u05d9\u05ea 
\u05de\u05e6\u05dc\u05d9\u05d7\u05d4, \u05e9\u05e0\u05d5\u05e1\u05d3\u05d4 \u05d1\u05e9\u05e0\u05ea 1998 
\u05d5
 \u05de\u
 05db\u05e8\u05d4 \u05de\u05e2\u05dc \u05dc-40 \u05de\u05d9\u05dc\u05d9\u05d5\u05df 
\u05ea\u05e7\u05dc\u05d9\u05d8\u05d9\u05dd. \u05e1\u05d2\u05e0\u05d5\u05df 
\u05d4\u05de\u05d5\u05d6\u05d9\u05e7\u05d4, \u05d4\u05e9\u05d9\u05e8\u05d4 
\u05d5\u05d4\u05dc\u05d7\u05e0\u05d9\u05dd \u05e9\u05dc \u05d4\u05dc\u05d4\u05e7\u05d4 
\u05de\u05db\u05d9\u05dc\u05d9\u05dd \u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd 
\u05e8\u05d1\u05d9\u05dd \u05d4\u05de\u05d6\u05d5\u05d4\u05d9\u05dd \u05e2\u05dd 
\u05ea\u05ea-\u05d4\u05d6'\u05d0\u05e0\u05e8 \u05d1\u05e8\u05d9\u05d8\u05e4\u05d5\u05e4, 
\u05e4\u05d5\u05e1\u05d8-\u05d1\u05e8\u05d9\u05d8\u05e4\u05d5\u05e4 \u05d5\u05e8\u05d5\u05e7 
\u05d0\u05dc\u05d8\u05e8\u05e0\u05d8\u05d9\u05d1\u05d9. \u05d7\u05d1\u05e8\u05d9 
\u05d4\u05dc\u05d4\u05e7\u05d4 \u05e0\u05e4\u05d2\u05e9\u05d5 \u05d1\u05e9\u05e0\u05ea 1996 
\u05d1\u05d0\u05d5\u05e0\u05d9\u05d1\u05e8\u05e1\u05d9\u05d8\u05ea UCL 
\u05d1\u05dc\u05d5\u05e0\u05d3\u05d5\u05df, \u05d5\u05d3\u05d9 \u05de\u05d4\
 u05e8 \u
 05d2\u05d9\u05dc\u05d5 \u05d0\u05ea \u05d4\u05d7\u05d9\u05d1\u05d4 
\u05d4\u05de\u05e9\u05d5\u05ea\u05e4\u05ea \u05e9\u05dc\u05d4\u05dd 
\u05dc\u05de\u05d5\u05d6\u05d9\u05e7\u05d4. \u05d4\u05dd \u05e0\u05d9\u05d2\u05e0\u05d5 \u05d9\u05d7\u05d3 
\u05de\u05e1\u05e4\u05e8 \u05e4\u05e2\u05de\u05d9\u05dd \u05db\u05ea\u05d7\u05d1\u05d9\u05d1, \u05e2\u05d3 
\u05e9\u05d4\u05d7\u05dc\u05d9\u05d8\u05d5 \u05dc\u05d4\u05e7\u05d9\u05dd \u05dc\u05d4\u05e7\u05d4. 
\u05d0\u05ea \u05d4\u05e9\u05dd \u05e7\u05d5\u05dc\u05d3\u05e4\u05dc\u05d9\u05d9 \u05dc\u05e7\u05d7\u05d5 
\u05de\u05d7\u05d1\u05e8 \u05d0\u05d7\u05e8 \u05e9\u05dc\u05d4\u05dd \u05e9\u05d4\u05d2\u05d4 
\u05d0\u05d5\u05ea\u05d5 \u05db\u05e9\u05d7\u05e9\u05d1 \u05d1\u05e2\u05e6\u05de\u05d5 
\u05dc\u05d4\u05e7\u05d9\u05dd \u05dc\u05d4\u05e7\u05d4, \u05d3\u05d1\u05e8 \u05e9\u05dc\u05d0 
\u05d9\u05e6\u05d0 \u05dc\u05e4\u05d5\u05e2\u05dc. \u05e7\u05d5\u05dc\u05d3\u05e4\u05dc\u05d9\u05d9 
\u05e0\u05d9\u05d2\u05e0\u05d5 \u05d1\u05de\u05d5\u05e2\u0
 5d3\u05d
 5\u05e0\u05d9\u05dd \u05d1\u05e8\u05d7\u05d1\u05d9 \u05dc\u05d5\u05e0\u05d3\u05d5\u05df 
\u05d5\u05d1\u05de\u05d0\u05d9 1998 \u05e0\u05db\u05e0\u05e1\u05d5 \u05dc\u05d0\u05d5\u05dc\u05e4\u05df 
\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d5\u05d4\u05e7\u05dc\u05d9\u05d8\u05d5 \u05d1-200 
\u05e4\u05d0\u05d5\u05e0\u05d3 \u05d0\u05ea \u05d4\u05d0\u05d9.\u05e4\u05d9. Safety, 
\u05e9\u05d9\u05d5\u05e2\u05d3 \u05dc\u05d4\u05e4\u05e6\u05d4 \u05d1\u05d9\u05df 
\u05d7\u05d1\u05e8\u05d5\u05ea \u05d4\u05ea\u05e7\u05dc\u05d9\u05d8\u05d9\u05dd. \u05dc\u05d0\u05d7\u05e8 
\u05d4\u05d4\u05e7\u05dc\u05d8\u05d4 \u05d4\u05dc\u05d4\u05e7\u05d4 \u05d4\u05d9\u05d9\u05ea\u05d4 
\u05db\u05d4 \u05de\u05e8\u05d5\u05e6\u05d4 \u05de\u05d4\u05ea\u05d5\u05e6\u05d0\u05d4, 
\u05e9\u05d4\u05d7\u05dc\u05d9\u05d8\u05d4 \u05dc\u05e9\u05db\u05e4\u05dc \u05e2\u05d5\u05d3 500 
\u05e2\u05d5\u05ea\u05e7\u05d9\u05dd \u05de\u05d4\u05e9\u05d9\u05e8 \u05d5\u05dc\u05d4\u05e4\u05d9\u05e5 
\u05d0\u05d5\u05ea\u05dd \u05d1\u05d9\u05df \
 u05d0\u0
 5e0\u05e9\u05d9\u05dd \u05de\u05d4\u05ea\u05e2\u05e9\u05d9\u05d9\u05d4, \u05ea\u05d7\u05e0\u05d5\u05ea 
\u05e8\u05d3\u05d9\u05d5 \u05d5\u05d1\u05e2\u05d9\u05e7\u05e8 \u05d7\u05d1\u05e8\u05d9\u05dd 
\u05d5\u05d1\u05e0\u05d9 \u05de\u05e9\u05e4\u05d7\u05d4 \u05e0\u05dc\u05d4\u05d1\u05d9\u05dd. 
\u05d4\u05d4\u05d5\u05e4\u05e2\u05d5\u05ea \u05e9\u05dc\u05d4\u05dd 
\u05d1\u05de\u05d5\u05e2\u05d3\u05d5\u05e0\u05d9\u05dd \u05d2\u05e8\u05de\u05d5 \u05dc\u05db\u05da 
\u05e9\u05e2\u05d9\u05ea\u05d5\u05e0\u05d0\u05d9 \u05d4\u05de\u05d5\u05d6\u05d9\u05e7\u05d4 
\u05d4\u05d1\u05d7\u05d9\u05e0\u05d5 \u05d1\u05d4\u05dd \u05d5\u05d1\u05e1\u05d5\u05e3 1998 
\u05d4\u05d5\u05db\u05e8\u05d6\u05d5 \u05e7\u05d5\u05dc\u05d3\u05e4\u05dc\u05d9\u05d9 \u05e2\u05dc 
\u05d9\u05d3\u05d9 \u05de\u05d2\u05d6\u05d9\u05df \u05d4\u05de\u05d5\u05d6\u05d9\u05e7\u05d4 
\u05d4\u05d1\u05e8\u05d9\u05d8\u05d9 NME \u05db\u05d0\u05d7\u05ea \u05d4\u05d4\u05d1\u05d8\u05d7\u05d5\u05ea 
\u05e9\u05dc 1999.\n\u05d1\u05d0\u05e4\u05e8\u0
 5d9\u05d
 c 1999 \u05d4\u05d5\u05e6\u05d9\u05d0\u05d5 \u05e1\u05d9\u05e0\u05d2\u05dc \u05d1\u05e9\u05dd \"Brothers And 
Sisters\" \u05d0\u05e9\u05e8 \u05e6\u05d3 \u05d0\u05ea \u05d0\u05d5\u05d6\u05e0\u05d5 \u05e9\u05dc 
\u05d0\u05d7\u05d3 \u05d4\u05e9\u05d3\u05e8\u05d9\u05dd \u05d1-\"Radio 1\" \u05e9\u05dc 
\u05d4\u05d1\u05d9.\u05d1\u05d9.\u05e1\u05d9, \u05e9\u05e0\u05d9\u05d2\u05df \u05d0\u05ea 
\u05d4\u05e9\u05d9\u05e8 \u05e9\u05d5\u05d1 \u05d5\u05e9\u05d5\u05d1 \u05d5\u05d1\u05db\u05da 
\u05e2\u05d6\u05e8 \u05dc\u05d4\u05ea\u05e7\u05d3\u05de\u05d5\u05ea \u05d4\u05e9\u05d9\u05e8 
\u05e9\u05d1\u05e1\u05d5\u05e4\u05d5 \u05e9\u05dc \u05d3\u05d1\u05e8 \u05e0\u05db\u05e0\u05e1 
\u05dc\u05de\u05e6\u05e2\u05d3 \u05d4\u05d1\u05e8\u05d9\u05d8\u05d9 \u05d5\u05d4\u05d2\u05d9\u05e2 
\u05dc\u05de\u05e7\u05d5\u05dd \u05d4-95. \u05d7\u05d1\u05e8\u05d5\u05ea 
\u05d4\u05ea\u05e7\u05dc\u05d9\u05d8\u05d9\u05dd \u05d4\u05d7\u05dc\u05d5 \u05dc\u05d4\u05d1\u05d9\u05e2 
\u05d4\u05ea\u05e2\u05e0\u05d9\u05d9\u05e0\u0
 5d5\u05e
 a \u05d5\u05d1\u05e7\u05d9\u05e5 1999 \u05e0\u05d7\u05ea\u05dd \u05d7\u05d5\u05d6\u05d4 \u05e2\u05dd 
\u05d7\u05d1\u05e8\u05ea \u05d4\u05ea\u05e7\u05dc\u05d9\u05d8\u05d9\u05dd 
\"\u05e4\u05e8\u05dc\u05e4\u05d5\u05df\". \u05e7\u05d5\u05dc\u05d3\u05e4\u05dc\u05d9\u05d9 
\u05d4\u05d5\u05e4\u05d9\u05e2\u05d5 \u05d1\u05de\u05d4\u05dc\u05da \u05e7\u05d9\u05e5 \u05d6\u05d4 
\u05d1\u05e4\u05e1\u05d8\u05d9\u05d1\u05dc\u05d9\u05dd \u05e8\u05d1\u05d9\u05dd \u05dc\u05e6\u05d3 
\u05dc\u05d4\u05e7\u05d5\u05ea \u05d9\u05d3\u05d5\u05e2\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8, 
\u05d1\u05d9\u05e0\u05d9\u05d4\u05df \u05e7\u05d8\u05d8\u05d5\u05e0\u05d9\u05d4. \u05d7\u05d1\u05e8\u05ea 
\u05d4\u05ea\u05e7\u05dc\u05d9\u05d8\u05d9\u05dd \u05d4\u05ea\u05e2\u05e7\u05e9\u05d4 
\u05e9\u05d4\u05dc\u05d4\u05e7\u05d4 \u05ea\u05d5\u05e6\u05d9\u05d0 \u05e2\u05d5\u05d3 
\u05e1\u05d9\u05e0\u05d2\u05dc\u05d9\u05dd \u05dc\u05e4\u05e0\u05d9 \u05e9\u05d7\u05d1\u05e8\u05d9\u05d4 
\u05e0\u05db\u05e0\u05e1\u05d9\u05dd \u05dc\u0
 5d0\u05d
 5\u05dc\u05e4\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d8 \u05d0\u05dc\u05d1\u05d5\u05dd 
\u05d5\u05db\u05da \u05d4\u05dd \u05d4\u05d5\u05e6\u05d9\u05d0\u05d5 \u05d0\u05ea \"Blue Room\", \u05d0\u05ea 
\"Bigger Stronger\". \u05db\u05d1\u05e8 \u05d0\u05d6 \u05d4\u05d7\u05dc\u05d5 
\u05d4\u05d4\u05e9\u05d5\u05d5\u05d0\u05d5\u05ea \u05e9\u05dc 
\u05e7\u05d5\u05dc\u05d3\u05e4\u05dc\u05d9\u05d9 \u05dc\u05e8\u05d3\u05d9\u05d5\u05d4\u05d3 \u05e9\u05dc 
\u05ea\u05e7\u05d5\u05e4\u05ea OK Computer. \u05d4\u05dc\u05d4\u05e7\u05d4 \u05d8\u05e2\u05e0\u05d4, 
\u05de\u05e6\u05d9\u05d3\u05d4, \u05e9\u05d4\u05e9\u05d9\u05e8\u05d9\u05dd \u05d4\u05d0\u05dc\u05d4 
\u05e0\u05db\u05ea\u05d1\u05d5 \u05d6\u05de\u05df \u05e8\u05d1 \u05dc\u05e4\u05e0\u05d9 
\u05e9\u05e8\u05d3\u05d9\u05d5\u05d4\u05d3 \u05d4\u05d5\u05e6\u05d9\u05d0\u05d5 \u05d0\u05ea 
\u05d4\u05d0\u05dc\u05d1\u05d5\u05dd \u05d4\u05de\u05d3\u05d5\u05d1\u05e8.","strBiographyPL":"Coldplay \u2013 
brytyjska grupa muzyczna, graj\u010
 5ca rock
  alternatywny. Cz\u0142onkowie zespo\u0142u s\u0105 zaanga\u017cowani tak\u017ce w 
dzia\u0142alno\u015b\u0107 spo\u0142eczno-polityczn\u0105.\n\nColdplay ma na koncie ponad 50 milion\u00f3w 
sprzedanych p\u0142yt oraz liczne nagrody bran\u017cy 
muzycznej.","strGender":"Male","intMembers":"4","strCountry":"London, 
England","strCountryCode":"GB","strArtistThumb":"https://www.theaudiodb.com/images/media/artist/thumb/uxrqxy1347913147.jpg","strArtistLogo":"https://www.theaudiodb.com/images/media/artist/logo/urspuv1434553994.png","strArtistClearart":"https://www.theaudiodb.com/images/media/artist/clearart/ruyuwv1510827568.png","strArtistWideThumb":"https://www.theaudiodb.com/images/media/artist/widethumb/sxqspt1516190718.jpg","strArtistFanart":"https://www.theaudiodb.com/images/media/artist/fanart/spvryu1347980801.jpg","strArtistFanart2":"https://www.theaudiodb.com/images/media/artist/fanart/uupyxx1342640221.jpg","strArtistFanart3":"https://www.theaudiodb.com/images/media/artist/fa
 nart/qst
 
psp1342640238.jpg","strArtistBanner":"https://www.theaudiodb.com/images/media/artist/banner/xuypqw1386331010.jpg","strMusicBrainzID":"cc197bad-dc9c-440d-a5b5-d52ba2e14234","strLastFMChart":"http://www.last.fm/music/Coldplay/+charts?rangetype=6month","intCharted":"3","strLocked":"unlocked"}]}
diff --git a/tests/lua-factory/sources/data/theaudiodb_systemofadown.txt 
b/tests/lua-factory/sources/data/theaudiodb_systemofadown.txt
new file mode 100644
index 00000000..9ee89328
--- /dev/null
+++ b/tests/lua-factory/sources/data/theaudiodb_systemofadown.txt
@@ -0,0 +1 @@
+{"artists":[{"idArtist":"112009","strArtist":"System of a 
Down","strArtistStripped":null,"strArtistAlternate":"SOAD","strLabel":null,"idLabel":null,"intFormedYear":"1994","intBornYear":null,"intDiedYear":null,"strDisbanded":"Yes","strStyle":"Metal","strGenre":"Alternative
 
Metal","strMood":"Boisterous","strWebsite":"www.systemofadown.com","strFacebook":"www.facebook.com/systemofadown","strTwitter":"twitter.com/systemofadown","strBiographyEN":"System
 of a Down, also known by the acronym SOAD and often shortened to System, is a rock band from Southern 
California, formed in 1994. It currently consists of Serj Tankian (lead vocals, keyboards, rhythm guitar), 
Daron Malakian (guitar, vocals), Shavo Odadjian (bass, background vocals) and John Dolmayan (drums).\nThe 
band achieved commercial success with the release of five studio albums; from which three debuted at number 
one on the Billboard 200. System of a Down has been nominated for four Grammy Awards, and won the award in 
2006 f
 or Best 
 Hard Rock Performance for the song \"B.Y.O.B.\". The group went on hiatus in August 2006, but reunited in 
November 2010, embarking on a worldwide tour in 2011.\nSerj Tankian, Daron Malakian, and Shavo Odadjian all 
attended Rose and Alex Pilibos Armenian School while children, although because of their eight-year age 
difference they did not meet until 1992 while working on separate projects at the same recording studio. They 
formed a band named Soil with Tankian on vocals and keyboards, Malakian on vocals and guitar, Dave Hakopyan 
(who later played in The Apex Theory/Mt. Helium) on bass and Domingo \"Dingo\" Laranio on drums. The band 
hired Shavo Odadjian (another Rose and Alex Pilibos alumnus) as manager, although he eventually joined Soil 
as rhythm guitarist. In 1994, only one live show, and one jam session recording, Hakopyan and Laranio quit 
the band, feeling that it was not going anywhere.","strBiographyDE":null,"strBiographyFR":"System of a Down 
(alias SOAD ou System) e
 st un gr
 oupe de metal \u00ab alternatif \u00bb Am\u00e9ricano-Arm\u00e9nien. Il est un des rares groupes \u00e0 
\u00eatre parvenu \u00e0 cr\u00e9er un style de metal alternatif unique en son genre et brisant tous les 
clich\u00e9s, en particulier gr\u00e2ce au style particulier du chanteur Serj Tankian. Le groupe s\u2019est 
ensuite tourn\u00e9 vers un style sensiblement diff\u00e9rent \u00e0 partir de l\u2019album Mezmerize, 
souvent d\u00e9nigr\u00e9 par les fans. Ses quatre membres sont d\u2019origine arm\u00e9nienne, quoique 
n\u00e9s au Liban, aux \u00c9tats-Unis ou en Arm\u00e9nie. Actuellement le groupe est en stand-by, mais ce 
n\u2019est pas pour de bon, d\u2019apr\u00e8s les membres du groupe. Chacun croit a une meilleure 
carri\u00e8re en solo. Les groupes form\u00e9s : Serj Tankian et Scars on Broadway. Le but de la 
s\u00e9paration : Revenir avec une nouvelle exp\u00e9rience et revenir avec un System Of A Down encore plus 
fort.","strBiographyCN":null,"strBiographyIT":null,"str
 Biograph
 yJP":null,"strBiographyRU":"System of a Down (SOAD) \u2014 
\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f 
\u043c\u0435\u0442\u0430\u043b-\u0433\u0440\u0443\u043f\u043f\u0430, 
\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0432 1994 \u0433\u043e\u0434\u0443 
\u0432 \u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441\u0435 
\u0421\u0435\u0440\u0436\u0435\u043c \u0422\u0430\u043d\u043a\u044f\u043d\u043e\u043c \u0438 
\u0414\u0430\u0440\u043e\u043d\u043e\u043c \u041c\u0430\u043b\u0430\u043a\u044f\u043d\u043e\u043c. \u0412 
\u043f\u0435\u0440\u0438\u043e\u0434 \u0441 1998 \u043f\u043e 2005 \u0433\u043e\u0434 
\u0433\u0440\u0443\u043f\u043f\u0430 \u0432\u044b\u043f\u0443\u0441\u0442\u0438\u043b\u0430 
\u043f\u044f\u0442\u044c \u0441\u0442\u0443\u0434\u0438\u0439\u043d\u044b\u0445 
\u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u043a\u0430\u0436\u0434\u044b\u0439 \u0438\u0437 
\u043a\u043e\u0442\u043e\u0440\u044b\u04
 45 \u044
 1\u0442\u0430\u043b \u043f\u043b\u0430\u0442\u0438\u043d\u043e\u0432\u044b\u043c 
(\u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u2014 
\u043c\u0443\u043b\u044c\u0442\u0438\u043f\u043b\u0430\u0442\u0438\u043d\u043e\u0432\u044b\u0439 Toxicity), 
\u043e\u0431\u0449\u0438\u043c \u0442\u0438\u0440\u0430\u0436\u043e\u043c \u0441\u0432\u044b\u0448\u0435 20 
\u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 
\u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u0432. \u0412 2006 \u0433\u043e\u0434\u0443 
\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 System of a Down \u0440\u0435\u0448\u0438\u043b\u0438 
\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e 
\u043f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c 
\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u0443\u044e 
\u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0438 
\u0437\u0430\u043d\u044f\u0442\u044c\u0441\u044f
  \u0441\
 u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u043c\u0438. 29 
\u043d\u043e\u044f\u0431\u0440\u044f 2010 \u0433\u043e\u0434\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 
\u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e 
\u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0438 
\u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u043e\u0433\u043e \u0442\u0443\u0440\u043d\u0435 
\u0432 2011 \u0433\u043e\u0434\u0443.\n\n \u0418\u0437\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e 
\u0433\u0440\u0443\u043f\u043f\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u043b\u0430 
\u043d\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u00abVictims of the Down\u00bb \u2014 
\u043f\u043e \u0441\u0442\u0438\u0445\u043e\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u044e, 
\u043d\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u043e\u043c\u0443 \u0414\u0430\u0440\u043e\u043d\u043e\u043c 
\u041c\u0430\u043b\u0430\u043a\u044f\u043d\u043e\u043c. \u
 041f\u04
 40\u0438 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c 
\u043e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0438 
\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u0431\u044b\u043b\u043e 
\u0440\u0435\u0448\u0435\u043d\u043e \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c 
\u0441\u043b\u043e\u0432\u043e \u00abvictims\u00bb \u043d\u0430 \u0431\u043e\u043b\u0435\u0435 
\u043e\u0431\u0449\u0435\u0435 \u00absystem\u00bb. \u041f\u0440\u0438\u0447\u0438\u043d\u043e\u0439 
\u0437\u0430\u043c\u0435\u043d\u044b \u0442\u0430\u043a\u0436\u0435 
\u043f\u043e\u0441\u043b\u0443\u0436\u0438\u043b\u043e \u0436\u0435\u043b\u0430\u043d\u0438\u0435 
\u0428\u0430\u0432\u043e \u041e\u0434\u0430\u0434\u0436\u044f\u043d\u0430 
\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443 
\u0431\u043b\u0438\u0436\u0435 \u043a Slayer \u043d\u0430 \u043f\u043e\u043b\u043a\u0430\u0445 
\u043c\u0443\u0437\u044b\u043a\u0430\u043b\u04
 4c\u043d
 \u044b\u0445 \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u043e\u0432.\n\n 
\u041d\u0430\u0447\u0430\u043b\u043e \u0442\u0432\u043e\u0440\u0447\u0435\u0441\u0442\u0432\u0430, 
\u0434\u0435\u0431\u044e\u0442\u043d\u044b\u0439 \u0430\u043b\u044c\u0431\u043e\u043c\n\n \u0412 1993 
\u0433\u043e\u0434\u0443 \u0422\u0430\u043d\u043a\u044f\u043d (\u0432\u043e\u043a\u0430\u043b, 
\u043a\u043b\u0430\u0432\u0438\u0448\u043d\u044b\u0435) \u0438 \u041c\u0430\u043b\u0430\u043a\u044f\u043d 
(\u0432\u043e\u043a\u0430\u043b, \u0433\u0438\u0442\u0430\u0440\u0430) 
\u043e\u0441\u043d\u043e\u0432\u0430\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0443 Soil, \u0432 
\u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u043b\u0438 
\u0414\u043e\u043c\u0438\u043d\u0433\u043e \u041b\u0430\u0440\u0435\u043d\u044c\u043e 
(\u0443\u0434\u0430\u0440\u043d\u044b\u0435) \u0438 \u0414\u0435\u0439\u0432\u0430 
\u0425\u0430\u043a\u043e\u043f\u044f\u043d\u0430 (\u0431\u0430\u0441-\u
 0433\u04
 38\u0442\u0430\u0440\u0430). \u0413\u0440\u0443\u043f\u043f\u0430, \u0438\u043c\u0435\u044f \u0432 
\u0441\u0432\u043e\u0435\u043c \u0430\u043a\u0442\u0438\u0432\u0435 \u0432\u0441\u0435\u0433\u043e 
\u043e\u0434\u0438\u043d \u043a\u043e\u043d\u0446\u0435\u0440\u0442 \u0438 \u043e\u0434\u0438\u043d 
\u0434\u0436\u0435\u043c-\u0441\u0435\u0439\u0448\u043d, 
\u0440\u0430\u0441\u043f\u0430\u043b\u0430\u0441\u044c \u0438\u0437-\u0437\u0430 
\u043d\u043e\u0432\u043e\u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0451\u043d\u043d\u044b\u0445 
\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 
\u0440\u0435\u0448\u0438\u043b\u0438 \u0435\u0451 \u043f\u043e\u043a\u0438\u043d\u0443\u0442\u044c. \u0412 
1995 \u0433\u043e\u0434\u0443 \u0422\u0430\u043d\u043a\u044f\u043d \u0438 
\u041c\u0430\u043b\u0430\u043a\u044f\u043d \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043b\u0438 
\u0443\u0436\u0435 \u0441\u0430\u043c \u043a\u043e\u043b\u043b\u04
 35\u043a
 \u0442\u0438\u0432 System of a Down, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 
\u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u043b\u0438 \u0428\u0430\u0432\u043e 
\u041e\u0434\u0430\u0434\u0436\u044f\u043d\u0430 \u0438 \u042d\u043d\u0434\u0438 
\u0425\u0430\u0447\u0430\u0442\u0443\u0440\u044f\u043d\u0430, 
\u043f\u043e\u0441\u0435\u0449\u0430\u0432\u0448\u0438\u0445 \u0442\u0443 \u0436\u0435 
\u0430\u0440\u043c\u044f\u043d\u0441\u043a\u0443\u044e \u0447\u0430\u0441\u0442\u043d\u0443\u044e 
\u0448\u043a\u043e\u043b\u0443 \u0432 \u0413\u043e\u043b\u043b\u0438\u0432\u0443\u0434\u0435 \u0438 
\u0445\u043e\u0440\u043e\u0448\u043e \u0437\u043d\u0430\u043a\u043e\u043c\u044b\u0445 
\u043e\u0431\u043e\u0438\u043c \u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442\u0430\u043c. 
\u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u041e\u0434\u0430\u0434\u0436\u044f\u043d 
\u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u043b \u0441\u0442\u0430\u0442\u044c 
\u043c\u0435\u043d\u0435\u0434\u0436
 \u0435\u
 0440\u043e\u043c \u043a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u0430, \u043d\u043e \u0432 
\u0438\u0442\u043e\u0433\u0435 \u0441\u0442\u0430\u043b \u0438\u0433\u0440\u0430\u0442\u044c \u043d\u0430 
\u0431\u0430\u0441-\u0433\u0438\u0442\u0430\u0440\u0435. \u0412 
\u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 1997 \u0433\u043e\u0434\u0430 
\u0433\u0440\u0443\u043f\u043f\u0443 \u043f\u043e\u043a\u0438\u043d\u0443\u043b 
\u0425\u0430\u0447\u0430\u0442\u0443\u0440\u044f\u043d, 
\u0432\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0438 
\u0441\u0442\u0430\u0432\u0448\u0438\u0439 \u043e\u0434\u043d\u0438\u043c \u0438\u0437 
\u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 The Apex Theory. 
\u041f\u0440\u0438\u0447\u0438\u043d\u043e\u0439 \u044d\u0442\u043e\u043c\u0443 
\u043f\u043e\u0441\u043b\u0443\u0436\u0438\u043b\u0430 \u0442\u0440\u0430\u0432\u043c\u0430 
\u0440\u0443\u043a\u0438, \u043d\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0432\u
 0448\u04
 30\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c 
\u043a\u0430\u0440\u044c\u0435\u0440\u0443 \u0431\u0430\u0440\u0430\u0431\u0430\u043d\u0449\u0438\u043a\u0430 
(\u043f\u043e \u0434\u0440\u0443\u0433\u0438\u043c 
\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430\u043c, 
\u0410\u043d\u0434\u0440\u0430\u043d\u0438\u043a \u0443\u0448\u0435\u043b \u0438\u0437-\u0437\u0430 
\u0432\u043e\u0437\u043d\u0438\u043a\u0448\u0438\u0445 
\u0440\u0430\u0437\u043d\u043e\u0433\u043b\u0430\u0441\u0438\u0439). 
\u0425\u0430\u0447\u0430\u0442\u0443\u0440\u044f\u043d\u0430 \u0441\u043c\u0435\u043d\u0438\u043b 
\u0414\u0436\u043e\u043d \u0414\u043e\u043b\u043c\u0430\u044f\u043d.\n \u0412 1997 \u0433\u043e\u0434\u0443 
\u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442\u044b \u0437\u0430\u043a\u043b\u044e\u0447\u0438\u043b\u0438 
\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442 \u043d\u0430 \u0432\u044b\u043f\u0443\u0441\u043a 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430 \u0441 \u0438\
 u0437\u0
 432\u0435\u0441\u0442\u043d\u044b\u043c \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u043c 
\u043f\u0440\u043e\u0434\u044e\u0441\u0435\u0440\u043e\u043c \u0420\u0438\u043a\u043e\u043c 
\u0420\u0443\u0431\u0438\u043d\u043e\u043c \u0438 
\u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u043b\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438 
\u0441\u0432\u043e\u0435\u0433\u043e \u0434\u0435\u0431\u044e\u0442\u043d\u043e\u0433\u043e 
\u0434\u0438\u0441\u043a\u0430 System of a Down. \u0410\u043b\u044c\u0431\u043e\u043c 
\u0432\u044b\u0448\u0435\u043b 30 \u0438\u044e\u043d\u044f 1998 \u0433\u043e\u0434\u0430 \u0438 
\u0440\u0430\u0437\u043e\u0448\u0451\u043b\u0441\u044f \u0437\u0430 \u043f\u044f\u0442\u044c 
\u043b\u0435\u0442 \u043f\u043e\u0447\u0442\u0438 
\u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043d\u044b\u043c \u0442\u0438\u0440\u0430\u0436\u043e\u043c. 
\u0425\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043d\u044b\u043c 
\u043f\u0440\u0438\u0437\u043d\u0430\u043a\u04
 3e\u043c
  \u044d\u0442\u043e\u0439 \u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0438 
\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f 
\u0434\u043e\u043c\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 
\u0441\u0442\u0438\u043b\u0438\u0441\u0442\u0438\u043a\u0438 
\u043d\u044e-\u043c\u0435\u0442\u0430\u043b\u0430. \u0421\u0438\u043d\u0433\u043b\u044b \u00abSpiders\u00bb 
\u0438 \u00abSugar\u00bb \u0441\u0442\u0430\u043b\u0438 \u0441\u0430\u043c\u044b\u043c\u0438 
\u0443\u0441\u043f\u0435\u0448\u043d\u044b\u043c\u0438 \u043f\u0435\u0441\u043d\u044f\u043c\u0438 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430, \u043e\u043d\u0438 
\u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e \u0437\u0432\u0443\u0447\u0430\u043b\u0438 
\u043d\u0430 \u0440\u0430\u0434\u0438\u043e, \u0430 \u043a\u043b\u0438\u043f\u044b 
\u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e 
\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u043b\u0438\u0441\u044c 
\u043a\u0430\u043d\u0430\u043b\u043e\u043c MTV. 
 \u0412 1
 998 \u0433\u043e\u0434\u0443 \u044d\u0442\u0438 \u043f\u0435\u0441\u043d\u0438 
\u0437\u0430\u043d\u044f\u043b\u0438 25-\u0435 \u0438 28-\u0435 \u043c\u0435\u0441\u0442\u043e 
\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432 
\u0445\u0438\u0442-\u043f\u0430\u0440\u0430\u0434\u0435 Hot Mainstream Rock Tracks. 
\u0410\u043b\u044c\u0431\u043e\u043c System of a Down 
\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0441\u044f \u043d\u0430 
\u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0430\u0445 Slayer \u0438 Metallica, \u0433\u0434\u0435 System of 
a Down \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u043b\u0438 \u0432 
\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 
\u00ab\u0440\u0430\u0437\u043e\u0433\u0440\u0435\u0432\u043e\u0447\u043d\u043e\u0439\u00bb 
\u0433\u0440\u0443\u043f\u043f\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043d\u0430 
\u0444\u0435\u0441\u0442\u0438\u0432\u0430\u043b\u0435 Ozzfest. \u041f\u043e \u043e\u0
 43a\u043
 e\u043d\u0447\u0430\u043d\u0438\u0438 \u0444\u0435\u0441\u0442\u0438\u0432\u0430\u043b\u044f 
\u0433\u0440\u0443\u043f\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430 
\u0432\u043e \u043c\u043d\u043e\u0433\u0438\u0445 
\u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u044f\u0445 \u0432\u043c\u0435\u0441\u0442\u0435 
\u0441 Fear Factory, Incubus \u0438 \u0431\u044b\u043b\u0430 
\u0445\u0435\u0434\u043b\u0430\u0439\u043d\u0435\u0440\u043e\u043c SnoCore Tour 
(\u0430\u043d\u0433\u043b.)\u0440\u0443\u0441\u0441\u043a. \u043d\u0430\u0440\u044f\u0434\u0443 \u0441 Puya, 
Mr. Bungle \u0438 The Cat \u0432 2000 \u0433\u043e\u0434\u0443. \u0413\u043e\u0434\u043e\u043c 
\u0440\u0430\u043d\u0435\u0435 \u043e\u043d\u0438 \u0434\u043e\u043b\u0436\u043d\u044b 
\u0431\u044b\u043b\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0442\u044c \u043d\u0430 Family Values 
Tour, \u043d\u043e \u0424\u0440\u0435\u0434 \u0414\u0451\u0440\u0441\u0442 \u0438\u0441\u043a
 \u043b\u
 044e\u0447\u0438\u043b \u0438\u0445 \u0438\u0437 \u0441\u043f\u0438\u0441\u043a\u0430, \u043e 
\u0447\u0451\u043c \u043f\u043e\u0437\u0436\u0435 \u043f\u043e\u0436\u0430\u043b\u0435\u043b. 
\u041b\u0435\u0442\u043e\u043c 2000 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u043b\u0438 \u043d\u0430 
\u0432 Summer Sanitarium Tour \u0441 Korn , Kid Rock , Powerman 5000 \u0438 Metallica.\n\n Toxicity \u0438 
Steal This Album!\n\n \u041d\u0430 3 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f 2001 
\u0433\u043e\u0434\u0430 \u0431\u044b\u043b 
\u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d 
\u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0439 \u043a\u043e\u043d\u0446\u0435\u0440\u0442 
\u0432 \u0413\u043e\u043b\u043b\u0438\u0432\u0443\u0434\u0435 \u043f\u043e 
\u0441\u043b\u0443\u0447\u0430\u044e \u0432\u044b\u043f\u0443\u0441\u043a\u0430 
\u043d\u043e\u0432\u043e\u0433\u043e \u0430\u043b\u044c\u0431\u043e\u043c\u0430 Toxicity. 
\u0412\u044b\u0441\u0442\u0443\u0
 43f\u043
 b\u0435\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u044b \u0434\u043e\u043b\u0436\u043d\u043e 
\u0431\u044b\u043b\u043e \u043f\u0440\u043e\u0439\u0442\u0438 \u043d\u0430 
\u0441\u0442\u043e\u044f\u043d\u043a\u0435, 
\u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 3500 
\u0447\u0435\u043b\u043e\u0432\u0435\u043a, \u043e\u0434\u043d\u0430\u043a\u043e, \u043f\u043e 
\u043e\u0446\u0435\u043d\u043a\u0430\u043c, \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442 
\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u043f\u043e\u0440\u044f\u0434\u043a\u0430 7\u201410 
\u0442\u044b\u0441\u044f\u0447 \u0437\u0440\u0438\u0442\u0435\u043b\u0435\u0439. \u0412 
\u0446\u0435\u043b\u044f\u0445 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 
\u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435 System of a Down \u0431\u0435\u0437 
\u043a\u0430\u043a\u0438\u0445-\u043b\u0438\u0431\u043e \u043e\u0431\u044a\u044f\u0432\u043b\
 u0435\u0
 43d\u0438\u0439 \u0431\u044b\u043b\u043e \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e 
\u043d\u0435\u0437\u0430\u0434\u043e\u043b\u0433\u043e \u0434\u043e \u0432\u044b\u0445\u043e\u0434\u0430 
\u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442\u043e\u0432 \u043d\u0430 \u0441\u0446\u0435\u043d\u0443. 
\u041f\u0440\u0438\u0448\u0435\u0434\u0448\u0438\u0435 \u0437\u0440\u0438\u0442\u0435\u043b\u0438 
\u0436\u0434\u0430\u043b\u0438 \u043d\u0430\u0447\u0430\u043b\u0430 
\u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0430 \u0431\u043e\u043b\u044c\u0448\u0435 
\u0447\u0430\u0441\u0430, \u043f\u043e\u0441\u043b\u0435 \u0447\u0435\u0433\u043e 
\u043d\u0430\u0447\u0430\u043b\u0438 \u0434\u0435\u0431\u043e\u0448: \u043e\u043d\u0438 
\u0441\u0442\u0430\u043b\u0438 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0430\u0442\u044c 
\u043a\u043e\u043d\u0446\u0435\u0440\u0442\u043d\u043e\u0435 
\u043e\u0431\u043e\u0440\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0435, 
\u0431\u0440\u043e\u0441\u0430\u043b\u0
 438 \u04
 3a\u0430\u043c\u043d\u0438 \u0432 \u043f\u043e\u043b\u0438\u0446\u0435\u0439\u0441\u043a\u0438\u0445, 
\u0440\u0430\u0437\u0431\u0438\u0432\u0430\u043b\u0438 \u043e\u043a\u043d\u0430. 
\u0411\u0435\u0441\u043f\u043e\u0440\u044f\u0434\u043a\u0438 
\u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u043b\u0438\u0441\u044c \u043f\u043e\u0447\u0442\u0438 
\u0448\u0435\u0441\u0442\u044c \u0447\u0430\u0441\u043e\u0432, \u0432 
\u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 
\u0448\u0435\u0441\u0442\u0435\u0440\u043e \u0444\u0430\u043d\u0430\u0442\u043e\u0432 
\u043a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u0430 \u0431\u044b\u043b\u0438 
\u0430\u0440\u0435\u0441\u0442\u043e\u0432\u0430\u043d\u044b.\n \u041d\u0430 
\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0434\u0435\u043d\u044c 
\u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f 
\u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u043b\u0438\u0437 \u0
 44d\u044
 2\u043e\u0433\u043e \u0430\u043b\u044c\u0431\u043e\u043c\u0430. \u041f\u043e 
\u0441\u0432\u043e\u0435\u043c\u0443 \u0441\u0442\u0438\u043b\u044e Toxicity \u043c\u0430\u043b\u043e 
\u043e\u0442\u043b\u0438\u0447\u0430\u043b\u0441\u044f \u043e\u0442 
\u0434\u0435\u0431\u044e\u0442\u043d\u043e\u0439 \u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0438. 
\u042d\u0442\u043e\u0442 \u0430\u043b\u044c\u0431\u043e\u043c \u043f\u043e\u043b\u0443\u0447\u0438\u043b 
\u0441\u0442\u0430\u0442\u0443\u0441 
\u043c\u0443\u043b\u044c\u0442\u0438\u043f\u043b\u0430\u0442\u0438\u043d\u043e\u0432\u043e\u0433\u043e, 
\u0438, \u0432\u043e \u043c\u043d\u043e\u0433\u043e\u043c 
\u0431\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0435\u043c\u0443, System of a Down 
\u0441\u0442\u0430\u043b\u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u043c\u0438 \u043d\u0430 
\u0432\u0435\u0441\u044c \u043c\u0438\u0440. \u0410\u043b\u044c\u0431\u043e\u043c 
\u0434\u0435\u0431\u044e\u0442\u0438\u0440\u043e\u0432
 \u0430\u
 043b \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u0439 \u0441\u0442\u0440\u043e\u0447\u043a\u0435 
\u0447\u0430\u0440\u0442\u043e\u0432 \u0421\u0428\u0410 \u0438 \u041a\u0430\u043d\u0430\u0434\u044b, \u0430 
\u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043c\u0438\u0440\u0443 \u0431\u044b\u043b\u043e 
\u043f\u0440\u043e\u0434\u0430\u043d\u043e \u0431\u043e\u043b\u0435\u0435 6 
\u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 
\u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u0432 \u0434\u0438\u0441\u043a\u0430.\n 
\u0410\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u044b\u0435 
\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0435 
\u0438\u0437\u0434\u0430\u043d\u0438\u044f 
\u0431\u043b\u0430\u0433\u043e\u0441\u043a\u043b\u043e\u043d\u043d\u043e 
\u043e\u0442\u043e\u0437\u0432\u0430\u043b\u0438\u0441\u044c \u043e\u0431 
\u0430\u043b\u044c\u0431\u043e\u043c\u0435. \u0422\u0430\u043a, 
\u0440\u0435\u0446\u0435\u043d\u0437\u0435\u043d\u0442 \u
 0436\u04
 43\u0440\u043d\u0430\u043b\u0430 \u00abTime\u00bb \u043e\u0442\u043c\u0435\u0442\u0438\u043b, 
\u0447\u0442\u043e \u0433\u0440\u0443\u043f\u043f\u0430 \u00ab\u043a\u0440\u0438\u0447\u0430\u043b\u0430 
\u0433\u0440\u043e\u043c\u0447\u0435 \u0438 
\u043a\u0440\u0430\u0441\u043d\u043e\u0440\u0435\u0447\u0438\u0432\u0435\u0439 
\u0432\u0441\u0435\u0445\u00bb. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c,\n\n 
\u00ab\u0421\u0435\u0440\u0436 \u0422\u0430\u043d\u043a\u044f\u043d \u0443\u043c\u0435\u0435\u0442 
\u043b\u0435\u0433\u043a\u043e \u043c\u0435\u043d\u044f\u0442\u044c \u0433\u043e\u043b\u043e\u0441\u0430, 
\u0447\u0442\u043e \u043e\u043d 
\u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u0443\u0435\u0442 \u0432 
\u00ab\u043e\u0442\u043b\u0438\u0447\u0438\u0432\u0448\u0438\u0445\u0441\u044f\u00bb \u00abChop Suey!\u00bb 
\u0438 \u00abForest\u00bb. \u041e\u043d \u0437\u043d\u0430\u0435\u0442, \u043a\u0430\u043a 
\u0441\u0434\u0435\u043b\u0430\u0442\u0
 44c \u04
 42\u0430\u043a, \u0447\u0442\u043e\u0431\u044b \u0433\u043e\u043b\u043e\u0441 
\u0437\u0432\u0443\u0447\u0430\u043b \u0432 \u043e\u0434\u043d\u0438\u0445 
\u043c\u043e\u043c\u0435\u043d\u0442\u0430\u0445 \u043a\u0430\u043a \u0443 \u0437\u043b\u043e\u0433\u043e 
\u0440\u0435\u0433\u0435\u043d\u0442\u0430, \u0430 \u0432 \u0434\u0440\u0443\u0433\u0438\u0445 \u2014 
\u043a\u0430\u043a \u0443 \u0441\u043e\u043b\u0438\u0441\u0442\u0430 \u0445\u043e\u0440\u0430 
\u043c\u0430\u043b\u044c\u0447\u0438\u043a\u043e\u0432. \u0412\u0441\u0451 \u044d\u0442\u043e 
\u043f\u0440\u0438\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u0433\u0438\u0442\u0430\u0440\u0438\u0441\u0442 
\u0414\u0430\u0440\u043e\u043d \u041c\u0430\u043b\u0430\u043a\u044f\u043d 
\u0441\u0442\u0435\u043d\u043e\u0439 \u0436\u0451\u0441\u0442\u043a\u043e\u0433\u043e 
\u0440\u0438\u0444\u0444\u0430.\u00bb\n\n \u0416\u0443\u0440\u043d\u0430\u043b \u00abSpin\u00bb 
\u043d\u0430\u043f\u0438\u0441\u0430\u043b, \u0447\u0442\u043e \u00abToxic
 ity \u20
 14 \u0441\u0430\u043c\u044b\u0439 \u0447\u0435\u0441\u0442\u043e\u043b\u044e\u0431\u0438\u0432\u044b\u0439 
\u0430\u043b\u044c\u0431\u043e\u043c \u0441\u0440\u0435\u0434\u0438 
\u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445 \u043d\u044e-\u043c\u0435\u0442\u0430\u043b 
\u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u044d\u0442\u043e 
\u0437\u0432\u0443\u0447\u0430\u043d\u0438\u0435 
\u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0441\u0442\u0438\u00bb.\n 
\u0417\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0435 \u0432 
\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430, \u043d\u043e \u043d\u0435 
\u043f\u043e\u043f\u0430\u0432\u0448\u0438\u0435 \u043d\u0430 
\u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0443 \u043f\u0435\u0441\u043d\u0438 \u0441 
\u043f\u043b\u043e\u0445\u0438\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e\u043c 
\u0437\u0430\u043f\u0438\u
 0441\u04
 38 \u0431\u044b\u043b\u0438 \u0443\u043a\u0440\u0430\u0434\u0435\u043d\u044b \u0438 
\u0432\u044b\u043b\u043e\u0436\u0435\u043d\u044b \u0432 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442, 
\u0432 \u0441\u0432\u044f\u0437\u0438 \u0441 \u0447\u0435\u043c \u0433\u0440\u0443\u043f\u043f\u0435 
\u043f\u0440\u0438\u0448\u043b\u043e\u0441\u044c \u0432 \u0441\u0436\u0430\u0442\u044b\u0435 
\u0441\u0440\u043e\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0438 
\u0438\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0434\u0438\u0441\u043a, 
\u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u043d\u0438 \u043d\u0430\u0437\u0432\u0430\u043b\u0438 
Steal This Album! (\u0440\u0443\u0441. \u0423\u043a\u0440\u0430\u0434\u0438 \u044d\u0442\u043e\u0442 
\u0430\u043b\u044c\u0431\u043e\u043c!), \u0441\u043e\u0441\u0442\u043e\u044f\u0432\u0448\u0438\u0439 
\u0438\u0437 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 
\u0432\u0435\u0440\u0441\u0438\
 u0439 \u
 0443\u043a\u0440\u0430\u0434\u0435\u043d\u043d\u044b\u0445 \u043f\u0435\u0441\u0435\u043d \u0438 
\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043d\u043e\u0432\u044b\u0445 
\u0442\u0440\u0435\u043a\u043e\u0432. \u042d\u0442\u043e\u0442 \u0430\u043b\u044c\u0431\u043e\u043c 
\u0431\u044b\u043b \u0432\u044b\u043f\u0443\u0449\u0435\u043d \u0432 \u0441\u0432\u0435\u0442 26 
\u043d\u043e\u044f\u0431\u0440\u044f 2002 \u0433\u043e\u0434\u0430. \u0412 
\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 
\u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0441 
\u041c\u0430\u0439\u043a\u043b\u043e\u043c \u041c\u0443\u0440\u043e\u043c \u0432\u044b\u0448\u0435\u043b 
\u043a\u043b\u0438\u043f Boom!, \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u043d\u044b\u0439 \u0432 
\u0441\u0442\u0438\u043b\u0435 \u0430\u043d\u0442\u0438\u0432\u043e\u0435\u043d\u043d\u043e\u0439 
\u043f\u0440\u043e\u043f\u0430\u0433\u0430\u043d\u0434\u044b. \u04
 12 \u044
 7\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0432\u0438\u0434\u0435\u043e \u0431\u044b\u043b\u043e 
\u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u043f\u0440\u043e\u0442\u0438\u0432 
\u0432\u043e\u0439\u043d\u044b \u0432 \u0418\u0440\u0430\u043a\u0435 \u0438 
\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043b\u043e \u043a\u0430\u0434\u0440\u044b \u0441\u043e 
\u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u0430 \u043c\u0438\u0442\u0438\u043d\u0433\u043e\u0432 
\u0438 \u0430\u043a\u0446\u0438\u0439, \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 15 
\u0444\u0435\u0432\u0440\u0430\u043b\u044f 2003 \u0433\u043e\u0434\u0430 \u0432 
\u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c 600 \u0433\u043e\u0440\u043e\u0434\u0430\u0445 
\u043c\u0438\u0440\u0430. \u0412\u0441\u0435\u0433\u043e \u043f\u0440\u0438\u043d\u044f\u043b\u043e 
\u0443\u0447\u0430\u0441\u0442\u0438\u0435 \u043f\u043e\u0440\u044f\u0434\u043a\u0430 
\u0434\u0435\u0441\u044f\u0442\u0438 \u043c\u
 0438\u04
 3b\u043b\u0438\u043e\u043d\u043e\u0432 \u0447\u0435\u043b\u043e\u0432\u0435\u043a, \u0430 System of a Down 
\u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u043b\u0438\u0441\u044c \u043a 
60-\u0442\u044b\u0441\u044f\u0447\u043d\u043e\u043c\u0443 \u0448\u0435\u0441\u0442\u0432\u0438\u044e \u0432 
\u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441\u0435.\n\n Mezmerize \u0438 Hypnotize\n\n 
\u0412 \u043f\u0435\u0440\u0438\u043e\u0434 \u0441 2004 \u043f\u043e 2005 \u0433\u043e\u0434 System of a Down 
\u043f\u043e\u0447\u0442\u0438 \u043d\u0435 \u0434\u0430\u0432\u0430\u043b\u0438 
\u043a\u043e\u043d\u0446\u0435\u0440\u0442\u043e\u0432, 
\u0437\u0430\u043d\u0438\u043c\u0430\u044f\u0441\u044c 
\u043d\u0430\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c \u043d\u043e\u0432\u044b\u0445 
\u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0439. \u0417\u0430 \u044d\u0442\u043e 
\u0432\u0440\u0435\u043c\u044f \u0433\u0440\u0443\u043f\u043f\u0430 \u0432\u044b\u04
 3f\u0443
 \u0441\u0442\u0438\u043b\u0430 23 \u043d\u043e\u0432\u044b\u0435 \u043f\u0435\u0441\u043d\u0438, 
\u0438\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u043d\u0430 \u0434\u0432\u0443\u0445 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430\u0445, 
\u043e\u0431\u0440\u0430\u0437\u0443\u044e\u0449\u0438\u0445 \u0435\u0434\u0438\u043d\u043e\u0435 
\u0446\u0435\u043b\u043e\u0435 \u043a\u0430\u043a \u0432 
\u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u043c \u043f\u043b\u0430\u043d\u0435, 
\u0442\u0430\u043a \u0438 \u0432 \u043f\u043b\u0430\u043d\u0435 
\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u043c. 
\u0410\u043b\u044c\u0431\u043e\u043c\u044b \u0431\u044b\u043b\u0438 
\u0432\u044b\u043f\u0443\u0449\u0435\u043d\u044b \u0441 \u0440\u0430\u0437\u043d\u0438\u0446\u0435\u0439 
\u0432\u0441\u0435\u0433\u043e \u0432 \u043f\u043e\u043b\u0433\u043e\u0434\u0430. 
\u041f\u0435\u0440\u0432\u0430\u044f \u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0430 \u20
 14 Mezme
 rize \u2014 \u0432\u044b\u0448\u043b\u0430 17 \u043c\u0430\u044f, \u0430 
\u0432\u0442\u043e\u0440\u0430\u044f, Hypnotize, \u2014 22 \u043d\u043e\u044f\u0431\u0440\u044f 2005 
\u0433\u043e\u0434\u0430. \u041f\u043e \u0441\u043b\u043e\u0432\u0430\u043c 
\u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442\u043e\u0432, \u043e\u043d\u0438 
\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u043b\u0438 \u044d\u0442\u0438 
\u0430\u043b\u044c\u0431\u043e\u043c\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c 
\u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u044f\u043c \u0432\u0440\u0435\u043c\u044f 
\u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 
\u043f\u0435\u0440\u0432\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0438\u0445 
\u043f\u0435\u0441\u0435\u043d \u043f\u0435\u0440\u0435\u0434 
\u0432\u044b\u043f\u0443\u0441\u043a\u043e\u043c \u0432\u0442\u043e\u0440\u043e\u0439 
\u043f\u043e\u043b\u043e\u0432\u0438\u043d\u044b.\n Mezmerize \u0434\u0435\u0
 431\u044
 e\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u043c 
\u043c\u0435\u0441\u0442\u0435 \u0432 \u0447\u0430\u0440\u0442\u0430\u0445 \u0421\u0428\u0410, 
\u041a\u0430\u043d\u0430\u0434\u044b \u0438 \u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0438. 
\u041f\u043e \u0432\u0441\u0435\u043c\u0443 \u043c\u0438\u0440\u0443 \u0431\u044b\u043b\u043e 
\u043f\u0440\u043e\u0434\u0430\u043d\u043e \u0431\u043e\u043b\u0435\u0435 800 000 
\u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u0432[20]. \u041e\u0431\u0430 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430 \u0441\u0442\u0430\u043b\u0438 
\u043f\u043b\u0430\u0442\u0438\u043d\u043e\u0432\u044b\u043c\u0438 \u0438 
\u043f\u043e\u0434\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043d\u0430 
\u043f\u0435\u0440\u0432\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0432 
\u0441\u043f\u0438\u0441\u043a\u0430\u0445 \u00ab\u0411\u0438\u043b\u043b\u0431\u043e\u0440\u0434\u0430\u00bb 
\u0432 \u0442\u0435\
 u0447\u0
 435\u043d\u0438\u0435 \u043e\u0434\u043d\u043e\u0433\u043e 
\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u043d\u043e\u0433\u043e \u0433\u043e\u0434\u0430. System of 
a Down \u0441\u0442\u0430\u043b\u0438 \u043f\u0435\u0440\u0432\u044b\u043c\u0438, \u043a\u043e\u043c\u0443 
\u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e 
\u043f\u043e\u0441\u043b\u0435 The Beatles. \u0412 \u0442\u043e\u043c \u0436\u0435 \u0433\u043e\u0434\u0443 
\u0433\u0440\u0443\u043f\u043f\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0430 
\u043d\u0430\u0433\u0440\u0430\u0434\u0443 MTV Europe Music Awards \u0437\u0430 
\u043b\u0443\u0447\u0448\u0438\u0439 
\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 
\u043f\u0440\u043e\u0435\u043a\u0442, \u0430 \u0432 2006 \u0433\u043e\u0434\u0443 System of a Down 
\u0443\u0434\u043e\u0441\u0442\u043e\u0438\u043b\u0438\u0441\u044c \u043f\u0440\u0435\u043c\u0438\u0438 
\u00ab\u04
 13\u0440
 \u044d\u043c\u043c\u0438\u00bb \u0437\u0430 \u043b\u0443\u0447\u0448\u0435\u0435 
\u0445\u0430\u0440\u0434-\u0440\u043e\u043a\u043e\u0432\u043e\u0435 
\u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435 (\u0437\u0430 
\u043f\u0435\u0441\u043d\u044e \u00abB.Y.O.B.\u00bb).\n\n \u041e\u0442\u043f\u0443\u0441\u043a \u0438 
\u0432\u043e\u0441\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435\n\n \u0412 \u043c\u0430\u0435 
2006 \u0433\u043e\u0434\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 
\u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u0435\u0440\u0435\u0440\u044b\u0432\u0435 
\u0432 \u0441\u0432\u043e\u0451\u043c \u0442\u0432\u043e\u0440\u0447\u0435\u0441\u0442\u0432\u0435. 
\u0428\u0430\u0432\u043e \u041e\u0434\u0430\u0434\u0436\u044f\u043d \u0432 
\u0438\u043d\u0442\u0435\u0440\u0432\u044c\u044e \u0436\u0443\u0440\u043d\u0430\u043b\u0443 
\u00abGuitar\u00bb \u0441\u043a\u0430\u0437\u0430\u043b, \u0447\u0442\u043e \u043e\u0442\u043f\u0443\u0441\u0
 43a \u04
 3f\u0440\u043e\u0434\u043b\u0438\u0442\u0441\u044f \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 
\u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412 \u0438\u043d\u0442\u0435\u0440\u0432\u044c\u044e \u0441 
\u041a\u0440\u0438\u0441\u043e\u043c \u0425\u0430\u0440\u0438\u0441\u0441\u043e\u043c (MTV News) 
\u0414\u0430\u0440\u043e\u043d \u041c\u0430\u043b\u0430\u043a\u044f\u043d 
\u0433\u043e\u0432\u043e\u0440\u0438\u043b, \u0447\u0442\u043e \u0433\u0440\u0443\u043f\u043f\u0430 
\u043d\u0435 \u0440\u0430\u0441\u043f\u0430\u0434\u0430\u0435\u0442\u0441\u044f, 
\u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0435\u0441\u043b\u0438 \u0431\u044b 
\u044d\u0442\u043e \u0431\u044b\u043b\u043e 
\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0442\u0430\u043a, 
\u0442\u043e \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0430 \u043d\u0430 Ozzfest \u0432 2006 
\u0433\u043e\u0434\u0443 \u043d\u0435 \u0431\u044b\u043b\u043e \u0431\u044b. \u00ab\u041c\u044b \u0441
 \u043e\u
 0431\u0438\u0440\u0430\u0435\u043c\u0441\u044f \u0443\u0439\u0442\u0438 \u0432 
\u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 
\u043f\u0435\u0440\u0435\u0440\u044b\u0432 \u0438 \u0441\u0434\u0435\u043b\u0430\u0442\u044c 
\u0441\u0432\u043e\u0438 \u0441\u043e\u043b\u044c\u043d\u044b\u0435 
\u043f\u0440\u043e\u0435\u043a\u0442\u044b, \u2014 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u043b 
\u0414\u0430\u0440\u043e\u043d, \u2014 \u043c\u044b \u0432 System \u0443\u0436\u0435 
\u0431\u043e\u043b\u044c\u0448\u0435 10 \u043b\u0435\u0442, \u0438, \u043c\u043d\u0435 
\u043a\u0430\u0436\u0435\u0442\u0441\u044f, \u044d\u0442\u043e \u0437\u0434\u043e\u0440\u043e\u0432\u043e, 
\u043f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u043d\u0430 
\u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f 
\u0433\u0440\u0443\u043f\u043f\u0443 \u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a 
\u043d\u0435\u0439 
 \u043f\u
 043e\u0437\u0436\u0435\u00bb.\n\n \u0412 2007 \u0433\u043e\u0434\u0443 
\u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442\u044b \u043f\u0440\u0438\u043d\u044f\u043b\u0438 
\u0443\u0447\u0430\u0441\u0442\u0438\u0435 \u0432 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 
\u0444\u0438\u043b\u044c\u043c\u0430 \u041a\u0430\u0440\u043b\u044b 
\u0413\u0430\u0440\u0430\u043f\u0435\u0434\u044f\u043d 
\u00ab\u041a\u0440\u0438\u0447\u0430\u0449\u0438\u0435\u00bb (\u00abScreamers\u00bb), 
\u0440\u0430\u0441\u0441\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0449\u0435\u0433\u043e \u043e 
\u0433\u0435\u043d\u043e\u0446\u0438\u0434\u0435 \u0430\u0440\u043c\u044f\u043d. \u0412 \u0442\u043e\u043c 
\u0436\u0435 \u0433\u043e\u0434\u0443 \u0421\u0435\u0440\u0436 \u0422\u0430\u043d\u043a\u044f\u043d 
\u0432\u044b\u043f\u0443\u0441\u0442\u0438\u043b \u0441\u0432\u043e\u0439 
\u043f\u0435\u0440\u0432\u044b\u0439 \u0441\u043e\u043b\u044c\u043d\u044b\u0439 
\u0430\u043b\u044c\u0431\u043e\u043c Elect The Dead, 
 \u0437\u
 0430\u043d\u044f\u0432\u0448\u0438\u0439 \u0447\u0435\u0442\u0432\u0451\u0440\u0442\u043e\u0435 
\u043c\u0435\u0441\u0442\u043e \u0432 Billboard 200, \u0414\u0430\u0440\u043e\u043d 
\u041c\u0430\u043b\u0430\u043a\u044f\u043d \u0438 \u0414\u0436\u043e\u043d 
\u0414\u043e\u043b\u043c\u0430\u044f\u043d \u0441\u043e\u0437\u0434\u0430\u043b\u0438 
\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443 Scars 
on Broadway (\u0442\u0430\u043a\u0436\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b 
\u043a\u0430\u043a \u00abScars\u00bb \u0438\u043b\u0438, 
\u0441\u043e\u043a\u0440\u0430\u0449\u0451\u043d\u043d\u043e, \u00abSOB\u00bb), \u0430 
\u0428\u0430\u0432\u043e \u041e\u0434\u0430\u0434\u0436\u044f\u043d \u0432\u043c\u0435\u0441\u0442\u0435 
\u0441 Wu-Tang Clan \u043e\u0441\u043d\u043e\u0432\u0430\u043b\u0438 \u0445\u0438\u043f-\u0445\u043e\u043f 
\u043f\u0440\u043e\u0435\u043a\u0442 Achozen. \u041f\u0435\u0440\u0432\u043e\u0435 \u0432
 \u044b\u
 0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435 S\u041eB \u043f\u0440\u043e\u0448\u043b\u043e 11 
\u0430\u043f\u0440\u0435\u043b\u044f \u043d\u0430 \u0441\u0446\u0435\u043d\u0435 \u00abWhisky A Go Go\u00bb 
\u0432 \u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441\u0435, \u0430 29 
\u0438\u044e\u043b\u044f 2008 \u0433\u043e\u0434\u0430 \u043e\u043d\u0438 
\u0432\u044b\u043f\u0443\u0441\u0442\u0438\u043b\u0438 \u0441\u0432\u043e\u0439 
\u043f\u0435\u0440\u0432\u044b\u0439 \u043e\u0434\u043d\u043e\u0438\u043c\u0435\u043d\u043d\u044b\u0439 
\u0430\u043b\u044c\u0431\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 
\u0437\u0430\u043d\u044f\u043b 17 \u043c\u0435\u0441\u0442\u043e \u0432 Billboard 200. 
\u0413\u0440\u0443\u043f\u043f\u0430 Achozen, \u0432 \u0441\u0432\u043e\u044e 
\u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u0437\u0430\u043f\u0438\u0441\u0430\u043b\u0430 
\u0430\u043b\u044c\u0431\u043e\u043c The Album, \u0440\u0435\u043b\u0438\u0437 \u043a\u043
 e\u0442\
 u043e\u0440\u043e\u0433\u043e \u0435\u0449\u0451 \u043d\u0435 
\u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f. 31 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2009 
\u0433\u043e\u0434\u0430 \u0432 \u0425\u044d\u043b\u043b\u043e\u0443\u0438\u043d 
\u041e\u0434\u0430\u0434\u0436\u044f\u043d \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043b 
\u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0439 \u043a\u043e\u043d\u0446\u0435\u0440\u0442 
\u00abShavo\u2019s Halloween party\u00bb \u0432 \u043a\u043b\u0443\u0431\u0435 The Roxy, \u0433\u0434\u0435 
\u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b \u043d\u0430 \u043e\u0434\u043d\u043e\u0439 
\u0441\u0446\u0435\u043d\u0435 \u0441 \u0434\u0432\u0443\u043c\u044f 
\u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 
SOAD \u2014 \u0414\u0430\u0440\u043e\u043d\u043e\u043c \u0438 \u0414\u0436\u043e\u043d\u043e\u043c. 
\u041e\u043d\u0438 \u0441\u044b\u0433\u0440\u
 0430\u04
 3b\u0438 \u0442\u0440\u0438 \u043f\u0435\u0441\u043d\u0438, \u0432 \u0442\u043e\u043c 
\u0447\u0438\u0441\u043b\u0435 \u00abSuite-Pee\u00bb (SOAD) \u0438 \u00abThey Say\u00bb (SOB). 30 
\u043c\u0430\u0440\u0442\u0430 2010 \u0433\u043e\u0434\u0430 \u0421\u0435\u0440\u0436 
\u0422\u0430\u043d\u043a\u044f\u043d \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b 
\u0432\u044b\u0445\u043e\u0434 \u0441\u0432\u043e\u0435\u0433\u043e 
\u0432\u0442\u043e\u0440\u043e\u0433\u043e \u0441\u043e\u043b\u044c\u043d\u043e\u0433\u043e 
\u0430\u043b\u044c\u0431\u043e\u043c\u0430 Imperfect Harmonies, \u0430 21 
\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f 
\u0440\u0435\u043b\u0438\u0437 \u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0438. 
\u0421\u043f\u0443\u0441\u0442\u044f \u043f\u043e\u0447\u0442\u0438 \u0442\u0440\u0438 
\u043d\u0435\u0434\u0435\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u043f\u0443\u0441\u043
 a\u0430 
 \u0434\u0438\u0441\u043a \u0434\u0435\u0431\u044e\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 
\u0442\u0440\u0435\u0442\u044c\u0435\u043c \u043c\u0435\u0441\u0442\u0435 \u0447\u0430\u0440\u0442\u0430 
\u0445\u0430\u0440\u0434-\u0440\u043e\u043a \u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432 Billboard.\n 
\u0420\u0430\u043d\u0435\u0435, \u0432 \u043d\u0430\u0447\u0430\u043b\u0435 
\u044f\u043d\u0432\u0430\u0440\u044f 2010 \u0433\u043e\u0434\u0430, \u0428\u0430\u0432\u043e 
\u041e\u0434\u0430\u0434\u0436\u044f\u043d \u043d\u0430\u043f\u0438\u0441\u0430\u043b \u0432 
\u0441\u0432\u043e\u0435\u043c \u043c\u0438\u043a\u0440\u043e\u0431\u043b\u043e\u0433\u0435: 
\u00ab\u041f\u0430\u0440\u043d\u0438, \u0433\u043e\u0442\u043e\u0432\u044b \u043b\u0438 \u0432\u044b \u043a 
System???\u00bb. \u042d\u0442\u043e \u043c\u043e\u0433\u043b\u043e 
\u043e\u0437\u043d\u0430\u0447\u0430\u0442\u044c 
\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435, \u043d\u043e \u043f\u043e\
 u0437\u0
 436\u0435, \u043a\u043e\u0433\u0434\u0430 \u0448\u0443\u043c\u0438\u0445\u0430 \u0432 
\u0431\u043b\u043e\u0433\u0430\u0445 \u0434\u043e\u0431\u0440\u0430\u043b\u0430\u0441\u044c \u0434\u043e 
\u0421\u041c\u0418, \u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442 
\u043e\u0431\u043d\u043e\u0432\u0438\u043b \u0441\u0432\u043e\u0451 
\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043d\u0430 Twitter, 
\u0437\u0430\u044f\u0432\u0438\u0432, \u0447\u0442\u043e 
\u0432\u043e\u0441\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430 
\u043d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u043f\u043b\u0430\u043d\u044b 
\u0433\u0440\u0443\u043f\u043f\u044b. \u0421\u0435\u0440\u0436 \u0422\u0430\u043d\u043a\u044f\u043d 
\u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u0441\u0442\u0440\u043e 
\u043e\u043f\u0440\u043e\u0432\u0435\u0440\u0433 \u044d\u0442\u043e\u0442 \u0441\u043b\u0443\u0445. 
\u041d\u043e \u0443\u0436\u0435 29 \u043d\u043e\u044f\u0431\u0440\u
 044f \u0
 44d\u0442\u043e\u0433\u043e \u0436\u0435 \u0433\u043e\u0434\u0430, \u043f\u043e\u0441\u043b\u0435 
\u043f\u044f\u0442\u0438\u043b\u0435\u0442\u043d\u0435\u0433\u043e 
\u043e\u0442\u043f\u0443\u0441\u043a\u0430, \u0433\u0440\u0443\u043f\u043f\u0430 
\u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0432\u043e\u0451\u043c 
\u0432\u043e\u0441\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0438. \u041d\u0430 
\u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0441\u0430\u0439\u0442\u0435 
\u043a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u0430 \u0431\u044b\u043b\u043e 
\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043e 
\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u00ab\u041c\u044b \u0445\u043e\u0442\u0438\u043c 
\u043f\u043e\u0431\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u0442\u044c \u0432\u0430\u0441 
\u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443, \u043d\u0435 \u0442\u043e\u043b\u
 044c\u04
 3a\u043e System of a Down, \u043d\u043e \u0438 \u0432\u0441\u0435\u0445 \u043d\u0430\u0448\u0438\u0445 
\u0441\u043e\u043b\u044c\u043d\u044b\u0445 \u0440\u0430\u0431\u043e\u0442. \u0423 \u043d\u0430\u0441 
\u043d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0434\u0430\u043b\u0435\u043a\u043e 
\u0438\u0434\u0443\u0449\u0438\u0445 \u043f\u043b\u0430\u043d\u043e\u0432. \u041c\u044b 
\u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u044b\u0433\u0440\u0430\u0435\u043c \u044d\u0442\u0438 
\u0448\u043e\u0443, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u043c 
\u0441\u043d\u043e\u0432\u0430 \u0432\u044b\u0439\u0442\u0438 \u043d\u0430 \u0441\u0446\u0435\u043d\u0443 
\u0432\u043c\u0435\u0441\u0442\u0435 \u2014 \u0438 \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e 
\u044d\u0442\u043e\u0433\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0432\u044b\u00bb (\u00abWe want to 
thank you for your support, not only to System Of A Down, but to all
  of our 
 solo efforts as well. We have no master plan of sorts \u2014 we are playing these shows simply because we 
want to play together again as a band and for you\u00bb). \u0412\u0441\u043a\u043e\u0440\u0435 
\u0441\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e 
\u0433\u0440\u0443\u043f\u043f\u0430 \u0441\u043e\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044f 
\u043d\u0430\u0447\u0430\u0442\u044c \u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 
\u0442\u0443\u0440 \u0432 2011 \u0433\u043e\u0434\u0443, \u0432 \u0445\u043e\u0434\u0435 
\u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u0430 
\u043d\u0430 \u043a\u0440\u0443\u043f\u043d\u044b\u0445 
\u0440\u043e\u043a-\u0444\u0435\u0441\u0442\u0438\u0432\u0430\u043b\u044f\u0445, 
\u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u043a \u00abRock am Ring\u00bb, \u00abGreenfield\u00bb, 
\u00abDownload\u00bb, \u00abNovarock\u00bb \u0438 \u00ab
 Metaltow
 n\u00bb. \u041f\u043e\u043c\u0438\u043c\u043e \u044d\u0442\u043e\u0433\u043e, \u0432 
\u043f\u043b\u0430\u043d\u0430\u0445 \u0443 System of a Down 
\u0437\u043d\u0430\u0447\u0438\u043b\u0438\u0441\u044c \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u044b 
\u0432 \u0418\u0442\u0430\u043b\u0438\u0438, \u0413\u0435\u0440\u043c\u0430\u043d\u0438\u0438, 
\u0424\u0440\u0430\u043d\u0446\u0438\u0438, \u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u0438, 
\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u0438, 
\u0410\u0432\u0441\u0442\u0440\u0438\u0438, \u0428\u0432\u0435\u0446\u0438\u0438 \u0438 
\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0438\u0438. \u0412 \u0445\u043e\u0434\u0435 
\u0442\u0443\u0440\u0430 System of a Down c\u044b\u0433\u0440\u0430\u043b\u0438 
\u0440\u0430\u043d\u0435\u0435 \u0440\u0435\u0434\u043a\u043e 
\u0438\u0441\u043f\u043e\u043b\u043d\u044f\u0432\u0448\u0438\u0435\u0441\u044f 
\u0432\u0436\u0438\u0432\u0443\u044e \u043f\u0435\u0441\u043d
 \u0438, 
 \u0442\u0430\u043a\u0438\u0435 \u043a\u0430\u043a: \u00abRoulette\u00bb, \u00abI-E-A-I-A-I-O\u00bb, 
\u00abRadio/Video\u00bb, \u00abHoney\u00bb, \u00abLost in Hollywood\u00bb, \u00abInnervision\u00bb. 21 
\u0438\u044e\u043d\u044f 2011 \u0433\u043e\u0434\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 
\u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u0430 \u0432 \u041c\u043e\u0441\u043a\u0432\u0435 \u0432 
\u0441\u043f\u043e\u0440\u0442\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0435 
\u00ab\u041e\u043b\u0438\u043c\u043f\u0438\u0439\u0441\u043a\u0438\u0439\u00bb.\n\n 
\u0421\u0442\u0438\u043b\u044c, \u0432\u043b\u0438\u044f\u043d\u0438\u0435, 
\u043a\u0440\u0438\u0442\u0438\u043a\u0430\n\n System of a Down 
\u0438\u0437\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e 
\u0438\u0441\u043f\u043e\u043b\u043d\u044f\u043b\u0438 \u043c\u0443\u0437\u044b\u043a\u0443 \u0432 
\u0441\u0442\u0438\u043b\u0435 \u043d\u044e-\u043c\u0435\u0442\u0430\u043b, \u0445\u043e\u0442\u044f 
\u0441\u0435\u0439
 \u0447\u
 0430\u0441 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u043e\u0433\u043e 
\u0441\u0442\u0438\u043b\u044f \u0438\u0445 \u043c\u0443\u0437\u044b\u043a\u0430 \u043d\u0435 
\u0438\u043c\u0435\u0435\u0442. \u0418\u0445 \u0441\u0442\u0438\u043b\u044c 
\u043d\u0435\u0440\u0435\u0434\u043a\u043e \u043d\u0430\u0437\u044b\u0432\u0430\u044e\u0442 
\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u043c 
\u043c\u0435\u0442\u0430\u043b\u043e\u043c, 
\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u043c 
\u0440\u043e\u043a\u043e\u043c, \u0430\u0440\u0442-\u0440\u043e\u043a\u043e\u043c, 
\u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u043c 
\u0440\u043e\u043a\u043e\u043c, \u0445\u0430\u0440\u0434-\u0440\u043e\u043a\u043e\u043c, 
\u0445\u044d\u0432\u0438-\u043c\u0435\u0442\u0430\u043b\u043e\u043c, 
\u043d\u044e-\u043c\u0435\u0442\u0430\u043b\u043e\u043c, \u043f\u0440\u043e\u04
 33\u0440
 \u0435\u0441\u0441\u0438\u0432\u043d\u044b\u043c \u043c\u0435\u0442\u0430\u043b\u043e\u043c \u0438 
\u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u043d\u044b\u043c 
\u0440\u043e\u043a\u043e\u043c. \u041f\u043e \u043c\u043d\u0435\u043d\u0438\u044e 
\u0424\u0438\u043b\u0438\u043f\u043f\u0430 \u041c\u0438\u0440\u043e\u043d\u043e\u0432\u0430, 
\u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0430 \u0438 
\u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u00abBlack 
Square\u00bb, \u00abSystem of a Down\u00bb 
\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0437\u0443\u044e\u0442\u0441\u044f 
\u0442\u044f\u0436\u0451\u043b\u044b\u043c \u0438 \u043f\u043b\u043e\u0442\u043d\u044b\u043c 
\u0437\u0432\u0443\u043a\u043e\u043c, \u043d\u0435 \u0447\u0443\u0436\u0434\u044b\u043c, 
\u0432\u043f\u0440\u043e\u0447\u0435\u043c, 
\u0441\u0438\u043c\u0444\u043e\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u043c\u0443 \u0434\u0440\
 u0430\u0
 43c\u0430\u0442\u0438\u0437\u043c\u0443\u00bb. \u0425\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0435\u043d 
\u0434\u043b\u044f S\u041e\u0410D \u0442\u0430\u043a\u0436\u0435 
\u043a\u043e\u043d\u0442\u0440\u0430\u0441\u0442\u043d\u044b\u0439 \u0432\u043e\u043a\u0430\u043b. 
\u041c\u043e\u0449\u043d\u044b\u0439 \u0433\u043e\u043b\u043e\u0441 \u0421\u0435\u0440\u0436\u0430 
\u0422\u0430\u043d\u043a\u044f\u043d\u0430 \u043e\u0431\u044b\u0447\u043d\u043e 
\u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0430\u0435\u0442\u0441\u044f 
\u0433\u0440\u043e\u043c\u043a\u0438\u043c\u0438, \u0431\u044b\u0441\u0442\u0440\u044b\u043c\u0438 \u0438 
\u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u043d\u044b\u043c\u0438 
\u0433\u0438\u0442\u0430\u0440\u043d\u044b\u043c\u0438 \u0440\u0438\u0444\u0444\u0430\u043c\u0438 \u0432 
\u0441\u0442\u0438\u043b\u0435 \u0442\u0440\u044d\u0448-\u043c\u0435\u0442\u0430\u043b. 
\u00ab\u0418\u043d\u043e\u0433\u0434\u0430 \u044f \u043f\u043e\u044e \u043a\u0430
 \u043a \
 u043e\u043f\u0435\u0440\u043d\u044b\u0439 \u043f\u0435\u0432\u0435\u0446, 
\u0438\u043d\u043e\u0433\u0434\u0430 \u0433\u043e\u0440\u0442\u0430\u043d\u043d\u043e, 
\u0438\u043d\u043e\u0433\u0434\u0430 \u043e\u0431\u044b\u0447\u043d\u043e, \u2014 
\u0433\u043e\u0432\u043e\u0440\u0438\u0442 \u0421\u0435\u0440\u0436 \u0422\u0430\u043d\u043a\u044f\u043d, 
\u2014 \u044d\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0441\u044f 
\u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043c\u0435\u043d\u044f 
\u0441\u0442\u0438\u043c\u0443\u043b\u0438\u0440\u0443\u0435\u0442 \u043c\u0443\u0437\u044b\u043a\u0430, 
\u0430 \u044f \u0435\u0439 \u043f\u0440\u043e\u0441\u0442\u043e 
\u043e\u0442\u0432\u0435\u0447\u0430\u044e\u00bb. \u0422\u0430\u043a\u0436\u0435 \u0432 \u0438\u0445 
\u043c\u0443\u0437\u044b\u043a\u0435 \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u044e\u0442\u0441\u044f 
\u0438 \u0430\u0440\u043c\u044f\u043d\u0441\u043a\u0438\u0435 \u043c\u043e\u0442\u0438
 \u0432\u
 044b.\n\n \u0414\u0440\u0443\u0433\u0430\u044f 
\u043e\u0442\u043b\u0438\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0447\u0435\u0440\u0442\u0430 
\u044d\u0442\u043e\u0433\u043e \u043a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u0430 \u2014 
\u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u044b, 
\u0437\u0430\u0442\u0440\u0430\u0433\u0438\u0432\u0430\u044e\u0449\u0438\u0435 
\u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438. \u0418\u0445 
\u043a\u0440\u0438\u0442\u0438\u043a\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0430, 
\u0432 \u043f\u0435\u0440\u0432\u0443\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043d\u0430 
\u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443 \u0421\u0428\u0410. 
\u0412\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0443 
\u043b\u0438\u0434\u0435\u0440\u0430 \u0433\u0440\u0443\u043f\u043f\u
 044b \u0
 421\u0435\u0440\u0436\u0430 \u0422\u0430\u043d\u043a\u044f\u043d\u0430 
\u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u043d\u0438\u0435, 
\u0447\u0442\u043e \u0437\u0430 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 
\u0441\u043b\u0435\u0434\u0438\u0442 \u0426\u0420\u0423. \u0422\u0430\u043a\u0436\u0435 \u0432 
\u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043f\u0435\u0441\u043d\u044f\u0445 SOAD 
\u043e\u0431\u0440\u0430\u0449\u0430\u044e\u0442 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435 
\u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u0435\u0439 \u043d\u0430 
\u0433\u0435\u043d\u043e\u0446\u0438\u0434 \u0430\u0440\u043c\u044f\u043d (\u00abP.L.U.C.K.\u00bb 
(\u00ab\u041f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438 
\u043b\u0433\u0443\u0449\u0438\u0435 \u043d\u0435\u0447\u0435\u0441\u0442\u0438\u0432\u044b\u0435 
\u0442\u0440\u0443\u0441\u043b\u0438\u0432\u044b\u0435 \u0443\u0431\u0438\u0439\u0446\u044b\u00bb), \u00
 abX\u00b
 b \u0438 \u00abHoly Mountains\u00bb). \u0414\u043b\u044f \u0433\u0440\u0443\u043f\u043f\u044b 
\u0441\u0442\u0430\u043b\u043e \u0442\u0440\u0430\u0434\u0438\u0446\u0438\u0435\u0439 
\u0443\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0442\u044c 
\u0431\u043b\u0430\u0433\u043e\u0442\u0432\u043e\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 
\u043a\u043e\u043d\u0446\u0435\u0440\u0442\u044b, 
\u043f\u043e\u0441\u0432\u044f\u0449\u0451\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u0443 
\u0433\u0435\u043d\u043e\u0446\u0438\u0434\u0430, \u043f\u0435\u0440\u0435\u0434 
\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0438 
\u0437\u0440\u0438\u0442\u0435\u043b\u0435\u0439 
\u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u044e\u0442\u0441\u044f 
\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, 
\u043f\u043e\u0432\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043e 
\u0441\u043e\u0431\u044b\u0442\u0438\u044f
 \u0445 \
 u0442\u0435\u0445 \u043b\u0435\u0442.\n \u00abSystem of a Down \u2014 
\u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u0430\u044f \u0447\u0430\u0441\u0442\u044c 
\u043d\u043e\u0432\u043e\u0439 \u0440\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u043e\u043d\u043d\u043e\u0439 
\u0432\u043e\u043b\u043d\u044b \u0432 \u0442\u044f\u0436\u0451\u043b\u043e\u043c \u0440\u043e\u043a\u0435, 
\u2014 \u043f\u0438\u0448\u0435\u0442 
\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 
\u043a\u0440\u0438\u0442\u0438\u043a. \u2014 \u041d\u0430 \u043f\u0435\u0440\u0432\u044b\u0439 
\u0432\u0437\u0433\u043b\u044f\u0434 \u043c\u043e\u0436\u0435\u0442 
\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f, \u0447\u0442\u043e \u044d\u0442\u0430 
\u0433\u0440\u0443\u043f\u043f\u0430 \u2014 \u0435\u0449\u0451 \u043e\u0434\u043d\u0430 
\u0440\u0430\u0437\u043d\u043e\u0432\u0438\u0434\u043d\u043e\u0441\u0442\u044c Rage Against the Machine, 
\u043d\u043e \u0432\u043e \u043
 2\u0441\
 u0451\u043c, \u0447\u0442\u043e \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f 
\u043c\u0443\u0437\u044b\u043a\u0438, \u043e\u043d\u0438 
\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0435 
\u043c\u0435\u0442\u0430\u043b\u043b\u0438\u0441\u0442\u044b, \u0447\u044c\u0438 
\u043f\u0435\u0441\u043d\u0438 \u0432\u043f\u0438\u0442\u0430\u043b\u0438 
\u043f\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0439 \u043f\u043e\u0434\u0445\u043e\u0434, 
\u0440\u0438\u0444\u0444\u044b \u0432 \u0434\u0443\u0445\u0435 Pantera \u0438 
\u0432\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u0451\u043c\u044b \u0432 
\u0441\u0442\u0438\u043b\u0435 \u041c\u0430\u0439\u043a\u0430 
\u041f\u0430\u0442\u0442\u043e\u043d\u0430\u00bb.\n \u0412 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u043c 
\u043d\u0430 \u0433\u0440\u0443\u043f\u043f\u0443 \u043f\u043e\u0432\u043b\u0438\u044f\u043b\u0430 
\u0431\u043b\u0438\u0436\u043d\u0435\u0432\u043e\u0441\u0442\u043e\u0447\u043d\u0430\u044f \u043
 c\u0443\
 u0437\u044b\u043a\u0430, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0442\u0430\u043a\u0438\u0435 
\u0433\u0440\u0443\u043f\u043f\u044b \u0438 
\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438, \u043a\u0430\u043a The Beatles, Kiss, 
AC/DC, Van Halen, Dead Kennedys, \u0424\u0440\u044d\u043d\u043a \u0417\u0430\u043f\u043f\u0430 \u0438 Slayer. 
\u00ab\u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u2014 
\u0440\u0430\u0441\u0441\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0414\u0430\u0440\u043e\u043d 
\u041c\u0430\u043b\u0430\u043a\u044f\u043d, \u2014 \u043d\u0430 \u043d\u0430\u0441 
\u043f\u043e\u0432\u043b\u0438\u044f\u043b\u0438 \u0434\u0432\u0430 \u0444\u0438\u043b\u044c\u043c\u0430 
\u201e\u0423\u0431\u0438\u0442\u044c \u0411\u0438\u043b\u043b\u0430\u201c\u2026 \u042f 
\u043d\u0430\u0448\u0435\u043b \u043d\u0435\u0447\u0442\u043e \u043e\u0431\u0449\u0435\u0435 
\u043c\u0435\u0436\u0434\u0443 \u041a\u0432\u0435\u043d\u0442\u0438\u043d\u043e\u043c \u0422\
 u0430\u0
 440\u0430\u043d\u0442\u0438\u043d\u043e \u0438 System of a Down, \u043f\u043e\u0442\u043e\u043c\u0443 
\u0447\u0442\u043e \u0444\u0438\u043b\u044c\u043c\u044b 
\u0422\u0430\u0440\u0430\u043d\u0442\u0438\u043d\u043e \u2014 \u044d\u0442\u043e 
\u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0438 
\u0444\u0438\u043b\u044c\u043c\u044b \u0443\u0436\u0430\u0441\u043e\u0432, \u0438 
\u0434\u0440\u0430\u043c\u044b, \u0438 \u0444\u0438\u043b\u044c\u043c\u044b \u0441 
\u0445\u0435\u043f\u043f\u0438-\u044d\u043d\u0434\u043e\u043c. \u042d\u0442\u043e \u0436\u0435 
\u043c\u043e\u0436\u043d\u043e \u0441\u043a\u0430\u0437\u0430\u0442\u044c \u0438 \u043e 
\u043c\u0443\u0437\u044b\u043a\u0435 System of a Down\u00bb.\n\n System of a Down: Right Here in 
Hollywood\n\n 30 \u0430\u043f\u0440\u0435\u043b\u044f 2006 \u0433\u043e\u0434\u0430 
\u043a\u0440\u0443\u043f\u043d\u044b\u043c \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u043c 
\u0438\u0437\u0434\u0430\u0442\u0435\
 u043b\u0
 44c\u0441\u0442\u0432\u043e\u043c \u00abIndependent Music Press\u00bb \u0431\u044b\u043b\u0430 
\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0430 \u043f\u0435\u0440\u0432\u0430\u044f 
\u043a\u043d\u0438\u0433\u0430, \u043f\u043e\u0441\u0432\u044f\u0449\u0451\u043d\u043d\u0430\u044f 
\u0442\u0432\u043e\u0440\u0447\u0435\u0441\u0442\u0432\u0443 \u0433\u0440\u0443\u043f\u043f\u044b, 
\u043f\u043e\u0434 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u00abSystem of a Down: Right Here 
in Hollywood\u00bb (\u0440\u0443\u0441. System of a Down: \u041f\u0440\u044f\u043c\u043e 
\u0437\u0434\u0435\u0441\u044c, \u0432 \u0413\u043e\u043b\u043b\u0438\u0432\u0443\u0434\u0435), 
\u0430\u0432\u0442\u043e\u0440\u043e\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 
\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 
\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439 \u0436\u0443\u0440\u043d\u0430\u043b\u043
 8\u0441\
 u0442 \u0411\u0435\u043d \u041c\u0430\u0439\u0435\u0440\u0441 
(\u0430\u043d\u0433\u043b.)\u0440\u0443\u0441\u0441\u043a\u2026 \u041f\u043e \u0435\u0433\u043e 
\u0441\u043b\u043e\u0432\u0430\u043c, \u043e\u043d \u0431\u043e\u043b\u044c\u0448\u043e\u0439 
\u0444\u0430\u043d\u0430\u0442 SOAD \u0435\u0449\u0451 \u0441 \u0442\u0435\u0445 \u043f\u043e\u0440, 
\u043a\u043e\u0433\u0434\u0430 \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0431\u0440\u0430\u043b 
\u0438\u043d\u0442\u0435\u0440\u0432\u044c\u044e \u0443 
\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 
\u043a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u0430 \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 
\u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u043e\u0433\u043e \u0442\u0443\u0440\u0430 1999 
\u0433\u043e\u0434\u0430. \u041a\u043d\u0438\u0433\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 
\u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u
 0435\u04
 41\u043a\u0438\u0439 \u043e\u0447\u0435\u0440\u043a \u0433\u0440\u0443\u043f\u043f\u044b, \u043d\u043e 
\u0438 \u044d\u043a\u0441\u043a\u043b\u044e\u0437\u0438\u0432\u043d\u044b\u0435 
\u0438\u043d\u0442\u0435\u0440\u0432\u044c\u044e \u0441 \u0435\u0451 
\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438.\n \u00ab\u0427\u0442\u043e\u0431\u044b 
\u043d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043a\u043d\u0438\u0433\u0443, 
\u043d\u0443\u0436\u043d\u043e \u043f\u043e\u0442\u0440\u0430\u0442\u0438\u0442\u044c 
\u043c\u0435\u0441\u044f\u0446\u044b \u043d\u0430 \u0438\u043d\u0442\u0435\u0440\u0432\u044c\u044e, 
\u0440\u0430\u0441\u0441\u043f\u0440\u043e\u0441\u044b, 
\u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u044f, \u2014 
\u0440\u0430\u0441\u0441\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0411\u0435\u043d 
\u041c\u0430\u0439\u0435\u0440\u0441. \u2014 \u041c\u043d\u0435 
\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b \u0442\u0435 \u0433\u0440\u
 0443\u04
 3f\u043f\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 
\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e 
\u0434\u0435\u043b\u0430\u044e\u0442 \u0447\u0442\u043e-\u0442\u043e 
\u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435, \u0438, 
\u043a\u043e\u043d\u0435\u0447\u043d\u043e, \u043d\u0435\u043f\u043b\u043e\u0445\u043e, 
\u0435\u0441\u043b\u0438 \u043e\u043d\u0438 \u043f\u0440\u0438 \u044d\u0442\u043e\u043c \u0435\u0449\u0451 
\u0438 \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u2026 \u042f 
\u043d\u0430\u043f\u0438\u0441\u0430\u043b \u043a\u043d\u0438\u0433\u0443 \u043e System of a Down, 
\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0447\u0438\u0442\u0430\u044e 
\u0441\u0430\u043c\u043e\u0439 \u0432\u0430\u0436\u043d\u043e\u0439 
\u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438 
\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 
\u043d
 \u0430\u
 0448\u0438\u0445 \u0434\u043d\u0435\u0439. \u0418\u0445 \u043c\u0443\u0437\u044b\u043a\u0430 \u2014 
\u044d\u0442\u043e \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u0435\u0439\u0448\u0438\u0439 \u0432 
\u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u043c 
\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u0441\u0430\u0443\u043d\u0434\u0442\u0440\u0435\u043a 
\u043a \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0439 
\u0436\u0438\u0437\u043d\u0438 \u0432\u0440\u0435\u043c\u0435\u043d 
\u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0441\u0442\u0432\u0430 
\u0414\u0436\u043e\u0440\u0434\u0436\u0430 \u0411\u0443\u0448\u0430\u00bb. 2011\n\nDaron Malakian \u2013 
guitar, vocals\nSerj Tankian \u2013 lead vocals, keyboard\nShavo Odadjian \u2013 bass\nJohn Dolmayan \u2013 
drums","strBiographyES":null,"strBiographyPT":null,"strBiographySE":"System of a Down \u00e4r ett amerikanskt 
alternativ metal-band fr\u00e5n Hollywood, Kalifornien, m
 ed urspr
 ung fr\u00e5n Glendale, Kalifornien, grundat \u00e5r 1994. De har i vissa fall ett flertal olika musikstilar 
i en och samma l\u00e5t och det \u00e4r d\u00e4rf\u00f6r \u00e4r det sv\u00e5rt att kategorisera dem. Bandet 
best\u00e5r av Serj Tankian (s\u00e5ng), Daron Malakian (gitarr), Shavo Odadjian (elbas) och John Dolmayan 
(trummor).\n\nDet sj\u00e4lvbetitlade debutalbumet sl\u00e4pptes 1998 och tre av bandets senare album 
(Toxicity, Mezmerize och Hypnotize) har debuterat p\u00e5 plats nummer 1 p\u00e5 den amerikanska Billboard 
200-listan. System of a Down har blivit nominerade till fyra stycken Grammy Awards, varav de har vunnit en 
g\u00e5ng (med \"B.Y.O.B.\" \u00e5r 2006). Deras senaste album Hypnotize sl\u00e4pptes i november 
2005.\n\nBandets medlemmar har armeniskt, libanesiskt och amerikanskt ursprung, och samtliga medlemmar har 
sl\u00e4ktingar som m\u00f6rdades under det armeniska folkmordet, och tillh\u00f6r s\u00e5ledes den armeniska 
diasporan. \u00c4ven om bandet in
 te vill 
 beskriva sig som ett politiskt band s\u00e5 har man engagerat sig f\u00f6r att sprida kunskap om det 
armeniska folkmordet och propagerat mot amerikansk militarism.\nSystem of a Downs medlemmar tog ett 
uppeh\u00e5ll fr\u00e5n varandra med start den 13 augusti 2006. Under detta uppeh\u00e5ll arbetade 
medlemmarna med olika sidoprojekt. Den 29 november 2010 meddelade dock bandet att de hade 
\u00e5terf\u00f6renats och att de kommer att h\u00e5lla flera konserter fram\u00f6ver. Den f\u00f6rsta av 
dessa konserter h\u00f6lls i Edmonton den 10 maj 2011. Det \u00e4r \u00e4nnu oklart om bandet kommer att 
spela in nytt material 
tillsammans.","strBiographyNL":null,"strBiographyHU":null,"strBiographyNO":null,"strBiographyIL":null,"strBiographyPL":null,"strGender":"Male","intMembers":"4","strCountry":"Glendale,
 California, 
USA","strCountryCode":"US","strArtistThumb":"https://www.theaudiodb.com/images/media/artist/thumb/tutqyy1340536730.jpg","strArtistLogo":"https://www.theaudiodb.com/image
 s/media/
 
artist/logo/system-of-a-down-4df40cb145b05.png","strArtistClearart":null,"strArtistWideThumb":"https://www.theaudiodb.com/images/media/artist/widethumb/uspqyw1525090052.jpg","strArtistFanart":"https://www.theaudiodb.com/images/media/artist/fanart/system-of-a-down-4def4cf79b8f7.jpg","strArtistFanart2":"https://www.theaudiodb.com/images/media/artist/fanart/system-of-a-down-4ddaf61d98ce2.jpg","strArtistFanart3":"https://www.theaudiodb.com/images/media/artist/fanart/system-of-a-down-4def4d1583fcc.jpg","strArtistBanner":"https://www.theaudiodb.com/images/media/artist/banner/system-of-a-down-5526e8d714344.jpg","strMusicBrainzID":"cc0b7089-c08d-4c10-b6b0-873582c17fd6","strLastFMChart":"http://www.last.fm/music/System
 of a Down/+charts?rangetype=6month","intCharted":"3","strLocked":"unlocked"}]}
diff --git a/tests/lua-factory/sources/test_lua_theaudiodb.c b/tests/lua-factory/sources/test_lua_theaudiodb.c
index c06eb2fc..506e8878 100644
--- a/tests/lua-factory/sources/test_lua_theaudiodb.c
+++ b/tests/lua-factory/sources/test_lua_theaudiodb.c
@@ -90,6 +90,72 @@ test_resolve_album_cover (void)
   g_object_unref (options);
 }
 
+static void
+test_resolve_artist_art (void)
+{
+  guint i, j, expected_nr_thumbnails;
+  GList *keys;
+  GrlMedia *media;
+  GrlOperationOptions *options;
+  GrlSource *source;
+  GError *error = NULL;
+
+  struct {
+    gchar *artist;
+    int nr_thumbnails;
+    gchar *thumbnails[5];
+  } audios[] = {
+   { "coldplay",
+     5,
+     { "https://www.theaudiodb.com/images/media/artist/thumb/uxrqxy1347913147.jpg";,
+       "https://www.theaudiodb.com/images/media/artist/clearart/ruyuwv1510827568.png";,
+       "https://www.theaudiodb.com/images/media/artist/fanart/spvryu1347980801.jpg";,
+       "https://www.theaudiodb.com/images/media/artist/fanart/uupyxx1342640221.jpg";,
+       "https://www.theaudiodb.com/images/media/artist/fanart/qstpsp1342640238.jpg";
+     }
+   },
+   {
+     "system of a down",
+     4,
+     { "https://www.theaudiodb.com/images/media/artist/thumb/tutqyy1340536730.jpg";,
+       "https://www.theaudiodb.com/images/media/artist/fanart/system-of-a-down-4def4cf79b8f7.jpg";,
+       "https://www.theaudiodb.com/images/media/artist/fanart/system-of-a-down-4ddaf61d98ce2.jpg";,
+       "https://www.theaudiodb.com/images/media/artist/fanart/system-of-a-down-4def4d1583fcc.jpg";
+     }
+   },
+  };
+
+  source = test_lua_factory_get_source (THEAUDIODB_ID, THEAUDIODB_OPS);
+
+  keys = grl_metadata_key_list_new (GRL_METADATA_KEY_THUMBNAIL);
+  options = grl_operation_options_new (NULL);
+  grl_operation_options_set_resolution_flags (options, GRL_RESOLVE_NORMAL);
+
+  for (i = 0; i < G_N_ELEMENTS (audios); i++) {
+    media = grl_media_audio_new ();
+    grl_media_set_artist (media, audios[i].artist);
+
+    grl_source_resolve_sync (source,
+                             GRL_MEDIA (media),
+                             keys,
+                             options,
+                             &error);
+    g_assert_no_error (error);
+
+    expected_nr_thumbnails = grl_data_length (GRL_DATA (media), GRL_METADATA_KEY_THUMBNAIL);
+    g_assert_cmpuint (expected_nr_thumbnails, ==, audios[i].nr_thumbnails);
+
+    for (j = 0; j < expected_nr_thumbnails; j++) {
+      g_assert_cmpstr (grl_media_get_thumbnail_nth (GRL_MEDIA (media), j), ==, audios[i].thumbnails[j]);
+    }
+
+    g_object_unref (media);
+  }
+
+  g_list_free (keys);
+  g_object_unref (options);
+}
+
 static void
 test_theaudiodb_setup (gint *p_argc,
                        gchar ***p_argv)
@@ -117,6 +183,9 @@ main (gint argc, gchar **argv)
   g_test_add_func ("/lua_factory/sources/theaudiodb/resolve/albumcover",
                    test_resolve_album_cover);
 
+  g_test_add_func ("/lua_factory/sources/theaudiodb/resolve/artistart",
+                   test_resolve_artist_art);
+
   gint result = g_test_run ();
 
   test_lua_factory_shutdown ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]