
   var Elemente;
   var FarbArray = new Array;
   Aufgaben = new Array;

//1
   Elemente = new Array;   
   FarbArray[ 0 ] = 1;
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 4, Elemente );

//2
   Elemente = new Array;  
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 1, 6, FarbArray[ 0 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 3, 3, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 4, Elemente );   

//3
   Elemente = new Array;  
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 2, 4, FarbArray[ 0 ] );
   Elemente[ 4 ] = new Element( 3, 3, FarbArray[ 0 ] );
   Elemente[ 5 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 1, Elemente );

//4
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 2, 4, FarbArray[ 0 ] );
   Elemente[ 4 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 4, 4, FarbArray[ 1 ] );
   Elemente[ 6 ] = new Element( 5, 4, FarbArray[ 0 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 1, Elemente );

//5
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   Elemente[ Elemente.length ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ Elemente.length ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ Elemente.length ] = new Element( 1, 4, FarbArray[ 2 ] );
   Elemente[ Elemente.length ] = new Element( 2, 2, FarbArray[ 0 ] );
   Elemente[ Elemente.length ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ Elemente.length ] = new Element( 2, 4, FarbArray[ 2 ] );
   Elemente[ Elemente.length ] = new Element( 3, 2, FarbArray[ 1 ] );
   Elemente[ Elemente.length ] = new Element( 3, 3, FarbArray[ 2 ] );
   Elemente[ Elemente.length ] = new Element( 3, 4, FarbArray[ 0 ] );
   Elemente[ Elemente.length ] = new Element( 4, 3, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 2, Elemente );

//6
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 1, 5, FarbArray[ 1 ] );
   Elemente[ 4 ] = new Element( 2, 2, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 2, 3, FarbArray[ 0 ] );
   Elemente[ 7 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 8 ] = new Element( 2, 5, FarbArray[ 0 ] );
   Elemente[ 9 ] = new Element( 3, 2, FarbArray[ 0 ] );
   Elemente[ 10 ] = new Element( 3, 3, FarbArray[ 1 ] );
   Elemente[ 11 ] = new Element( 3, 4, FarbArray[ 0 ] );
   Elemente[ 12 ] = new Element( 3, 5, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 2, Elemente );

//7
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 2, 2, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 7 ] = new Element( 3, 2, FarbArray[ 1 ] );
   Elemente[ 8 ] = new Element( 3, 3, FarbArray[ 0 ] );
   Elemente[ 9 ] = new Element( 3, 4, FarbArray[ 0 ] );
   Elemente[ 10 ] = new Element( 4, 3, FarbArray[ 0 ] );
   Elemente[ 11 ] = new Element( 5, 3, FarbArray[ 2 ] );
   Elemente[ 12 ] = new Element( 6, 3, FarbArray[ 0 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 2, Elemente );

//8
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3;
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 4, FarbArray[ 0 ] );
   Elemente[ 5 ] = new Element( 3, 3, FarbArray[ 0 ] );
   Elemente[ 7 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Elemente[ 8 ] = new Element( 4, 3, FarbArray[ 2 ] );
   Elemente[ 9 ] = new Element( 4, 4, FarbArray[ 2 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 2, Elemente );

//9
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 4, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 5, FarbArray[ 1 ] );
   Elemente[ 7 ] = new Element( 3, 3, FarbArray[ 2 ] );
   Elemente[ 8 ] = new Element( 4, 3, FarbArray[ 0 ] );
   Elemente[ 9 ] = new Element( 5, 3, FarbArray[ 0 ] );
   Elemente[ 10 ] = new Element( 6, 3, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//10
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3;
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 1, 6, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 0 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 2 ] );
   Elemente[ 7 ] = new Element( 2, 5, FarbArray[ 2 ] );
   Elemente[ 8 ] = new Element( 3, 3, FarbArray[ 1 ] );
   Elemente[ 9 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 2, Elemente );

