Index: /trunk/asma/Docs/Composers.txt
===================================================================
--- /trunk/asma/Docs/Composers.txt	(revision 762)
+++ /trunk/asma/Docs/Composers.txt	(revision 763)
@@ -34,5 +34,5 @@
 <?> - Strobe - Sweden
 <?> - XLent - Poland
-Armijo, Richard J. Armijo - Kulor - USA
+Armijo, Richard J. - Kulor - USA
 Badkowski, Marek - Bac - Poland
 Banas, Pawel - Zilq - Poland
@@ -50,5 +50,4 @@
 Bryla, Krzysztof - Woppie, Foster - Poland
 Brzezicki, Michal - Caruso - Poland
-CEvE-Soft (Christoph Ebner von Eschenbach) - Germany
 Chamberlain, Craig - (?)
 Checa Funcke, Marco Antonio - Peru
@@ -63,17 +62,18 @@
 Delooze, Chris - (?)
 Diaz, Esteban - IDK - Chile
-Diepenhorst Marius - Inspiration Soft - Netherlands
+Diepenhorst, Marius - Inspiration Soft - Netherlands
 Dojwa, Jacek - Poland
 Drozdowski, Marek - Marucha - Poland
 Dudek, Krzysztof - Xxl - Poland
+Duesterhoeft, Christian - Buddy - Germany
 Duesterhoeft, Stephan - Benjy - Germany
-Duesterhoeft, Christian - Buddy - Germany
 Duma, Dariusz - Dhor - Poland
 Eisenhammer, Zdenek - PG, PseudoGrafx - Czech Republic
+von Eschenbach, Christoph Ebner - CEvE-Soft - Germany
 Esquivel, Sal - Kjmann - USA
 Ezcan, Kemal - KE-SOFT - Germany
+Falton, Peter - France
+Farkas, Felker - Hungary
 Feske, Nils - 505 - Germany
-Farkas, Felker - Hungary
-Falton, Peter - France
 Galinski, Adrian - Daxey - Poland
 Garrido, Daniel - ui - Argentina
@@ -111,7 +111,7 @@
 Kidaj, Andrzej - Andy - Poland
 Kociuba, Dariusz - Sherlock - Poland
-Krix, Mario - Emkay - Germany
 Krasuski, Jaroslaw - Jaras - Poland
 Krawczyk, Adam - Poland
+Krix, Mario - Emkay - Germany
 Kucharski, Konrad - Kuchara - Poland
 Kucisz, Tomasz - VLX - Poland
@@ -176,5 +176,5 @@
 Ristau, Chuck - (?)
 Roemer, Markus - R.I.K - Germany
-Rogers Charles - Chip Champion - USA
+Rogers, Charles - Chip Champion - USA
 Rosolek, Maciej - Sound Vixen - Poland
 Roszkowski, Marek - Marcys - Poland
@@ -188,6 +188,6 @@
 Sikorski, Pawel - Sikor - Poland
 Simon, Scott & Ship, Howard - (?)
+Skrzypek, Tomasz - Bloomer - Poland
 Skwiot, Stanislaw - Stanley - Poland
-Skrzypek, Tomasz - Bloomer - Poland
 Sledz, Slawek - Slaves - Poland
 Sniegon, Daniel - Poland
Index: /trunk/tools/validate-composers.pl
===================================================================
--- /trunk/tools/validate-composers.pl	(revision 763)
+++ /trunk/tools/validate-composers.pl	(revision 763)
@@ -0,0 +1,18 @@
+open F, '../asma/Docs/Composers.txt' or die;
+1 until <F> =~ /^Unknown - /;
+<F>;
+my $n;
+my %countries;
+my ($real, $nick, $country) = '';
+while (<F>) {
+	print if $_ le $real;
+	if (($real, $nick, $country) = /^(.+?\S, .+?\S|<\?>) - (?:(.+?\S) - )?(.*\S)/) {
+		$n++;
+		$countries{$country}++;
+	}
+	else {
+		print;
+	}
+}
+print "Composers: $n\n";
+print "$_ - $countries{$_}\n" for sort keys %countries;
