-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentity-search.xml
4600 lines (4600 loc) · 319 KB
/
entity-search.xml
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
<?xml-stylesheet type="text/xsl" href="entity-search.xsl"?>
<entitiesSearch-results source-context="http://localhost:8983/solr/SE-UE-Repertoire/select/?q=ENTITY_TYPE:ARTIST&rows=200" reference-context="http://localhost:8983/solr/SE-Discogs-Artists/select?q=names_all:">
<entity entity-name="aventura">
<discogs-search uninformative-matches="2" informative-matches="1">
<doc>
<str name="name">Aventura</str>
<str name="data_quality">Complete and Correct</str>
<arr name="urls">
<str>http://www.aventuraworldwide.com</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="lynyrd skynyrd">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Lynyrd Skynyrd</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.lynyrdskynyrd.com/</str>
<str>http://www.myspace.com/lynyrdskynyrd</str>
<str>http://www.lynyrdskynyrdhistory.com/index.html</str>
</arr>
<str name="profile">Inducted into Rock And Roll Hall of Fame in 2006 (Performer).</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="jim henson">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Jim Henson</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.jimhensonlegacy.org</str>
</arr>
<str name="profile">Born: 24 September 1936 in Greenville, Mississippi, USA. Died: 16 May 1990 in NYC, USA. Jim Henson was an American puppeteer, most famously known for creating the Muppets, and especially for creating,
operating and voicing [a=Kermit The Frog]. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="boston">
<discogs-search uninformative-matches="5" informative-matches="2">
<doc>
<str name="name">Boston</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.bandboston.com/</str>
<str>http://www.myspace.com/officialboston</str>
</arr>
</doc>
<doc>
<str name="name">Mark Boston</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.rockettemorton.com</str>
<str>http://en.wikipedia.org/wiki/Rockette_Morton</str>
</arr>
<str name="profile">Born: 1949, Salem, Illinois, USA. Boston is an accomplished bass-player, best known for his work with [a=Captain Beefheart], where he gained the nickname "[a=Rockette Morton]". Boston grew up learning to walk
on the one hand and to play the bass with the other. When he moved to California he met and teamed up with guitarist [a825970]. They played together in Lancaster, California, in a band called B.C. & The Cavemen. When
early recordings began on the Zappa/Beefheart project that was to become "Trout Mask Replica" the Magic Band bassist [a407003] had already departed. This role had initially been filled by [a274903], with whom the band had
associated in the early production of "Safe As Milk" and a catalyst for the inclusion of [a55080]. Marker laid down three tracks for the "Trout Mask Replica" album with Harkleroad on guitar. However, things did not work out
with Marker and he too departed. Boston - who was already known to both [a256283] and Harkleroad - stepped in and, according to drummer [a196010], managed to learn the bass parts for "Hair Pie" and "Steal Softly Thru Snow" in
one evening's rehearsal. Boston's work possibly made easier as he had worked with French in the band "Blues In A Bottle". From that point Boston was promptly nicknamed "[a256281]" by Vliet and became a mainstay of The Magic
Band for a number of years, performing on five of the band's albums. In 1969 the unlikely magazine "Playboy" nominated Boston as "Bass Player Of The Year". Boston was a visually impressive member of the band onstage, dancing
frenetically with his double-necked Danelectro Longhorn and, on more than one occasion, with an electric toaster strapped on his head to 'toast' an event. Boston left The Magic Band in 1974 after the making of
"Unconditionally Guaranteed". With financial support and mobile recording facilities provided by [a85485], Boston formed "[a=Mallard]" with Harkleroad, Zappa drummer [a256280], [a1218640] on vocals and [a324402] on keyboards.
The band made an eponymous album on the Virgin label in the UK in 1975, including tracks written by John French who was in at the demo stage. The band made a second album, "In A Different Climate" in 1976, with John Draggota
on drums and (an ex-Magic Band member and associate of John French in "Rattlesnake & Eggs") John Thomas on keyboards. After the demise of "Mallard" Boston played the gig circuit before teaming up with [a1188211] in
"Hurricane" and finally residing in Aiken, South Carolina. It's from his small "Bomark" studio in South Carolina that Boston currently [2009] runs his life. He has released a solo album "Love Space" . Boston also performs
dates in today's music collective known as "The Magic Band", along with John (Drumbo) French, Gary (Mantis) Lucas, Denny (Feelers Reebo) Whalley and ex-Beefheart collaborator Michael Traylor. This line-up first premiered in
the UK at "The Garage", Shepherd's Bush, on 28th June 2004. Footnote: Boston was also cast by [a=Frank Zappa] as the character 'Gorgonzola' in FZ's 'teenage opera' script for "Captain Beefheart Vs The Grunt People". He was to
play a part in Celestia's/[a=Grace Slick]'s entourage in outer space. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="black flag">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Black Flag</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.ipass.net/jthrush/rollflag.htm</str>
<str>http://www.suburbias.com/punk/bf/</str>
<str>http://www.trouserpress.com/entry.php?a=black_flag</str>
<str>http://www.hiljaiset.sci.fi/punknet/blackf_e.htm</str>
<str>http://www.aversion.com/bands/blackflag/</str>
</arr>
<str name="profile">Black Flag was, for all intents and purposes, America's first hardcore band. They emerged from Southern California to gain international prominence, touring enough to become a major attraction in virtually
every city where a scene existed and undoubtedly inspiring others to get in the game. Via the band's still-thriving SST label, Black Flag played an essential role in the development and popularization of American punk.
Through countless revolving-door personnel changes — which spawned numerous spin-off bands along the way — Black Flag persevered until 1986, finally dissolving after locating and exploring the zone where punk and heavy metal
intersect and overlap.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="cassie">
<discogs-search uninformative-matches="8" informative-matches="2">
<doc>
<str name="name">Cassie (4)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/cassiemareeonline</str>
</arr>
</doc>
<doc>
<str name="name">Cassie (2)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.cassieworld.com</str>
<str>http://cassie.ns4life.com</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="the temptations">
<discogs-search uninformative-matches="4" informative-matches="1">
<doc>
<str name="name">Temptations, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.thetemptations.net/</str>
</arr>
<str name="profile">Also known as The Elgins (not to be confused with the other Motown act with the same name) before being signed at Motown in 1962. The Temptations Family Tree 1961 - 2006 Otis Williams (1960 – present)
Elbridge "Al" Bryant (1960 – 1963) Melvin Franklin (1960 – 1994) Eddie Kendricks (1960 – 1971, 1982 reunion) Paul Williams (1960 – 1971) David Ruffin (1964 – 1968, 1982 reunion) Dennis Edwards (1968 –1977, 1980 – 1984, 1987 -
1989) Ricky Owens (1971) Richard Street (1971 – 1993) Damon Harris (1971 – 1975) Glenn Leonard (1975 – 1982) Louis Price (1977 – 1980) Ron Tyson (1983 – present) Ali-Ollie Woodson (1984 – 1987, 1989 -1998) Theo Peoples (1992
– 1998) Ray Davis (1994 - 1996) Harry McGilberry (1995 - 2003) Barrington "Bo" Henderson (1998 - 2003) Terry Weeks (1998 - present) G.C. Cameron (2003 – present) Joe Herndon (2003 – present) Inducted into Rock And Roll Hall
of Fame in 1989 (Performer). </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="the o'jays">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">O'Jays, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.theojays.com</str>
<str>http://www.myspace.com/themightyojays</str>
</arr>
<str name="profile">The group was originally formed as The Mascots in Canton, Ohio in 1958 by gospel duo Eddie Levert (b. June 16, 1942) and Walter Williams (b. August 25, 1942). Also featuring William Powell, Bobby Massey and
Bill Isles, The Mascots made their recording debut in 1961 with "Miracles." The group made quite an impression on Cleveland D.J. Eddie O'Jay, who played their single often and gave them career advice. In return, they paid
tribute to him by renaming themselves The O'Jays. Inducted into Rock And Roll Hall of Fame in 2005 (Performer). </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="monkees">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Monkees, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.monkees.net/</str>
</arr>
<str name="profile">American pop group. Formed on September 12, 1966. Members: David Jones (vocals, guitar), Mike Nesmith (vocals, guitar), Pete Tork (vocals, guitar), Micky Dolenz (vocals, drums) David Jones passed away
2012-02-29 due to a heart attack. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="sublime">
<discogs-search uninformative-matches="9" informative-matches="1">
<doc>
<str name="name">Sublime (2)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://sublimelbc.com/</str>
<str>http://sublimespot.com/sublime/</str>
<str>http://en.wikipedia.org/wiki/Sublime_(band)</str>
</arr>
<str name="profile">An influential California punk/ska rock band, existed between 1988 and 1996. Sublime disbanded after their singer Brad Nowell died of a heroin overdose on May 25, 1996, only two months before their
self-titled album, which is often considered a landmark ska album, was released. In 2009, the surviving members Bud Gaugh and Eric Wilson attempted to reform Sublime with Rome Ramirez as their new singer and guitarist, but
due to a lawsuit, the band was forced to change their name to [A=Sublime With Rome]. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="pretty ricky">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Pretty Ricky (2)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.prettyricky.com/</str>
<str>http://www.myspace.com/prettyricky</str>
</arr>
<str name="profile">A Miami-bred Quartet of brothers. Line-up: Pleasure, Slick'Em, Baby Blue and Spectacular. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="s.o.s. band">
<discogs-search uninformative-matches="2" informative-matches="1">
<doc>
<str name="name">S.O.S. Band, The</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.soulwalking.co.uk/S.O.S%20Band.html</str>
</arr>
<str name="profile">Bandname "Santa Monica" changed into "The S.O.S. Band" by Sigidi Bashir Abdullah, during the recording-sessions of "Take Your Time (Do It Right)" (1979).</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="great white">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Great White</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.mistabone.com</str>
</arr>
<str name="profile">Current Line-Up Jack Russell: Vocals Mark Kendall: Guitar Michael Lardie: Keyboards, Guitar Sean McNabb: Bass Audie Desbrow: Drums Former Line-Up: Krys Baratto: Bass Lorne Black: Bass Teddy Cook: Bass Dave
Filice: Bass Gary Holland: Drums Matthew Johnson: Guitar Ty Longley: Guitar Jordan Martin: Guitar Tony Montana: Bass Tyler Nelson: Guitar Derrick Pontier: Drums Scott Pounds: Bass Eric Powers: Drums Francis Ruiz: Drums </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="jacob miller">
<discogs-search uninformative-matches="1" informative-matches="2">
<doc>
<str name="name">Yellowman</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.kingyellowman.com/home.html</str>
<str>http://www.djyellowman.com/</str>
<str>http://en.wikipedia.org/wiki/Yellowman</str>
</arr>
<str name="profile">Born 1956 // Jamaica</str>
</doc>
<doc>
<str name="name">Jacob Miller</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://innercircle-reggae.com/pages/jacob_miller.html</str>
</arr>
<str name="profile">(May 10 1952 / May 23 1980) Cousin of [a=Maxi Priest]. He had earned the title 'Killer', since he "killed" all competetors in concerts with his mighty opera style vocals and as a Top Showman and great
personality. Protégé of [a=Augustus Pablo] with whom he made several records, he also became the vocalist for [a=Inner Circle] with whom he made the classic "Tenement Yard" Signed by [l=Island Records], [a=Inner Circle], and
Miller especially, were being groomed for stardom when it was all brought to an abrupt halt when Miller's car hit a pole on Hope Road, Kingston, on May 23 1980. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="three dog night">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Three Dog Night</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.threedognight.com/</str>
<str>http://en.wikipedia.org/wiki/Three_Dog_Night</str>
</arr>
<str name="profile">American pop band. Members included: Danny Hutton, Cory Wells, Chuck Negron, Mike Allsup, Paul Kingery, Pat Bautz, Jimmy Greenspoon, Floyd Sneed. The name of the band refers to an Australian saying, which is
used to indicate how cold it is at night. (When it's so cold, you need three dogs to keep you warm.)</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="santana">
<discogs-search uninformative-matches="9" informative-matches="1">
<doc>
<str name="name">Richie Santana</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.djrichiesantana.com/</str>
<str>http://www.myspace.com/richiesantana</str>
</arr>
<str name="profile">House/Progressive-House DJ & producer from Staten Island, New York, USA.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="l.t.d.">
<discogs-search uninformative-matches="5" informative-matches="1">
<doc>
<str name="name">L.T.D.</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.4realltd.com/</str>
</arr>
<str name="profile">Backing musicians for Sam and Dave formed in Greensville, moved to New York in 1968. Hot band on the rotating P.A. circuit signed to A&M in 1973. Produced with Larry and Fonce Mizell in 1976. Osborne's
powerful tenor gave the group an edge over other soul groups and with "Love To The World" they peaked at number seven on the black album charts. They are, as well as for their fine disco pieces, also appreciated for strong
soul ballads such as "Holding On (When Love Is Gone)". Jeffrey Osborne left the band around 1980 for a solo career and was replaced by talented soulsters Leslie Wilson and Andre Ray. After 18 year absence from touring and
recording Jonny McGhee reformed the group with new lead vocalist Greg Henneghan in 1999. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="freddy martin">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Freddy Martin</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Freddy_Martin</str>
</arr>
<str name="profile">American bandleader and tenor saxophonist. b. December 9, 1906 (Cleveland, OH, USA) d. September 30, 1983 (Newport Beach, CA, USA) </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="the turtles">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Turtles, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.theturtles.com</str>
<str>http://www.epmusic.biz/artist/turtles</str>
</arr>
<str name="profile">American psychedelic folk/rock band with pop sensibilities. Formed in 1965, they broke up in 1971. [url=http://www.discogs.com/artist/Jim+Tucker+(2)]Jim Tucker[/url] left the band after the second single.
[url=http://www.discogs.com/artist/Howard+Kaylan]Kaylan[/url] and [url=http://www.discogs.com/artist/Mark+Volman]Volman[/url] later became members of [url=http://www.discogs.com/artist/Frank+Zappa]Frank Zappa[/url]'s The
Mothers Of Invention. During the 70's they were also known as the producers [url=http://www.discogs.com/artist/Flo+%26+Eddie]Flo & Eddie[/url]. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="billy stewart">
<discogs-search uninformative-matches="2" informative-matches="1">
<doc>
<str name="name">Billy Stewart</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.vh1.com/artists/az/stewart_billy/bio.jhtml</str>
</arr>
<str name="profile">Born: 24/03/1937, Washington, DC. Died: 17/01/1970, Salem, NC, Car crash. Soul vocalist, pianist, drummer & songwriter. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="james gang">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">James Gang</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.jamesgangridesagain.com/</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="calle 13">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Calle 13</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.lacalle13.com</str>
<str>http://www.myspace.com/calle13officialsite</str>
</arr>
<str name="profile">Puerto Rican Reggaeton duo consisting of brothers René Pérez Joglar ("Residente") and Eduardo José Cabra Martínez ("Visitante"). On their first album "Hormiga Brava" their sister Ileana Cabra Joglar ("PG-13")
supported them with female vocals. Since 2006 Calle 13 has received several Latin Grammy awards.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="frankie lymon & the teenagers">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Frankie Lymon & The Teenagers</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/The_Teenagers</str>
</arr>
<str name="profile">Inducted into Rock And Roll Hall of Fame in 1993 (Performer).</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="paul weston">
<discogs-search uninformative-matches="8" informative-matches="1">
<doc>
<str name="name">Paul Weston (2)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Paul_Weston</str>
</arr>
<str name="profile">Paul Weston was born, with the given name of Paul Wetstein, on March 12, 1912 in Springfield, Massachusetts. He died September 20, 1996 in Santa Monica, CA. He was a US pianist, arranger, conductor, composer
and the original music director for Capitol Records. Weston was the chief arranger for Tommy Dorsey's Orchestra from 1936 to 1940. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="first choice">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">First Choice</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.soulwalking.co.uk/First%20Choice.html</str>
</arr>
<str name="profile">The '70s Philly disco vocal group First Choice's first big breakthrough was the infectious "Armed and Extremely Dangerous". [a=Rochelle Fleming], [a=Joyce Jones], and Chester, PA, native [a=Annette Guest]
were originally known as the [a=Debonettes] and performed around Philadelphia. Lead singer Rochelle Fleming and Annette Guest were part of a vocal quintet when both were students at Overbrook High School in Philadelphia.
Rehearsing in Guest's mother's house, the group began making the rounds of talent shows and public events. After contacting WDAS Radio DJ Georgie Woods, introduced them to Philly soul guitarist, songwriter, producer and
[url=http://www.discogs.com/artist/Delfonics%2C+The]The Delfonics[/url]' manager [a=Norman Harris]. By the time the group went into the recording studio, the lineup was Fleming, Guest, Wardell Piper, and Mulaney Star. The
group's first release was a song written by Harris and [a=Allan Felder], the pumping "This Is the House Where Love Died," which was leased to New York's Sceptor Records and issued on their Wand imprint in 1972, but failed to
chart nationally. Soon after Mulaney Star left the group. In 1973, the group signed to the Philly Groove label which was distributed by Bell Records. Their next single "Armed and Extremely Dangerous," was their first big hit,
going to number 11 R&B on Billboard's charts in early 1973. The track was also a Top 20 U.K. hit. Around this time, [a=Wardell Piper] exited the group and was replaced by Joyce Jones. Armed and Extremely Dangerous was
released in fall 1973. The single "Smarty Pants," a cautionary tale about unwanted pregnancy, reached number 25 on the R&B charts. The album included a cover of the [a=Al Green] classic "Love and Happiness." The trio's
next single, the pumping "Newsy Neighbors," peaked at number 35 R&B in early 1974. Around 1977, Joyce Jones left the group and was replaced by [a=Ursula Herring]. Delusions, released in fall 1977 is generally regarded as
the trio's best LP, it featured lyrically rich dance tunes as well as luscious ballads and gave Philadelphia native Fleming her best showcase, displaying one of the most distinctive lead vocalists in soul/dance/pop music.
Fleming's vocals are also one of the most sampled, heard on countless dance records from around the world. Their next Gold Mind LP, Hold Your Horses, was released in March 1979, with the title track becoming a disco classic.
That same year, Debbie Martin replaced Ursula Herring. Around 1983 the trio split. In the 80s, the disco influenced house music genre emerged new life was breathed into disco-soul groups like First Choice. "Love Thang" and
"Let No Man Put Asunder" began to surface in club DJs' dance-floor mixes, and were met with loud enthusiasm from the crowd. Possibly bolstered by countless bootlegs, Salsoul issued a 12'' single remix of "Let No Man Put
Asunder" by DJ [a=Frankie Knuckles]. He helped popularize the record by including it in his turntable mixes during his stints at Chicago night club The Warehouse and on his lunchtime "hot mixes" on local radio station
WBMX-FM. Delusions was reissued on CD by U.K. label Charly in December 1994. In 1987, Fleming reformed a version of First Choice with her cousin Laconya Fleming and Lawrence Cottel, who recorded a single for Prelude Records,
"Love Itch." In the '90s, Rochelle Fleming continued to record in the U.S. and Europe. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="berlin">
<discogs-search uninformative-matches="8" informative-matches="2">
<doc>
<str name="name">Berlin</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.berlinpage.com</str>
<str>http://www.myspace.com/berlinmusic</str>
</arr>
<str name="profile">New Wave act from Orange County, California. Founded in 1979 by John Crawford, Jo Julian and Terri Nunn. After various personnel changes the band reached a mainstream audience with 1982's "Sex (I'm A...)" and
"The Metro", from the "Pleasure Victim" EP. By 1984 the band had secured themselves as regulars on radio & television with hit singles "No More Words" and "Dancing In Berlin", taken from the gold-selling "Love Life" LP.
However, Berlin are most remembered for the 1986 Giorgio Moroder produced hit "Take My Breath Away", from the movie Top Gun. The band split up in 1987, with John Crawford & Rob Brill forming the alternative rock act "Big
F" and Terri Nunn making a solo album in 1991. She has been recording live and making albums with a new Berlin lineup since 2000. </str>
</doc>
<doc>
<str name="name">Berlin (3)</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.myspace.com/tberlin</str>
<str>http://www.facebook.com/pages/Berl%C3%ADn/90317544836?v=info</str>
</arr>
<str name="profile">Spanish techno-pop band from Bilbso, founded in the first 90's by Peter Lanzagorta, Jesús "Chus" del Gallego and Óscar Cuesta.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="blood, sweat & tears">
<discogs-search uninformative-matches="2" informative-matches="1">
<doc>
<str name="name">Blood, Sweat And Tears</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.bloodsweatandtears.com/</str>
<str>http://www.myspace.com/bloodsweatandtears1968</str>
<str>http://en.wikipedia.org/wiki/Blood,_Sweat_%26_Tears</str>
</arr>
<str name="profile">American Jazz-Rock group, formed in 1967 in New York City. The original founding members were: [b]Randy Brecker[/b] - trumpet, flugelhorn (1967-1968) [b]Bobby Colomby[/b] - drums (1967-1977) [b]Jim
Fielder[/b] - bass (1967-1974) [b]Richard Halligan[/b] - keyboards, trombone, flute (1967-1972) [b]Steve Katz[/b] - guitar, harmonica, lute, mandolin, vocals (1967-1973, 2008-present) [b]Al Kooper[/b] - keyboards, vocals
(1967-1968) [b]Fred Lipsius[/b] - alto sax, piano (1967-1972) [b]Jerry Weiss[/b] - trumpet, flugelhorn (1967-1968) </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="agent orange">
<discogs-search uninformative-matches="9" informative-matches="1">
<doc>
<str name="name">Agent Orange (7)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.agentorange.net/</str>
<str>http://www.myspace.com/agentorange</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="shalamar">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Shalamar</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.shalamar.org/</str>
<str>http://www.myspace.com/shalmar21</str>
</arr>
<str name="profile">Formed 1976 in New York, New York, by Soul Train booking agent Dick Griffey and British producer Simon Soussan. The first Shalamar release, Uptown Festival, was recorded by faceless session singers. Griffey
and Soussan decided to form a group proper when that single was a success, and plucked members Jody Watley (b. 30th January 1959, Chicago, Illinois, U.S.A.), Jeffrey Daniel (b. 24th August 1957), and Gerald Brown, from the
Soul Train set where they were primarily dancers. Gerald Brown was replaced the following year by Howard Hewett (b. 1st October 1955 in Akron, Ohio, U.S.A.) thus completing the group's best known incarnation. In 1983, Jody
Watley and Jeffrey Daniel left the group for solo careers and were replaced by Delisa Davis and Micki Free. Howard Hewitt left the group in 1986 to embark on his own solo career, as well as production for acts such as his
then wife Nia Peeples, and was replaced by Sidney Justin. The band broke up in 1991, though Sidney Justin continued to tour with a new incarnation of Shalamar. In 2005, Hewett and Daniel reformed Shalamar with new member
Carolyn Griffey, who is the daughter of Dick Griffey and singer Carrie Lucas, and a former member of R&B duo Absolute, and they performed on the British talent show "Hit Me Baby One More Time". They did not win, but
continued to tour for the next few years. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="mfsb">
<discogs-search uninformative-matches="4" informative-matches="2">
<doc>
<str name="name">Frédéric Messent</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://facebook.com/mfsb.indamixworldwide</str>
</arr>
<str name="profile">Born in Paris, France</str>
</doc>
<doc>
<str name="name">MFSB</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/mfsb2006 </str>
<str>http://www.soulwalking.co.uk/MFSB.html</str>
</arr>
<str name="profile">American studio band formed by producers Kenny Gamble and Leon Huff of the 'Philadelphia International Records' label. MFSB is an abbreviation for 'Mother Father Sister Brother'.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="jerry orbach">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Jerry Orbach</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Jerry_Orbach</str>
<str>http://www.imdb.com/name/nm0001583/</str>
<str>http://www.pbs.org/wnet/broadway/stars/orbach_j.html</str>
<str>http://www.answers.com/topic/jerry-orbach</str>
</arr>
<str name="profile">Born: October 20, 1935 Died: December 28, 2004 of prostate cancer </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="del vikings">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Dell-Vikings, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/The_Del-Vikings</str>
</arr>
<str name="profile">The Dell Vikings formed in 1955: they contained five young American Air Force men - Clarence Quick, Corinthian "Krips" Johnson, Chuck Jackson, Donald Backus and David Lerchey. In 1956, they won a song contest
run by the Air Force and while stationed in Pittsburgh, won themselves a recording contract with Fee-Bee records, who released their records to Dot. These included their big hits "Come Go With Me" which became a million
seller in 1957, and "Whispering Bells". </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="dee clark">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Dee Clark</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Dee_Clark</str>
</arr>
<str name="profile">He was born (1938) Delectus Clark in Blytheville, Arkansas, and moved to Chicago in 1941. His mother, Delecta, was a gospel singer and encouraged her son to pursue his love of music. Clark made his first
recording in 1952 as a member of the Hambone Kids, who scored an R&B hit with the song "Hambone." In 1953, he joined an R&B group called the Goldentones, who later became the Kool Gents and were discovered by Chicago
radio DJ Herb Kent upon winning a talent competition. Kent got the Kool Gents signed to Vee-Jay record label, subsidiary Falcon/Abner. The group changed its name once again, to "The Delegates," and recorded for Falcon/Abner
in 1956. Clark embarked on a solo career in 1957 and over the next four years landed several moderate hits, two of which ("Just Keep It Up" and "Hey Little Girl") reached the top 20 on the Billboard Hot 100). His biggest
single, "Raindrops," a power ballad augmented by heavy rain and thunder sound effects and Clark's swooping falsetto, hit in the spring of 1961 and became his biggest hit, soaring to number two on the pop chart (behind only
Gary U.S. Bonds' "Quarter to Three") and number three on the R&B charts. The narrator of the song tries to convince himself that the tears he has cried since his love left him are raindrops, since "a man ain't supposed to
cry." "Raindrops" sold over two million copies and remains a staple on oldies radio station playlists to this day, and has also been covered by several other artists in the years since, including David Cassidy, Tony Orlando
and Dawn, and most notably Narvel Felts, who took the song to number 30 on the country chart in 1974. Clark himself recorded an updated version of "Raindrops" in 1973. However, Clark's biggest hit was also his last. The
follow-up to "Raindrops," "Don't Walk Away From Me," was a flop, and he made the pop charts in America only twice more, with "I'm Going Back to School" (1962) and "Crossfire Time" (1963). By the time "Crossfire Time" came
out, Clark had moved from Vee-Jay to the Constellation label. Though he continued to record for Constellation through 1966, none of his records charted. Clark had a brief revival in 1975 when his song "Ride a Wild Horse"
became a surprise top 30 hit in the UK Singles Chart, becoming his first chart hit in the UK since "Just Keep It Up." Afterward, Clark performed mostly on the oldies circuit. By the late 1980s, he was in dire straits
financially, living in a welfare hotel in Toccoa, Georgia. Despite suffering a stroke in 1987 that left him partially paralyzed and with a mild speech impediment, he continued to perform until his death on 7 December 1990, in
Smyrna, Georgia, from a heart attack at the age of 52. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="molly hatchet">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Molly Hatchet</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.mollyhatchet.com/</str>
</arr>
<str name="profile">Molly Hatchet is: Bobby Ingram: Lead Guitars, Slide, Acoustic Phil McCormack: Lead Vocals, Harmonica Dave Hlubek: Lead Guitars, Background Vocals John Galvin: Keyboards Richie Del Favero: Keyboards Tim
Lindsey: Bass Shawn Beamer: Drums & Percussion </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="the clovers">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Clovers, The</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://home.att.net/~uncamarvy/Clovers/clovers1.html</str>
</arr>
<str name="profile">U.S. R & B vocal ensemble formed in Washington, D.C., in 1946 with constantly changing line-up. There were several incarnations of this group by one or the other of the starting formation. Founding
members were: John 'Buddy' Bailey (lead) Matthew McQuater (tenor) (1946 - 1961) Harold "Hal" Lucas (baritone) Harold Winley (bass) Bill Harris (guitar) (1951 - 1958) Additional members: John Phillip (1952 - 1953) Charlie
White (1953 - 1954) Billy Mitchell (1954 - 1957, rejoins 1958) James "Toy" Walton Robert Russell Roosevelt "Tippie" Hubbard Nathaniel Bouknight Peggy Winley Mills Ann Winley Bobby Adams Johnny Taylor Ray Loper John Bowie
Steve Charles (1980 - 1990) Johnny Mason Andrew Lawyer Chuck Battle </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="carla thomas">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Carla Thomas</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Carla_Thomas</str>
</arr>
<str name="profile">Singer, born 21 December 1942 in Memphis, Tennessee. Nicknamed "The Queen Of Memphis Soul", she was a recording artist for the legendary [l=Stax] label in the 1960s and early 1970s. She's probably best known
for the hits [i]Gee Whiz[/i] (1961), [i]B-A-B-Y[/i] (1966) and [i]Tramp[/i], her 1967 duet with [a=Otis Redding]. Carla Thomas is the daughter of [a=Rufus Thomas] and the sister of [a=Vaneese Thomas] and [a=Marvell Thomas].
</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="the pharcyde">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Pharcyde, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.thepharcyde.com/</str>
<str>http://www.myspace.com/thepharcyde</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="levert">
<discogs-search uninformative-matches="2" informative-matches="1">
<doc>
<str name="name">Gerald Levert</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Gerald_Levert</str>
<str>http://www.atlanticrecords.com/geraldlevert</str>
</arr>
<str name="profile">Soul singer Born on 13.07.1966 in Cleveland, Ohio, U.S.A. Died on 10.11.2006 from heart attack. Son of [a=O'Jays, The]' [a=Eddie Levert]. Apart the hits he had with his group [a=Levert], he was an accompished
solo recording artist with such hits as "I'd Give Anything (To Fall In Love)" and "Mr. Too Damn Good To You" </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="ambrosia">
<discogs-search uninformative-matches="7" informative-matches="2">
<doc>
<str name="name">Ambrosia (2)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.ambrosiaweb.com</str>
<str>http://www.myspace.com/thisisthespacewelcomehome</str>
</arr>
<str name="profile">Ambrosia is an American rock band, founded in Los Angeles, California in 1971 by schoolmates David Pack (guitar) and Joe Puerta (bass). Later joined by Christopher North (keyboards) and Burleigh Drummond
(drums). The band temporarily split in 1982 due to the poor receival of their fifth album "Road Island", but they got back together in 1989, seven years afterwards. [u]Current line-up[/u]: Joe Puerta - vocals, bass, guitar
Christopher North - keyboards, synthesizers, backing vocals Burleigh Drummond - drums, percussion, vocals, bassoon David Cutler-Lewis - keyboards Doug Jackson - lead guitar, vocals Shem Schroeck - bass, guitar, saxophone,
percussion, vocals [u]Former members[/u]: David Pack - vocals, guitars, keyboards, synthesizers Royce Jones - backing vocals, percussion Tollak Ollestad - keyboards, harmonica, vocals Ken Stacey - lead vocals Robert Berry -
guitar, lead vocals Ricky Cosentino - percussion, vocals Jamie Bernstein - vocals </str>
</doc>
<doc>
<str name="name">Ambrosia</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/therealambrosia</str>
</arr>
<str name="profile">American house music vocalist.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="eddie kendricks">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Eddie Kendricks</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Eddie_Kendricks</str>
<str>http://www.myspace.com/formertemptations</str>
</arr>
<str name="profile">Born : 17th December 1939, Union Springs, Alabama, U.S.A. Died : 5th October 1992, Alabama, U.S.A. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="myron cohen">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Myron Cohen</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Myron_Cohen</str>
</arr>
<str name="profile">Born: July 1, 1902 Died: March 10, 1986 </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="n.w.a.">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">N.W.A.</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.nwalegacy.com/</str>
<str>http://www.nwaworld.com/ (unofficial)</str>
<str>http://en.wikipedia.org/wiki/N.W.A.</str>
</arr>
<str name="profile">US American group, known especially for Gangsta Rap. N.W.A. stands for »Niggaz Wit Attitudes«. They were active from 1986 to 1991 and again in 1999-2000. Ruthless released "Panic Zone" in 1987 with Macola
Records, which was later included on the compilation N.W.A. and the Posse. N.W.A was still in its developing stages, and only credited on four of the eleven tracks, notably the uncharacteristic electro hop record "Panic
Zone," "8-Ball," and "Dopeman," which marked the first collaboration of Arabian Prince, DJ Yella, Dr. Dre and Ice Cube. Hispanic rapper Krazy-Dee co-wrote "Panic Zone," which was originally called "Hispanic Zone," but the
title was later changed when Dr. Dre advised Krazy-Dee that the word "hispanic" would hinder sales. Also included was Eazy's solo track "Boyz-n-the Hood." In 1988, rapper MC Ren joined N.W.A. and later that year, the group
released their debut album Straight Outta Compton. It sold poorly until early 1989, when MTV and radio began playing the hits "Straight Outta Compton", "Gangsta Gangsta" and "Express Yourself", which resulted in the album
being sold in over three million copies. The album itself reached number 37 in the Billboard Top 200, while it reached number 9 on Billboard's Top Soul LPs. Ice Cube left in December 1989 over royalty disputes; having written
almost half of the lyrics on Straight Outta Compton himself, he felt he was not getting a fair share of the money and profits. He wasted little time putting together his solo debut, 1990's AmeriKKKa's Most Wanted, but he
avoided mentioning his former label mates. Instead of breaking up, N.W.A. decided to continue without Ice Cube, releasing the EP 100 Miles and Runnin', which sold poorly but went platinum. Their 1991 follow-up Efil4zaggin
(also referred to as Niggaz4Life) was not as successful as Straight Outta Compton, though it did go platinum and reach number one on the Billboard 200. Shortly after the release of Efil4zaggin, N.W.A. called it quits. All
members had continued making music since then, with Dr. Dre going solo and Eazy-E continuing to run Ruthless Records and make more music until he died of AIDS in 1995. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="johnny duncan">
<discogs-search uninformative-matches="1" informative-matches="2">
<doc>
<str name="name">Johnny Duncan (2)</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Johnny_Duncan_%28bluegrass_musician%29</str>
</arr>
<str name="profile">Skiffle music star (September 7, 1932 - July 15, 2000)</str>
</doc>
<doc>
<str name="name">Johnny Duncan (3)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Johnny_Duncan_%28country_singer%29</str>
<str>http://www.johnnyduncanmusic.com/</str>
</arr>
<str name="profile">American country singer and songwriter. October 5, 1938 – August 14, 2006 </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="the ohio players">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">Ohio Players</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/ohioplayercentral</str>
<str>http://wfnk.com/ohioplayers/</str>
<str>http://en.wikipedia.org/wiki/Ohio_Players</str>
</arr>
<str name="profile">American funk group.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="sweet sensation">
<discogs-search uninformative-matches="1" informative-matches="2">
<doc>
<str name="name">Sweet Sensation (2)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/Sweet_Sensation_%28band%29</str>
</arr>
<str name="profile">British soul band. Formed in Manchester 1973 </str>
</doc>
<doc>
<str name="name">Sweet Sensation</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.freewebs.com/sweetsensationonline/</str>
<str>http://www.myspace.com/sweetsensationonline</str>
<str>http://en.wikipedia.org/wiki/Sweet_Sensation</str>
</arr>
<str name="profile">Original name: Sweet Temptation (the name was changed due to pressure from The Temptation's manager). Original line-up: Betty Dee and sisters Margie & Mari Fernandez. Mari left the group soon after their
debut album was released and was replaced by Sheila Vega. The album cover was reshot and the album rereleased with Sheila's image. The group recorded one more album together, and a remix album was also released. Margie and
Sheila then left the group and three new members (Belle, Maya & Jenae) joined briefly for a couple of live shows. The group disbanded soon after in 1992, but reformed in 2007 with Betty Dee, Sheila Vega and Jenae.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="eric bibb">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Eric Bibb</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.ericbibb.com</str>
<str>http://en.wikipedia.org/wiki/Eric_Bibb</str>
</arr>
<str name="profile">Eric Bibb (born August 16, 1951) is an American acoustic blues singer-songwriter. He is based in London and launched his career in Europe.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="classics iv">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Classics IV, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.georgiamusicstore.com/artist/P3914/</str>
</arr>
<str name="profile">Although they're considered a late-'60s phenomenon, owing to the chronology of their hits, the group can trace its roots back to R&B harmony (i.e., doo wop) music of the late '50s.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="tower of power">
<discogs-search uninformative-matches="0" informative-matches="2">
<doc>
<str name="name">Tower Of Power</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.towerofpower.com</str>
</arr>
<str name="profile">American funk/soul group. See also the [a=Tower Of Power Horn Section]. </str>
</doc>
<doc>
<str name="name">Tower Of Power Horn Section</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.towerofpower.com/discography/hornsection/</str>
</arr>
<str name="profile">The [a=Tower Of Power] horn section has gained renown as a separate entity to much critical acclaim. They have appeared on a goodly number of other artists' recordings, including one of the most highly
regarded early live albums: a performance with [a=Little Feat] in 1977, one of the three inaugural acts to perform at the newly-opened Rockpalast studios on the song, "Rocket in my Pocket". Other performers supported by the
Tower of Power horns include [a=Monkees, The], [a=Santana], [a=Elkie Brooks], [a=Cat Stevens] (on his Foreigner Suite), [a=Elton John], [a=Linda Lewis], rad. (Rose Ann Dimalanta), [a=John Lee Hooker], [a=Rufus], [a=Rod
Stewart], [a=Jefferson Starship], [a=Mickey Hart], [a=Heart], [a=Huey Lewis & the News], [a=Spyro Gyra], [a=KMFDM], [a=Lyle Lovett], [a=Poison], [a=Phish], [a=Toto], [a=Pharoahe Monch], [a=Brothers Johnson], and
[a=Aerosmith], among many other acts. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="the blackbyrds">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Blackbyrds, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/blackbyrds</str>
</arr>
<str name="profile">Had members: Allan Barnes (b.1949, Detroit, Michigan, U.S.A.) (reeds) Barney Perry (b.1953, Buffalo, New York, U.S.A.) (guitar) Kevin Toney (b.1953 Detroit, Michigan, U.S.A.) (keyboards) Joseph Hall III
(b.1954, Washington, D.C., U.S.A.) (bass) Pericles Jacobs Jr. (b.1951, Washington D.C., U.S.A.) (percussion) Keith Killgo (b.1954, Baltimore, Maryland, U.S.A.) (drums) Formed 1973 by Donald Byrd </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="dokken">
<discogs-search uninformative-matches="0" informative-matches="2">
<doc>
<str name="name">Dokken</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.dokken.net</str>
<str>http://www.myspace.com/dokken</str>
</arr>
<str name="profile">US hard rock/heavy metal band from Los Angeles, California formed in 1977. Current line-up Barry Sparks: Bass Don Dokken: Vocals Mick Brown: Drums Jon Levin: Guitar Former/Past members Jeff Pilson: Bass
Michael Delaouglou (aka Mikkey Dee): Drums Greg Leon: Guitar Greg Pecka: Drums Juan Crouchier: Bass Reb Beach: Guitar Alex De Rosso: Guitar John Norum: Guitar George Lynch: Guitar </str>
</doc>
<doc>
<str name="name">Don Dokken</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.dondokken.com/</str>
</arr>
<str name="profile">Born June 29, 1953</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="friends of distinction">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Friends Of Distinction, The</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/harryelston</str>
<str>http://www.allmusic.com/artist/the-friends-of-distinction-p4315/biography</str>
<str>http://blast-from-thepast.com/blog/?p=440</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="spirit">
<discogs-search uninformative-matches="9" informative-matches="1">
<doc>
<str name="name">Spirit (8)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.randycaliforniaandspirit.com/</str>
<str>http://www.bostream.nu/johanb/spirit/</str>
</arr>
<str name="profile">Los Angeles-based psychedelic rock band formed in 1967.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="e-40">
<discogs-search uninformative-matches="1" informative-matches="1">
<doc>
<str name="name">E-40</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.e-40.com</str>
<str>http://www.myspace.com/e40</str>
</arr>
<str name="profile">Born: November 15, 1967, Vallejo, California Rapper from Hillside, Vallejo, CA. E-40 (a.k.a. 40 Water and Charlie Hustle) is one of the most successful and well known artists from the Bay Area. He is known as
an innovator of hiphop slang and he is also the owner of [l=Sick Wid' It Records]. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="delerium">
<discogs-search uninformative-matches="8" informative-matches="2">
<doc>
<str name="name">Delerium</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.delerium.ca/</str>
<str>http://www.myspace.com/delerium</str>
<str>http://www.facebook.com/pages/Delerium/14287253499</str>
</arr>
<str name="profile">Side-project of Front Line Assembly members Bill Leeb and Rhys Fulber, formed 1986. Released material in a similar style to [a=Enigma] of [i]Sadness[/i] fame but with less Gregorian chanting. Later gained far
wider recognition after being remixed by various trance acts.</str>
</doc>
<doc>
<str name="name">Noise Unit</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.metropolis-records.com/?artists/noiseuni.html</str>
<str>http://www.mindphaser.com/</str>
<str>http://www.myspace.com/noiseu</str>
</arr>
<str name="profile">Noise Unit started out as a collaboration between Bill Leeb and Marc Verhaeghen of Klinik. Together they produced the first two albums. The third album brought the project back to life with Rhys Fulber
obviously taking over from Marc. "Decoder" was supposedly made from the leftovers of the aborted Front Line Assembly album "Toxic." The album "Drill" was a collaboration with Haujobb and Klinik.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="type o negative">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Type O Negative</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.typeonegative.net/</str>
<str>http://www.myspace.com/typeonegative</str>
</arr>
<str name="profile">Type O Negative is an American Metal band from Brooklyn/New York City, formed in 1989. Original drummer Sal Abruscato left Type O Negative in 1994, and Johnny Kelly took his place in the band. On April 14,
2010, founding member Peter Steele died of heart failure. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="virtue">
<discogs-search uninformative-matches="9" informative-matches="1">
<doc>
<str name="name">Virtue (5)</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.myspace.com/virtueofficial</str>
</arr>
<str name="profile">British NWOBHM band from Oxford formed in 1981, now disbanded.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="rufus">
<discogs-search uninformative-matches="9" informative-matches="1">
<doc>
<str name="name">Rufus</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.officialrufus.com/</str>
</arr>
<str name="profile">American funk band from Chicago, Illinois</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="meat puppets">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Meat Puppets</str>
<str name="data_quality">Correct</str>
<arr name="urls">
<str>http://www.themeatpuppets.com</str>
<str>http://www.meatpuppets.com/</str>
</arr>
<str name="profile">The Meat Puppets are an American rock band formed in January 1980, in Paradise Valley, Arizona. The group's classic lineup was [a=Curt Kirkwood] (guitar/vocals), his brother [a=Cris Kirkwood] (bass guitar),
and [a=Derrick Bostrom] (drums). One of the more notable groups on the roster of [l=SST Records] (who released most of their early albums), the Meat Puppets could be broadly classified as punk rock, but like most of their SST
peers, the Meat Puppets established their own unique style, blending punk with country and psychedelic rock, and featuring Curt's warbling vocals.</str>
</doc>
</discogs-search>
</entity>
<entity entity-name="smokey robinson & the miracles">
<discogs-search uninformative-matches="2" informative-matches="2">
<doc>
<str name="name">Miracles, The</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.theoriginalmiracles.net</str>
<str>http://www.myspace.com/themiracles2007</str>
</arr>
<str name="profile">Robert "Bobby" Rogers, Dave Finley, Tee Turner, Alphonse Franklin The Miracles were credited as, "Smokey Robinson & The Miracles" between 1965-1972. When "Smokey" left the group in 1972 and was replaced
by Billy Griffin, the name was changed back to The Miracles. Members: William "Smokey" Robinson (1955–1972) Ronald "Ronnie" White (1955–1983; 1993–1995) Warren "Pete" Moore (1955–1978) Clarence Dawson (1955) James Grice
(1955) Emerson Rogers (1956) Robert "Bobby" Rogers (1956–1983; 1993–present) Claudette Rogers (Robinson) (1956–1964) Billy Griffin (1972–1978; late 1990s) Dave Finley (1978–1983; 1993–present) Sidney Justin (1993–c.2000) Tee
Turner (1996–present) Mark Scott (2005–2008) Alphonse Franklin (2008-present) </str>
</doc>
<doc>
<str name="name">Smokey Robinson</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.myspace.com/smokeyrobinson</str>
<str>http://www.smokeyrobinson.com/</str>
</arr>
<str name="profile">b. 19th February 1940, Detroit, Michigan, U.S.A. Inducted into Rock And Roll Hall of Fame in 1987 (Performer). Inducted into Songwriters Hall of Fame 1990. </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="firefall">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Firefall</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://www.firefall.com/</str>
</arr>
</doc>
</discogs-search>
</entity>
<entity entity-name="the delfonics">
<discogs-search uninformative-matches="0" informative-matches="1">
<doc>
<str name="name">Delfonics, The</str>
<str name="data_quality">Needs Vote</str>
<arr name="urls">
<str>http://en.wikipedia.org/wiki/The_Delfonics</str>
<str>http://www.myspace.com/delfonicsworldwide</str>
<str>http://www.phillysoulclassics.com/artists/the-delfonics</str>
</arr>
<str name="profile">Philly soul vocal group. Active in the late 60's until mid 70's. Considered one of the first "silky and sweet" soul groups, pioneering a trend within the soul circles with the soft and lush male vocal
harmonies in the first half of the 70's. Most of their stuff was written by the legendary Philadelphia team [a=Stan & Bell] a.k.a. [a=Thom Bell] and [a=Stan Watson] as well as their lead vocalist [a=William Hart]. Their
biggest hits "La-La (Means I Love You)", the Grammy winning "Didn't I (Blow Your Mind This Time) and "Ready Or Not Here I Come" have been heavily sampled by numerous hip hop artists like [a=Wu-Tang Clan], [a=Notorious
B.I.G.], [a=Nas], [a=Boyz II Men], [a=Missy Elliott] and [a=DJ Jazzy Jeff & The Fresh Prince] among others. During the mid 80s the main recording lineup of the group was [a=William Hart], [a=Major Harris] and [a=Frank
Washington], although they would tour as two separate trios with additional members added. These members included: [a=Garfield Fleming], Freddie Ingleton, Johnny ("JJ") Johnson, Pat Palmer, Dr. Sallam Love, [a=Eban Brown],
Johnney Smalls. William Hart (songwriter/lead vocalist/founder) b. 17/01/1945 Washington, DC, U.S.A. (1965- ) Wilbert Hart b. 19/10/1947 Philadelphia, Pennsylvania, U.S.A. (1965- ) Randy Cain b. 02/05/1945 Philadelphia,
Pennsylvania, U.S.A. (1965-1971) Samuel Edlightoon (1965-1968) Ritchie Daniels (1965-1968) Merfhab Isvardsoon (1965-1968) Major Harris (1971- ) Frank Washington (1975-2003) </str>
</doc>
</discogs-search>
</entity>
<entity entity-name="mary martin">
<discogs-search uninformative-matches="5" informative-matches="1">