//11
   Elemente = new Array;
   FarbArray[ 0 ] = "rot";  
   FarbArray[ 1 ] = "gruen";  
   FarbArray[ 2 ] = "blau"; 
   Elemente[ 0 ] = new Element( 1, 1, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 2 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 1, 4, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 7 ] = new Element( 3, 3, FarbArray[ 0 ] );
   Elemente[ 8 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Elemente[ 9 ] = new Element( 4, 3, FarbArray[ 1 ] );
   Elemente[ 10 ] = new Element( 4, 4, FarbArray[ 2 ] );
   Elemente[ 11 ] = new Element( 5, 3, FarbArray[ 0 ] );
   Elemente[ 12 ] = new Element( 5, 4, FarbArray[ 2 ] );
   Elemente[ 13 ] = new Element( 6, 4, FarbArray[ 0 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//12
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3;
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Elemente[ 3 ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ 4 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 2, 5, FarbArray[ 2 ] );
   Elemente[ 7 ] = new Element( 3, 3, FarbArray[ 2 ] );
   Elemente[ 8 ] = new Element( 3, 4, FarbArray[ 0 ] );
   Elemente[ 9 ] = new Element( 4, 3, FarbArray[ 2 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//13
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4; 
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 3, 3, FarbArray[ 0 ] );
   Elemente[ 7 ] = new Element( 3, 4, FarbArray[ 0 ] );
   Elemente[ 8 ] = new Element( 4, 3, FarbArray[ 3 ] );
   Elemente[ 9 ] = new Element( 4, 4, FarbArray[ 2 ] );
   Elemente[ 10 ] = new Element( 5, 3, FarbArray[ 2 ] );
   Elemente[ 11 ] = new Element( 5, 4, FarbArray[ 3 ] );
   Elemente[ 12 ] = new Element( 6, 3, FarbArray[ 3 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//14
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4; 
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Elemente[ 4 ] = new Element( 2, 2, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 7 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 8 ] = new Element( 2, 5, FarbArray[ 1 ] );
   Elemente[ 9 ] = new Element( 3, 3, FarbArray[ 3 ] );
   Elemente[ 10 ] = new Element( 3, 4, FarbArray[ 2 ] );
   Elemente[ 11 ] = new Element( 3, 5, FarbArray[ 0 ] );
   Elemente[ 12 ] = new Element( 4, 4, FarbArray[ 3 ] );
   Elemente[ 14 ] = new Element( 4, 5, FarbArray[ 1 ] );
   Elemente[ 15 ] = new Element( 5, 5, FarbArray[ 3 ] );
   Elemente[ 16 ] = new Element( 6, 5, FarbArray[ 1 ] );
   Elemente[ 17 ] = new Element( 7, 5, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//15
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 1, 5, FarbArray[ 0 ] );
   Elemente[ 4 ] = new Element( 1, 6, FarbArray[ 0 ] );
   Elemente[ 5 ] = new Element( 2, 2, FarbArray[ 2 ] );
   Elemente[ 7 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 8 ] = new Element( 2, 4, FarbArray[ 1 ] );
   Elemente[ 9 ] = new Element( 3, 4, FarbArray[ 2 ] );
   Elemente[ 10 ] = new Element( 4, 4, FarbArray[ 1 ] );
   Elemente[ 11 ] = new Element( 5, 4, FarbArray[ 1 ] );
   Elemente[ 12 ] = new Element( 6, 4, FarbArray[ 0 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 2, Elemente );

//16
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4; 
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 1, 5, FarbArray[ 1 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 0 ] );
   Elemente[ 7 ] = new Element( 2, 5, FarbArray[ 2 ] );
   Elemente[ 8 ] = new Element( 3, 3, FarbArray[ 2 ] );
   Elemente[ 9 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Elemente[ 10 ] = new Element( 3, 5, FarbArray[ 3 ] );
   Elemente[ 11 ] = new Element( 4, 4, FarbArray[ 3 ] );
   Elemente[ 12 ] = new Element( 4, 5, FarbArray[ 3 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//17
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4; 
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 2 ] );
   Elemente[ 3 ] = new Element( 1, 6, FarbArray[ 2 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 3 ] );
   Elemente[ 7 ] = new Element( 3, 3, FarbArray[ 3 ] );
   Elemente[ 8 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Elemente[ 9 ] = new Element( 4, 3, FarbArray[ 3 ] );
   Elemente[ 10 ] = new Element( 4, 4, FarbArray[ 2 ] );
   Elemente[ 11 ] = new Element( 5, 3, FarbArray[ 2 ] );
   Elemente[ 12 ] = new Element( 5, 4, FarbArray[ 0 ] );
   Elemente[ 14 ] = new Element( 6, 3, FarbArray[ 0 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//18
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4; 
   Elemente[ 0 ] = new Element( 1, 3, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 5, FarbArray[ 1 ] );
   Elemente[ 3 ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ 4 ] = new Element( 2, 4, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 5, FarbArray[ 2 ] );
   Elemente[ 7 ] = new Element( 3, 3, FarbArray[ 0 ] );
   Elemente[ 8 ] = new Element( 3, 4, FarbArray[ 1 ] );
   Elemente[ 9 ] = new Element( 3, 5, FarbArray[ 1 ] );
   Elemente[ 10 ] = new Element( 4, 3, FarbArray[ 3 ] );
   Elemente[ 11 ] = new Element( 4, 4, FarbArray[ 0 ] );
   Elemente[ 12 ] = new Element( 4, 5, FarbArray[ 1 ] );
   Elemente[ 14 ] = new Element( 5, 3, FarbArray[ 3 ] );
   Elemente[ 15 ] = new Element( 5, 4, FarbArray[ 3 ] );
   Elemente[ 16 ] = new Element( 5, 5, FarbArray[ 2 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//19
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4;  
   FarbArray[ 4 ] = 5; 
   Elemente[ 0 ] = new Element( 1, 1, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 2, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 3, FarbArray[ 2 ] );
   Elemente[ 3 ] = new Element( 1, 4, FarbArray[ 1 ] );
   Elemente[ 4 ] = new Element( 1, 5, FarbArray[ 0 ] );

   Elemente[ 5 ] = new Element( 2, 1, FarbArray[ 3 ] );
   Elemente[ 6 ] = new Element( 2, 3, FarbArray[ 4 ] );
   Elemente[ 7 ] = new Element( 2, 5, FarbArray[ 4 ] );

   Elemente[ 8 ] = new Element( 3, 1, FarbArray[ 0 ] );
   Elemente[ 9 ] = new Element( 3, 3, FarbArray[ 4 ] );
   Elemente[ 10 ] = new Element( 3, 5, FarbArray[ 0 ] );

   Elemente[ 11 ] = new Element( 4, 1, FarbArray[ 3 ] );
   Elemente[ 12 ] = new Element( 4, 3, FarbArray[ 2 ] );
   Elemente[ 13 ] = new Element( 4, 5, FarbArray[ 3 ] );

   Elemente[ 14 ] = new Element( 5, 1, FarbArray[ 0 ] );
   Elemente[ 15 ] = new Element( 5, 3, FarbArray[ 2 ] );
   Elemente[ 16 ] = new Element( 5, 5, FarbArray[ 0 ] );

   Elemente[ 17 ] = new Element( 6, 1, FarbArray[ 1 ] );
   Elemente[ 18 ] = new Element( 6, 3, FarbArray[ 1 ] );
   Elemente[ 19 ] = new Element( 6, 5, FarbArray[ 1 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//20
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4;
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 2 ] );

   Elemente[ 3 ] = new Element( 2, 2, FarbArray[ 3 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 1 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 0 ] );

   Elemente[ 6 ] = new Element( 3, 3, FarbArray[ 2 ] );
   Elemente[ 7 ] = new Element( 3, 4, FarbArray[ 3 ] );

   Elemente[ 8 ] = new Element( 4, 3, FarbArray[ 2 ] );
   Elemente[ 9 ] = new Element( 4, 4, FarbArray[ 1 ] );

   Elemente[ 10 ] = new Element( 5, 3, FarbArray[ 0 ] );
   Elemente[ 11 ] = new Element( 5, 4, FarbArray[ 0 ] );

   Elemente[ 12 ] = new Element( 6, 4, FarbArray[ 3 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );

//21
   Elemente = new Array;
   FarbArray[ 0 ] = 1;  
   FarbArray[ 1 ] = 2;  
   FarbArray[ 2 ] = 3; 
   FarbArray[ 3 ] = 4;
   Elemente[ 0 ] = new Element( 1, 2, FarbArray[ 0 ] );
   Elemente[ 1 ] = new Element( 1, 3, FarbArray[ 1 ] );
   Elemente[ 2 ] = new Element( 1, 4, FarbArray[ 2 ] );

   Elemente[ 3 ] = new Element( 2, 2, FarbArray[ 1 ] );
   Elemente[ 4 ] = new Element( 2, 3, FarbArray[ 2 ] );
   Elemente[ 5 ] = new Element( 2, 4, FarbArray[ 3 ] );

   Elemente[ 6 ] = new Element( 3, 2, FarbArray[ 0 ] );
   Elemente[ 7 ] = new Element( 3, 3, FarbArray[ 0 ] );

   Elemente[ 8 ] = new Element( 4, 2, FarbArray[ 3 ] );
   Elemente[ 9 ] = new Element( 4, 3, FarbArray[ 1 ] );

   Elemente[ 10 ] = new Element( 5, 3, FarbArray[ 3 ] );

   Elemente[ 11 ] = new Element( 6, 3, FarbArray[ 2 ] );
   Aufgaben[ Aufgaben.length ] = new Aufgabe( 6, 3, Elemente );


   Elemente = "";
   FarbArray = "";