-
Notifications
You must be signed in to change notification settings - Fork 0
/
artistnodes.gml
45633 lines (45633 loc) · 540 KB
/
artistnodes.gml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
graph
[
directed 0
node
[
id 0
label "Jeanne Moreau"
]
node
[
id 1
label " Felicity Lott, Della Jones, Keith Lewis, Willard White & the London Philharmonic Choir, the London Philharmonic conducted by Franz Welser-Möst Composer Mozart"
]
node
[
id 2
label " Kiri Te Kanawa, Anne Sofie Von Otter and Barbara Hendricks Composer Strauss"
]
node
[
id 3
label " Les Moines de l’abbaye de Notre Dame of Ganagobie Composer Trad"
]
node
[
id 4
label " Orchestra e coro del Teatro alla Scala conducted by Lorin Maazel Composer Verdi"
]
node
[
id 5
label " The Monteverdi Choir"
]
node
[
id 6
label "(Trumpet) Fran Berger & Hans-Dieter Weber (organ) Composer Tomaso Albinoni"
]
node
[
id 7
label "10cc"
]
node
[
id 8
label "1994 Original London Cast"
]
node
[
id 9
label "2raumwohnung"
]
node
[
id 10
label "A R Rahman"
]
node
[
id 11
label "Abba"
]
node
[
id 12
label "Abdullah Ibrahim"
]
node
[
id 13
label "Abraham Mansfarroll"
]
node
[
id 14
label "AC/DC"
]
node
[
id 15
label "Acker Bilk"
]
node
[
id 16
label "Agnesa Tothova with the Prague Philharmonia Orchestra conducted by James Sedares"
]
node
[
id 17
label "Al Bowlly with Ray Noble and His Orchestra"
]
node
[
id 18
label "Alan Green"
]
node
[
id 19
label "Alan Marks on the piano"
]
node
[
id 20
label "Alan Price"
]
node
[
id 21
label "Alan Schiller"
]
node
[
id 22
label "Albrecht Mayer"
]
node
[
id 23
label "Aled Jones"
]
node
[
id 24
label "Alex Parks"
]
node
[
id 25
label "Alfred Brendel"
]
node
[
id 26
label "Alfred Deller"
]
node
[
id 27
label "Alicia Keys"
]
node
[
id 28
label "Alison Krauss"
]
node
[
id 29
label "All Saints"
]
node
[
id 30
label "Ambrosian Opera Chorus with the Philharmonia Orchestra conducted by Riccardo Muti"
]
node
[
id 31
label "Amiina"
]
node
[
id 32
label "Amy Winehouse"
]
node
[
id 33
label "an Charleson with the Royal Shakespeare Theatre Wind Ensemble Composer Guy Woolfenden"
]
node
[
id 34
label "Ana Maria Miranda 'Orchestre de chambre' cond. by Roger Cotte"
]
node
[
id 35
label "Andras Schiff"
]
node
[
id 36
label "Andrea Bocelli"
]
node
[
id 37
label "Andreas Scholl"
]
node
[
id 38
label "Andrew Knights and members of the Royal Philharmonic Orch cond. Barry Wordsworth Composer Neil Gardner"
]
node
[
id 39
label "Andrew Marriner with London Mozart Players"
]
node
[
id 40
label "Angela Gheorghiu"
]
node
[
id 41
label "Angela Hewitt"
]
node
[
id 42
label "Ann Christine Lofgren"
]
node
[
id 43
label "Ann Hart"
]
node
[
id 44
label "Anna Netrebko & Rolando Villazon with the Vienna Philharmonic conducted by Carlo Rizzi"
]
node
[
id 45
label "Anna Russell"
]
node
[
id 46
label "Anne Brown Composer George Gershwin-DuBoss Heyard-Ira Gershwin"
]
node
[
id 47
label "Anne Dawson & Maldwyn Davies with the Geoffrey Mitchell Choir & the English Chamber Orchestra conducted by Alan Melville"
]
node
[
id 48
label "Anne Grimm with the Amsterdam Baroque Orchestra and Choir conducted with Bott-Thomas-Schopper Composer Purcell"
]
node
[
id 49
label "Anne-Sophie Mutter & Bruno Giuranna with the Academy of St Martin in the Fields conducted by Sir Neville Marriner"
]
node
[
id 50
label "Annie Lennox"
]
node
[
id 51
label "Anthony Newley"
]
node
[
id 52
label "Anton Karas"
]
node
[
id 53
label "Antonello Venditti"
]
node
[
id 54
label "Aretha Franklin"
]
node
[
id 55
label "Arthur Conley"
]
node
[
id 56
label "Arthur Grumiaux with the London Symphony Orchestra"
]
node
[
id 57
label "Arthur Marshall"
]
node
[
id 58
label "Artur Rubinstein"
]
node
[
id 59
label "Artur Schnabel"
]
node
[
id 60
label "Arturo Benedetti Michaelangeli"
]
node
[
id 61
label "ascha Heifetz (Violin) Arpad Sandor (Piano) Composer Debussy - Arranger - Heifetz"
]
node
[
id 62
label "Astrud Gilberto"
]
node
[
id 63
label "Atlanta Symphony Orch. conducted by Yoel Levi"
]
node
[
id 64
label "Atrium Musicae de Madrid"
]
node
[
id 65
label "Audrey Hepburn"
]
node
[
id 66
label "Barb Jungr"
]
node
[
id 67
label "Barbara Bonney & the Monteverdi Choir with the Revolutionary & Romantic Orchestra conducted by John Eliot Gardiner"
]
node
[
id 68
label "Barbara Streisand"
]
node
[
id 69
label "Barry White"
]
node
[
id 70
label "Bebe Manga"
]
node
[
id 71
label "Bebel Gilberto"
]
node
[
id 72
label "Beck"
]
node
[
id 73
label "Belle and Sebastian"
]
node
[
id 74
label "Ben Folds"
]
node
[
id 75
label "Ben Webster"
]
node
[
id 76
label "Beniamino Gigli"
]
node
[
id 77
label "Benjamin Britten playing the piano with Kenneth Sillito, Cecil Aronowitz and Kenneth Heath Composer Mozart"
]
node
[
id 78
label "Benno Moiseiwitsch with the London Philharmonic Orchestra conducted by Eorge Szell"
]
node
[
id 79
label "Benny Goodman"
]
node
[
id 80
label "Benny Hill"
]
node
[
id 81
label "Bernstein cond, Israel Philharmonic"
]
node
[
id 82
label "Bessie Smith"
]
node
[
id 83
label "Bette Midler"
]
node
[
id 84
label "Big Bill Broonzy"
]
node
[
id 85
label "Bill Haley and his Comets"
]
node
[
id 86
label "Bill Withers"
]
node
[
id 87
label "Billie Holiday"
]
node
[
id 88
label "Billy Bragg"
]
node
[
id 89
label "Billy Fury"
]
node
[
id 90
label "Billy Joel"
]
node
[
id 91
label "Billy May's Big Band"
]
node
[
id 92
label "Billy Paul"
]
node
[
id 93
label "Bing Crosby"
]
node
[
id 94
label "Bing Crosby and Frank Sinatra"
]
node
[
id 95
label "Birgit Nilsson"
]
node
[
id 96
label "Bjork"
]
node
[
id 97
label "Black Dyke Mills Band"
]
node
[
id 98
label "Blind Boy Fuller'"
]
node
[
id 99
label "Blondie"
]
node
[
id 100
label "Blood Sweat and Tears"
]
node
[
id 101
label "Blur"
]
node
[
id 102
label "Bo Skovhus as Don Giovanni & Nuccia Focile as Zerlina Composer Mozart"
]
node
[
id 103
label "Bob and Marcia"
]
node
[
id 104
label "Bob Dylan"
]
node
[
id 105
label "Bob Lind"
]
node
[
id 106
label "Bob Marley"
]
node
[
id 107
label "Bob McGrath"
]
node
[
id 108
label "Bob Seger"
]
node
[
id 109
label "Bobbie Gentry"
]
node
[
id 110
label "Bobby Darin"
]
node
[
id 111
label "Bobby Hebb"
]
node
[
id 112
label "Bobby Short"
]
node
[
id 113
label "Bobby Womack"
]
node
[
id 114
label "Boney M"
]
node
[
id 115
label "Bonnie Tyler"
]
node
[
id 116
label "Booker T and the MGs"
]
node
[
id 117
label "Branford Marsalis with the English Chamber Orchestra"
]
node
[
id 118
label "Brenda Fassie"
]
node
[
id 119
label "Brent Spiner"
]
node
[
id 120
label "Brian Johnston and Jonathan Agnew at Test Match 1991"
]
node
[
id 121
label "Brian Silas"
]
node
[
id 122
label "Bridie Staunton/Maria Sonia"
]
node
[
id 123
label "Bruce Springsteen"
]
node
[
id 124
label "Bruno Walter with Kathleen Ferrier and the Vienna Philharmonic recorded in 1952"
]
node
[
id 125
label "Bryan Adams"
]
node
[
id 126
label "Bryn Terfel"
]
node
[
id 127
label "Bryn Terfel, Katherine Jenkins, Aled Jones & the Millennium Stadium Crowd"
]
node
[
id 128
label "Bud Flanagan"
]
node
[
id 129
label "Buddy Holly"
]
node
[
id 130
label "Buju Banton"
]
node
[
id 131
label "Bunny Berigan and the Boys"
]
node
[
id 132
label "Burl Ives"
]
node
[
id 133
label "Burning Spear"
]
node
[
id 134
label "Bushwackers"
]
node
[
id 135
label "Busted"
]
node
[
id 136
label "Caetano Veloso"
]
node
[
id 137
label "Cait O'Riordon and the Pogues"
]
node
[
id 138
label "Callum Kennedy"
]
node
[
id 139
label "Calypso Kountouris (castaway's grandaughter)"
]
node
[
id 140
label "Carlo Guelfi, & Maria Guleghina with the London Symphony Orchestra conducted by Antonio Pappano"
]
node
[
id 141
label "Carlos Gardel"
]
node
[
id 142
label "Carole King"
]
node
[
id 143
label "Cast of the film ' Lagaan'"
]
node
[
id 144
label "Cat Stevens"
]
node
[
id 145
label "Catherine Deneuve/Nino Castelnuovo"
]
node
[
id 146
label "Cecilia Bartoli"
]
node
[
id 147
label "Cesária Évora"
]
node
[
id 148
label "Chaka Khan"
]
node
[
id 149
label "Chappell recorded Music Library"
]
node
[
id 150
label "Charles Aznavour"
]
node
[
id 151
label "Charles Dutoit & Montreal Symphony Orch Composer Ravel"
]
node
[
id 152
label "Charles Mingus"
]
node
[
id 153
label "Charles Penrose"
]
node
[
id 154
label "Charles Trenet"
]
node
[
id 155
label "Charlie Parker"
]
node
[
id 156
label "Charlotte Church with the Orchestra of the Welsh National Opera"
]
node
[
id 157
label "Cher"
]
node
[
id 158
label "Chet Baker"
]
node
[
id 159
label "Chick Corea"
]
node
[
id 160
label "Chick Corea and Gary Burton"
]
node
[
id 161
label "Chris Barber Band Box"
]
node
[
id 162
label "Chris Barber's Jazz Band and Ottilie Patterson"
]
node
[
id 163
label "Chris Farlowe"
]
node
[
id 164
label "Christa Ludwig and Teresa Stich-Randall with the Philharmonia Orchestra conducted by Herbert von Karajan"
]
node
[
id 165
label "Christoph Poppen and Isabelle Faust with the Bach Colleguim of Stuttgart conducted by Helmuth Rilling"
]
node
[
id 166
label "Christopher Gunning"
]
node
[
id 167
label "Christopher Herrrick"
]
node
[
id 168
label "Christy Moore"
]
node
[
id 169
label "Chuck Berry"
]
node
[
id 170
label "Cilla Black"
]
node
[
id 171
label "Cirque du Solei"
]
node
[
id 172
label "Claude Helffer"
]
node
[
id 173
label "Claudio Arrau"
]
node
[
id 174
label "Cleo Laine"
]
node
[
id 175
label "Cliff Richard"
]
node
[
id 176
label "Clifford Curzon"
]
node
[
id 177
label "Clifton Chenier"
]
node
[
id 178
label "Coldplay"
]
node
[
id 179
label "Comedian Harmonists"
]
node
[
id 180
label "Concerto Italiano conducted by Rinaldo Alessandrini"
]
node
[
id 181
label "Connie Boswell"
]
node
[
id 182
label "Coope, Boyes & Simpson"
]
node
[
id 183
label "Cornelius Cardew"
]
node
[
id 184
label "Corul Feroujarja directed by Adrian Corojan"
]
node
[
id 185
label "Credence Clearwater Revival"
]
node
[
id 186
label "Crosby and Nash"
]
node
[
id 187
label "Crystal Gale"
]
node
[
id 188
label "Curtis Mayfield"
]
node
[
id 189
label "Cyndi Lauper"
]
node
[
id 190
label "Cynthia Gooding Composer Trad"
]
node
[
id 191
label "D:Dream"
]
node
[
id 192
label "Dalibor Jedlicka & Peter Saray with the Vienna Philharmonic conducted by Sir Charles Mackerras."
]
node
[
id 193
label "Dana Gillespie"
]
node
[
id 194
label "Daniel Barenboim"
]
node
[
id 195
label "Daniel Bedingfield"
]
node
[
id 196
label "Daniel Lanois"
]
node
[
id 197
label "Danielle de Niese with the Orchestra of the Age of Enlightenment conducted by William Christie"
]
node
[
id 198
label "Danny Kaye"
]
node
[