diff --git a/JukeBox.ino b/JukeBox.ino deleted file mode 100644 index 537c1ff..0000000 --- a/JukeBox.ino +++ /dev/null @@ -1,295 +0,0 @@ -#include -#include -#include -#include -#include - -//DFPlayer Mini -SoftwareSerial mySoftwareSerial(2, 3); // RX, TX -uint16_t numTracksInFolder; -uint16_t track; - -struct StoredCard { - byte id[4]; - int folder; - byte mode; - byte reserved1; // Um in Zukunft noch weitere Optionen - byte reserved2; // konfigurieren zu können - byte reserved3; // reservieren wir einfach mal ein paar Integer -}; - -StoredCard myCard; -static void nextTrack(); -bool foundCard = false; - -// implement a notification class, -// its member methods will get called -// -class Mp3Notify -{ - public: - static void OnError(uint16_t errorCode) - { - // see DfMp3_Error for code meaning - Serial.println(); - Serial.print("Com Error "); - Serial.println(errorCode); - } - static void OnPlayFinished(uint16_t track) - { - Serial.print("Track beendet"); - Serial.println(track); - delay(100); - nextTrack(); - } - static void OnCardOnline(uint16_t code) - { - Serial.println(F("SD Karte online ")); - } - static void OnCardInserted(uint16_t code) - { - Serial.println(F("SD Karte bereit ")); - } - static void OnCardRemoved(uint16_t code) - { - Serial.println(F("SD Karte entfernt ")); - } -}; - -static DFMiniMp3 mp3(mySoftwareSerial); - -// Leider kann das Modul keine Queue abspielen. -static void nextTrack() { - if (foundCard == false) - // Wenn eine neue Karte angelernt wird soll das Ende eines Tracks nicht verarbeitet werden - return; - - if (myCard.mode == 1) - { - Serial.println(F("Hörspielmodus ist aktiv -> Strom sparen")); - mp3.sleep(); - } - if (myCard.mode == 2) - { - Serial.println(F("Albummodus ist aktiv -> nächster Track")); - if (track != numTracksInFolder) { - track = track + 1; - mp3.playFolderTrack(myCard.folder, track); - } else - mp3.sleep(); - } - if (myCard.mode == 3) - { - Serial.println(F("Party Modus ist aktiv -> zufälligen Track spielen")); - track = random(1, numTracksInFolder + 1); - mp3.playFolderTrack(myCard.folder, track); - } -} - -// MFRC522 -#define RST_PIN 9 // Configurable, see typical pin layout above -#define SS_PIN 10 // Configurable, see typical pin layout above -MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 -uint8_t successRead; -byte readCard[4]; // Stores scanned ID read from RFID Module - -const int buttonPause = A0; -const int buttonUp = A1; -const int buttonDown = A2; - -uint8_t numberOfCards = 0; - -void setup() { - - Serial.begin(115200); // Es gibt ein paar Debug Ausgaben über die serielle Schnittstelle - randomSeed(analogRead(A0)); // Zufallsgenerator initialisieren - - Serial.println(F("DIY NFC JUKEBOX")); - Serial.println(F("BY THORSTEN VOß")); - - // Knöpfe mit PullUp - pinMode(buttonPause, INPUT_PULLUP); - pinMode(buttonUp, INPUT_PULLUP); - pinMode(buttonDown, INPUT_PULLUP); - - // NFC Leser initialisieren - SPI.begin(); // Init SPI bus - mfrc522.PCD_Init(); // Init MFRC522 - mfrc522.PCD_DumpVersionToSerial(); // Show details of PCD - MFRC522 Card Reader - - // DFPlayer Mini initialisieren - mp3.begin(); - mp3.setVolume(10); - - // RESET --- ALLE DREI KNÖPFE BEIM STARTEN GEDRÜCKT HALTEN -> alle bekannten Karten werden gelöscht - if (digitalRead(buttonPause) == LOW && digitalRead(buttonUp) == LOW && digitalRead(buttonDown) == LOW) { - Serial.println(F("Reset -> EEPROM wird gelöscht")); - for (int i = 0 ; i < EEPROM.length() ; i++) { - EEPROM.write(i, 0); - } - } - - // Anzahl bekannter Karten auslesen - numberOfCards = EEPROM.read(0); -} - -void loop() { - do { - successRead = getID(); - mp3.loop(); - - if (digitalRead(buttonPause) == LOW) { - Serial.println(F("Play/Pause")); - - if (mp3.getStatus() == 513) - mp3.pause(); - else - mp3.start(); - - delay(500); - } - if (digitalRead(buttonUp) == LOW) { - Serial.println(F("Volume Up")); - mp3.increaseVolume(); - } - if (digitalRead(buttonDown) == LOW) { - Serial.println(F("Volume Down")); - mp3.decreaseVolume(); - } - - } - while (!successRead); - - foundCard = false; - - for (int x = 0; x < numberOfCards; x++) { - EEPROM.get(sizeof(StoredCard) * x + sizeof(int), myCard); - if (checkTwo(readCard, myCard.id)) - { - foundCard = true; - numTracksInFolder = mp3.getFolderTrackCount(myCard.folder); - - // Hörspielmodus: eine zufällige Datei aus dem Ordner - if (myCard.mode == 1) { - Serial.println(F("Hörspielmodus -> zufälligen Track wiedergeben")); - track = random(1, numTracksInFolder + 1); - Serial.println(track); - mp3.playFolderTrack(myCard.folder, track); - } - // Album Modus: kompletten Ordner spielen - if (myCard.mode == 2) { - Serial.println(F("Album Modus -> kompletten Ordner wiedergeben")); - track = 1; - mp3.playFolderTrack(myCard.folder, track); - } - // Party Modus: Ordner in zufälliger Reihenfolge - if (myCard.mode == 3) { - Serial.println(F("Party Modus -> Ordner in zufälliger Reihenfolge wiedergeben")); - track = random(1, numTracksInFolder + 1); - mp3.playFolderTrack(myCard.folder, track); - } - break; - } - } - - // Neue Karte konfigurieren - if (foundCard == false) { - Serial.print(F("Neue Karte konfigurieren")); - - for (int i = 0; i < 4; i++) - myCard.id[i] = readCard[i]; - - myCard.folder = 0; - myCard.mode = 0; - bool done = false; - mp3.playMp3FolderTrack(100); - do { - if (digitalRead(buttonPause) == LOW) { - done = true; - delay(1000); - } - if (digitalRead(buttonUp) == LOW) { - myCard.folder = min(myCard.folder + 1, 99); - //mp3.playMp3FolderTrack(myCard.folder); - mp3.playFolderTrack(myCard.folder, 1); - delay(1000); - } - if (digitalRead(buttonDown) == LOW) { - myCard.folder = max(myCard.folder - 1, 1); - //mp3.playMp3FolderTrack(myCard.folder); - mp3.playFolderTrack(myCard.folder, 1); - delay(1000); - } - } - while (done == false); - - done = false; - mp3.playMp3FolderTrack(101); - do { - if (digitalRead(buttonPause) == LOW) { - done = true; - delay(1000); - } - if (digitalRead(buttonUp) == LOW) { - myCard.mode = min(myCard.mode + 1, 3); - mp3.playMp3FolderTrack(101 + myCard.mode); - delay(1000); - } - if (digitalRead(buttonDown) == LOW) { - myCard.mode = max(myCard.mode - 1, 1); - mp3.playMp3FolderTrack(101 + myCard.mode); - delay(1000); - } - } - while (done == false); - mp3.playMp3FolderTrack(110); - EEPROM.put(sizeof(StoredCard) * numberOfCards + sizeof(int), myCard); - numberOfCards = numberOfCards + 1; - EEPROM.put(0, numberOfCards); - } -} - - - -///////////////////////////////////////// Get PICC's UID /////////////////////////////////// -uint8_t getID() { - // Getting ready for Reading PICCs - if ( ! mfrc522.PICC_IsNewCardPresent()) { //If a new PICC placed to RFID reader continue - return 0; - } - if ( ! mfrc522.PICC_ReadCardSerial()) { //Since a PICC placed get Serial and continue - return 0; - } - // There are Mifare PICCs which have 4 byte or 7 byte UID care if you use 7 byte PICC - // I think we should assume every PICC as they have 4 byte UID - // Until we support 7 byte PICCs - Serial.println(F("Scanned PICC's UID:")); - for ( uint8_t i = 0; i < 4; i++) { // - readCard[i] = mfrc522.uid.uidByte[i]; - Serial.print(readCard[i], HEX); - } - Serial.println(""); - mfrc522.PICC_HaltA(); // Stop reading - return 1; -} - - - -///////////////////////////////////////// Check Bytes /////////////////////////////////// -boolean checkTwo ( byte a[], byte b[] ) { - boolean match = false; // initialize card match to false - if ( a[0] != 0 ) // Make sure there is something in the array first - match = true; // Assume they match at first - for ( uint8_t k = 0; k < 4; k++ ) { // Loop 4 times - if ( a[k] != b[k] ) // IF a != b then set match = false, one fails, all fail - match = false; - } - if ( match ) { // Check to see if if match is still true - return true; // Return true - } - else { - return false; // Return false - } -} - - diff --git a/SD-Karte/advert/0001.mp3 b/SD-Karte/advert/0001.mp3 new file mode 100644 index 0000000..bfc9491 Binary files /dev/null and b/SD-Karte/advert/0001.mp3 differ diff --git a/SD-Karte/advert/0002.mp3 b/SD-Karte/advert/0002.mp3 new file mode 100644 index 0000000..d6032cf Binary files /dev/null and b/SD-Karte/advert/0002.mp3 differ diff --git a/SD-Karte/advert/0003.mp3 b/SD-Karte/advert/0003.mp3 new file mode 100644 index 0000000..d070d27 Binary files /dev/null and b/SD-Karte/advert/0003.mp3 differ diff --git a/SD-Karte/advert/0004.mp3 b/SD-Karte/advert/0004.mp3 new file mode 100644 index 0000000..aa95d5a Binary files /dev/null and b/SD-Karte/advert/0004.mp3 differ diff --git a/SD-Karte/advert/0005.mp3 b/SD-Karte/advert/0005.mp3 new file mode 100644 index 0000000..588cddd Binary files /dev/null and b/SD-Karte/advert/0005.mp3 differ diff --git a/SD-Karte/advert/0006.mp3 b/SD-Karte/advert/0006.mp3 new file mode 100644 index 0000000..c3fdb79 Binary files /dev/null and b/SD-Karte/advert/0006.mp3 differ diff --git a/SD-Karte/advert/0007.mp3 b/SD-Karte/advert/0007.mp3 new file mode 100644 index 0000000..fdf8fae Binary files /dev/null and b/SD-Karte/advert/0007.mp3 differ diff --git a/SD-Karte/advert/0008.mp3 b/SD-Karte/advert/0008.mp3 new file mode 100644 index 0000000..20e05e6 Binary files /dev/null and b/SD-Karte/advert/0008.mp3 differ diff --git a/SD-Karte/advert/0009.mp3 b/SD-Karte/advert/0009.mp3 new file mode 100644 index 0000000..96aaa63 Binary files /dev/null and b/SD-Karte/advert/0009.mp3 differ diff --git a/SD-Karte/advert/0010.mp3 b/SD-Karte/advert/0010.mp3 new file mode 100644 index 0000000..3b35b43 Binary files /dev/null and b/SD-Karte/advert/0010.mp3 differ diff --git a/SD-Karte/advert/0011.mp3 b/SD-Karte/advert/0011.mp3 new file mode 100644 index 0000000..07c7197 Binary files /dev/null and b/SD-Karte/advert/0011.mp3 differ diff --git a/SD-Karte/advert/0012.mp3 b/SD-Karte/advert/0012.mp3 new file mode 100644 index 0000000..c85d0ce Binary files /dev/null and b/SD-Karte/advert/0012.mp3 differ diff --git a/SD-Karte/advert/0013.mp3 b/SD-Karte/advert/0013.mp3 new file mode 100644 index 0000000..cb07d9f Binary files /dev/null and b/SD-Karte/advert/0013.mp3 differ diff --git a/SD-Karte/advert/0014.mp3 b/SD-Karte/advert/0014.mp3 new file mode 100644 index 0000000..c4dbdba Binary files /dev/null and b/SD-Karte/advert/0014.mp3 differ diff --git a/SD-Karte/advert/0015.mp3 b/SD-Karte/advert/0015.mp3 new file mode 100644 index 0000000..b9da66b Binary files /dev/null and b/SD-Karte/advert/0015.mp3 differ diff --git a/SD-Karte/advert/0016.mp3 b/SD-Karte/advert/0016.mp3 new file mode 100644 index 0000000..0594a15 Binary files /dev/null and b/SD-Karte/advert/0016.mp3 differ diff --git a/SD-Karte/advert/0017.mp3 b/SD-Karte/advert/0017.mp3 new file mode 100644 index 0000000..6790b3f Binary files /dev/null and b/SD-Karte/advert/0017.mp3 differ diff --git a/SD-Karte/advert/0018.mp3 b/SD-Karte/advert/0018.mp3 new file mode 100644 index 0000000..22e5d6d Binary files /dev/null and b/SD-Karte/advert/0018.mp3 differ diff --git a/SD-Karte/advert/0019.mp3 b/SD-Karte/advert/0019.mp3 new file mode 100644 index 0000000..b6d688c Binary files /dev/null and b/SD-Karte/advert/0019.mp3 differ diff --git a/SD-Karte/advert/0020.mp3 b/SD-Karte/advert/0020.mp3 new file mode 100644 index 0000000..51ed75b Binary files /dev/null and b/SD-Karte/advert/0020.mp3 differ diff --git a/SD-Karte/advert/0021.mp3 b/SD-Karte/advert/0021.mp3 new file mode 100644 index 0000000..2a65d9f Binary files /dev/null and b/SD-Karte/advert/0021.mp3 differ diff --git a/SD-Karte/advert/0022.mp3 b/SD-Karte/advert/0022.mp3 new file mode 100644 index 0000000..c768964 Binary files /dev/null and b/SD-Karte/advert/0022.mp3 differ diff --git a/SD-Karte/advert/0023.mp3 b/SD-Karte/advert/0023.mp3 new file mode 100644 index 0000000..37e4451 Binary files /dev/null and b/SD-Karte/advert/0023.mp3 differ diff --git a/SD-Karte/advert/0024.mp3 b/SD-Karte/advert/0024.mp3 new file mode 100644 index 0000000..6316e07 Binary files /dev/null and b/SD-Karte/advert/0024.mp3 differ diff --git a/SD-Karte/advert/0025.mp3 b/SD-Karte/advert/0025.mp3 new file mode 100644 index 0000000..d71e056 Binary files /dev/null and b/SD-Karte/advert/0025.mp3 differ diff --git a/SD-Karte/advert/0026.mp3 b/SD-Karte/advert/0026.mp3 new file mode 100644 index 0000000..a1d80be Binary files /dev/null and b/SD-Karte/advert/0026.mp3 differ diff --git a/SD-Karte/advert/0027.mp3 b/SD-Karte/advert/0027.mp3 new file mode 100644 index 0000000..d1a4ae4 Binary files /dev/null and b/SD-Karte/advert/0027.mp3 differ diff --git a/SD-Karte/advert/0028.mp3 b/SD-Karte/advert/0028.mp3 new file mode 100644 index 0000000..99c5428 Binary files /dev/null and b/SD-Karte/advert/0028.mp3 differ diff --git a/SD-Karte/advert/0029.mp3 b/SD-Karte/advert/0029.mp3 new file mode 100644 index 0000000..a0912e0 Binary files /dev/null and b/SD-Karte/advert/0029.mp3 differ diff --git a/SD-Karte/advert/0030.mp3 b/SD-Karte/advert/0030.mp3 new file mode 100644 index 0000000..a3bd08c Binary files /dev/null and b/SD-Karte/advert/0030.mp3 differ diff --git a/SD-Karte/advert/0031.mp3 b/SD-Karte/advert/0031.mp3 new file mode 100644 index 0000000..cdf5f5c Binary files /dev/null and b/SD-Karte/advert/0031.mp3 differ diff --git a/SD-Karte/advert/0032.mp3 b/SD-Karte/advert/0032.mp3 new file mode 100644 index 0000000..7d14217 Binary files /dev/null and b/SD-Karte/advert/0032.mp3 differ diff --git a/SD-Karte/advert/0033.mp3 b/SD-Karte/advert/0033.mp3 new file mode 100644 index 0000000..7859d41 Binary files /dev/null and b/SD-Karte/advert/0033.mp3 differ diff --git a/SD-Karte/advert/0034.mp3 b/SD-Karte/advert/0034.mp3 new file mode 100644 index 0000000..89e63c4 Binary files /dev/null and b/SD-Karte/advert/0034.mp3 differ diff --git a/SD-Karte/advert/0035.mp3 b/SD-Karte/advert/0035.mp3 new file mode 100644 index 0000000..7654c06 Binary files /dev/null and b/SD-Karte/advert/0035.mp3 differ diff --git a/SD-Karte/advert/0036.mp3 b/SD-Karte/advert/0036.mp3 new file mode 100644 index 0000000..c4f2f93 Binary files /dev/null and b/SD-Karte/advert/0036.mp3 differ diff --git a/SD-Karte/advert/0037.mp3 b/SD-Karte/advert/0037.mp3 new file mode 100644 index 0000000..83ee6ac Binary files /dev/null and b/SD-Karte/advert/0037.mp3 differ diff --git a/SD-Karte/advert/0038.mp3 b/SD-Karte/advert/0038.mp3 new file mode 100644 index 0000000..c6215f1 Binary files /dev/null and b/SD-Karte/advert/0038.mp3 differ diff --git a/SD-Karte/advert/0039.mp3 b/SD-Karte/advert/0039.mp3 new file mode 100644 index 0000000..5cc010d Binary files /dev/null and b/SD-Karte/advert/0039.mp3 differ diff --git a/SD-Karte/advert/0040.mp3 b/SD-Karte/advert/0040.mp3 new file mode 100644 index 0000000..ec60ffa Binary files /dev/null and b/SD-Karte/advert/0040.mp3 differ diff --git a/SD-Karte/advert/0041.mp3 b/SD-Karte/advert/0041.mp3 new file mode 100644 index 0000000..42f57d9 Binary files /dev/null and b/SD-Karte/advert/0041.mp3 differ diff --git a/SD-Karte/advert/0042.mp3 b/SD-Karte/advert/0042.mp3 new file mode 100644 index 0000000..3572f9f Binary files /dev/null and b/SD-Karte/advert/0042.mp3 differ diff --git a/SD-Karte/advert/0043.mp3 b/SD-Karte/advert/0043.mp3 new file mode 100644 index 0000000..1610c92 Binary files /dev/null and b/SD-Karte/advert/0043.mp3 differ diff --git a/SD-Karte/advert/0044.mp3 b/SD-Karte/advert/0044.mp3 new file mode 100644 index 0000000..ac93370 Binary files /dev/null and b/SD-Karte/advert/0044.mp3 differ diff --git a/SD-Karte/advert/0045.mp3 b/SD-Karte/advert/0045.mp3 new file mode 100644 index 0000000..9edae65 Binary files /dev/null and b/SD-Karte/advert/0045.mp3 differ diff --git a/SD-Karte/advert/0046.mp3 b/SD-Karte/advert/0046.mp3 new file mode 100644 index 0000000..4123bd9 Binary files /dev/null and b/SD-Karte/advert/0046.mp3 differ diff --git a/SD-Karte/advert/0047.mp3 b/SD-Karte/advert/0047.mp3 new file mode 100644 index 0000000..e3a4fe7 Binary files /dev/null and b/SD-Karte/advert/0047.mp3 differ diff --git a/SD-Karte/advert/0048.mp3 b/SD-Karte/advert/0048.mp3 new file mode 100644 index 0000000..85265ab Binary files /dev/null and b/SD-Karte/advert/0048.mp3 differ diff --git a/SD-Karte/advert/0049.mp3 b/SD-Karte/advert/0049.mp3 new file mode 100644 index 0000000..c118db9 Binary files /dev/null and b/SD-Karte/advert/0049.mp3 differ diff --git a/SD-Karte/advert/0050.mp3 b/SD-Karte/advert/0050.mp3 new file mode 100644 index 0000000..122d035 Binary files /dev/null and b/SD-Karte/advert/0050.mp3 differ diff --git a/SD-Karte/advert/0051.mp3 b/SD-Karte/advert/0051.mp3 new file mode 100644 index 0000000..dd2437c Binary files /dev/null and b/SD-Karte/advert/0051.mp3 differ diff --git a/SD-Karte/advert/0052.mp3 b/SD-Karte/advert/0052.mp3 new file mode 100644 index 0000000..cd9da42 Binary files /dev/null and b/SD-Karte/advert/0052.mp3 differ diff --git a/SD-Karte/advert/0053.mp3 b/SD-Karte/advert/0053.mp3 new file mode 100644 index 0000000..db544a0 Binary files /dev/null and b/SD-Karte/advert/0053.mp3 differ diff --git a/SD-Karte/advert/0054.mp3 b/SD-Karte/advert/0054.mp3 new file mode 100644 index 0000000..a1226e9 Binary files /dev/null and b/SD-Karte/advert/0054.mp3 differ diff --git a/SD-Karte/advert/0055.mp3 b/SD-Karte/advert/0055.mp3 new file mode 100644 index 0000000..1df91ca Binary files /dev/null and b/SD-Karte/advert/0055.mp3 differ diff --git a/SD-Karte/advert/0056.mp3 b/SD-Karte/advert/0056.mp3 new file mode 100644 index 0000000..9f72c55 Binary files /dev/null and b/SD-Karte/advert/0056.mp3 differ diff --git a/SD-Karte/advert/0057.mp3 b/SD-Karte/advert/0057.mp3 new file mode 100644 index 0000000..cbad187 Binary files /dev/null and b/SD-Karte/advert/0057.mp3 differ diff --git a/SD-Karte/advert/0058.mp3 b/SD-Karte/advert/0058.mp3 new file mode 100644 index 0000000..92ea462 Binary files /dev/null and b/SD-Karte/advert/0058.mp3 differ diff --git a/SD-Karte/advert/0059.mp3 b/SD-Karte/advert/0059.mp3 new file mode 100644 index 0000000..88e88f0 Binary files /dev/null and b/SD-Karte/advert/0059.mp3 differ diff --git a/SD-Karte/advert/0060.mp3 b/SD-Karte/advert/0060.mp3 new file mode 100644 index 0000000..9b8d28b Binary files /dev/null and b/SD-Karte/advert/0060.mp3 differ diff --git a/SD-Karte/advert/0061.mp3 b/SD-Karte/advert/0061.mp3 new file mode 100644 index 0000000..2356d1a Binary files /dev/null and b/SD-Karte/advert/0061.mp3 differ diff --git a/SD-Karte/advert/0062.mp3 b/SD-Karte/advert/0062.mp3 new file mode 100644 index 0000000..94f183d Binary files /dev/null and b/SD-Karte/advert/0062.mp3 differ diff --git a/SD-Karte/advert/0063.mp3 b/SD-Karte/advert/0063.mp3 new file mode 100644 index 0000000..8e1e5aa Binary files /dev/null and b/SD-Karte/advert/0063.mp3 differ diff --git a/SD-Karte/advert/0064.mp3 b/SD-Karte/advert/0064.mp3 new file mode 100644 index 0000000..9323dd8 Binary files /dev/null and b/SD-Karte/advert/0064.mp3 differ diff --git a/SD-Karte/advert/0065.mp3 b/SD-Karte/advert/0065.mp3 new file mode 100644 index 0000000..4e7f598 Binary files /dev/null and b/SD-Karte/advert/0065.mp3 differ diff --git a/SD-Karte/advert/0066.mp3 b/SD-Karte/advert/0066.mp3 new file mode 100644 index 0000000..415d61e Binary files /dev/null and b/SD-Karte/advert/0066.mp3 differ diff --git a/SD-Karte/advert/0067.mp3 b/SD-Karte/advert/0067.mp3 new file mode 100644 index 0000000..92a8c41 Binary files /dev/null and b/SD-Karte/advert/0067.mp3 differ diff --git a/SD-Karte/advert/0068.mp3 b/SD-Karte/advert/0068.mp3 new file mode 100644 index 0000000..0d62867 Binary files /dev/null and b/SD-Karte/advert/0068.mp3 differ diff --git a/SD-Karte/advert/0069.mp3 b/SD-Karte/advert/0069.mp3 new file mode 100644 index 0000000..a111ec3 Binary files /dev/null and b/SD-Karte/advert/0069.mp3 differ diff --git a/SD-Karte/advert/0070.mp3 b/SD-Karte/advert/0070.mp3 new file mode 100644 index 0000000..2230a2f Binary files /dev/null and b/SD-Karte/advert/0070.mp3 differ diff --git a/SD-Karte/advert/0071.mp3 b/SD-Karte/advert/0071.mp3 new file mode 100644 index 0000000..8239c9e Binary files /dev/null and b/SD-Karte/advert/0071.mp3 differ diff --git a/SD-Karte/advert/0072.mp3 b/SD-Karte/advert/0072.mp3 new file mode 100644 index 0000000..5e9a066 Binary files /dev/null and b/SD-Karte/advert/0072.mp3 differ diff --git a/SD-Karte/advert/0073.mp3 b/SD-Karte/advert/0073.mp3 new file mode 100644 index 0000000..33254d3 Binary files /dev/null and b/SD-Karte/advert/0073.mp3 differ diff --git a/SD-Karte/advert/0074.mp3 b/SD-Karte/advert/0074.mp3 new file mode 100644 index 0000000..bd2b487 Binary files /dev/null and b/SD-Karte/advert/0074.mp3 differ diff --git a/SD-Karte/advert/0075.mp3 b/SD-Karte/advert/0075.mp3 new file mode 100644 index 0000000..8d86177 Binary files /dev/null and b/SD-Karte/advert/0075.mp3 differ diff --git a/SD-Karte/advert/0076.mp3 b/SD-Karte/advert/0076.mp3 new file mode 100644 index 0000000..d4d24e5 Binary files /dev/null and b/SD-Karte/advert/0076.mp3 differ diff --git a/SD-Karte/advert/0077.mp3 b/SD-Karte/advert/0077.mp3 new file mode 100644 index 0000000..4651465 Binary files /dev/null and b/SD-Karte/advert/0077.mp3 differ diff --git a/SD-Karte/advert/0078.mp3 b/SD-Karte/advert/0078.mp3 new file mode 100644 index 0000000..b65c65d Binary files /dev/null and b/SD-Karte/advert/0078.mp3 differ diff --git a/SD-Karte/advert/0079.mp3 b/SD-Karte/advert/0079.mp3 new file mode 100644 index 0000000..a62e95d Binary files /dev/null and b/SD-Karte/advert/0079.mp3 differ diff --git a/SD-Karte/advert/0080.mp3 b/SD-Karte/advert/0080.mp3 new file mode 100644 index 0000000..912ef30 Binary files /dev/null and b/SD-Karte/advert/0080.mp3 differ diff --git a/SD-Karte/advert/0081.mp3 b/SD-Karte/advert/0081.mp3 new file mode 100644 index 0000000..4b16f75 Binary files /dev/null and b/SD-Karte/advert/0081.mp3 differ diff --git a/SD-Karte/advert/0082.mp3 b/SD-Karte/advert/0082.mp3 new file mode 100644 index 0000000..af74fea Binary files /dev/null and b/SD-Karte/advert/0082.mp3 differ diff --git a/SD-Karte/advert/0083.mp3 b/SD-Karte/advert/0083.mp3 new file mode 100644 index 0000000..35b954f Binary files /dev/null and b/SD-Karte/advert/0083.mp3 differ diff --git a/SD-Karte/advert/0084.mp3 b/SD-Karte/advert/0084.mp3 new file mode 100644 index 0000000..fa23d66 Binary files /dev/null and b/SD-Karte/advert/0084.mp3 differ diff --git a/SD-Karte/advert/0085.mp3 b/SD-Karte/advert/0085.mp3 new file mode 100644 index 0000000..2cb80fb Binary files /dev/null and b/SD-Karte/advert/0085.mp3 differ diff --git a/SD-Karte/advert/0086.mp3 b/SD-Karte/advert/0086.mp3 new file mode 100644 index 0000000..f926775 Binary files /dev/null and b/SD-Karte/advert/0086.mp3 differ diff --git a/SD-Karte/advert/0087.mp3 b/SD-Karte/advert/0087.mp3 new file mode 100644 index 0000000..b913709 Binary files /dev/null and b/SD-Karte/advert/0087.mp3 differ diff --git a/SD-Karte/advert/0088.mp3 b/SD-Karte/advert/0088.mp3 new file mode 100644 index 0000000..26f3fa7 Binary files /dev/null and b/SD-Karte/advert/0088.mp3 differ diff --git a/SD-Karte/advert/0089.mp3 b/SD-Karte/advert/0089.mp3 new file mode 100644 index 0000000..8e13291 Binary files /dev/null and b/SD-Karte/advert/0089.mp3 differ diff --git a/SD-Karte/advert/0090.mp3 b/SD-Karte/advert/0090.mp3 new file mode 100644 index 0000000..80b4027 Binary files /dev/null and b/SD-Karte/advert/0090.mp3 differ diff --git a/SD-Karte/advert/0091.mp3 b/SD-Karte/advert/0091.mp3 new file mode 100644 index 0000000..d013c00 Binary files /dev/null and b/SD-Karte/advert/0091.mp3 differ diff --git a/SD-Karte/advert/0092.mp3 b/SD-Karte/advert/0092.mp3 new file mode 100644 index 0000000..fb3caa5 Binary files /dev/null and b/SD-Karte/advert/0092.mp3 differ diff --git a/SD-Karte/advert/0093.mp3 b/SD-Karte/advert/0093.mp3 new file mode 100644 index 0000000..128073d Binary files /dev/null and b/SD-Karte/advert/0093.mp3 differ diff --git a/SD-Karte/advert/0094.mp3 b/SD-Karte/advert/0094.mp3 new file mode 100644 index 0000000..a07def4 Binary files /dev/null and b/SD-Karte/advert/0094.mp3 differ diff --git a/SD-Karte/advert/0095.mp3 b/SD-Karte/advert/0095.mp3 new file mode 100644 index 0000000..a4f5f8e Binary files /dev/null and b/SD-Karte/advert/0095.mp3 differ diff --git a/SD-Karte/advert/0096.mp3 b/SD-Karte/advert/0096.mp3 new file mode 100644 index 0000000..f7d88df Binary files /dev/null and b/SD-Karte/advert/0096.mp3 differ diff --git a/SD-Karte/advert/0097.mp3 b/SD-Karte/advert/0097.mp3 new file mode 100644 index 0000000..8113f1c Binary files /dev/null and b/SD-Karte/advert/0097.mp3 differ diff --git a/SD-Karte/advert/0098.mp3 b/SD-Karte/advert/0098.mp3 new file mode 100644 index 0000000..f56ba08 Binary files /dev/null and b/SD-Karte/advert/0098.mp3 differ diff --git a/SD-Karte/advert/0099.mp3 b/SD-Karte/advert/0099.mp3 new file mode 100644 index 0000000..a80ac96 Binary files /dev/null and b/SD-Karte/advert/0099.mp3 differ diff --git a/SD-Karte/advert/0100.mp3 b/SD-Karte/advert/0100.mp3 new file mode 100644 index 0000000..a33450b Binary files /dev/null and b/SD-Karte/advert/0100.mp3 differ diff --git a/SD-Karte/advert/0101.mp3 b/SD-Karte/advert/0101.mp3 new file mode 100644 index 0000000..70ffd3f Binary files /dev/null and b/SD-Karte/advert/0101.mp3 differ diff --git a/SD-Karte/advert/0102.mp3 b/SD-Karte/advert/0102.mp3 new file mode 100644 index 0000000..d9bf64a Binary files /dev/null and b/SD-Karte/advert/0102.mp3 differ diff --git a/SD-Karte/advert/0103.mp3 b/SD-Karte/advert/0103.mp3 new file mode 100644 index 0000000..5d6f6c9 Binary files /dev/null and b/SD-Karte/advert/0103.mp3 differ diff --git a/SD-Karte/advert/0104.mp3 b/SD-Karte/advert/0104.mp3 new file mode 100644 index 0000000..2fb891c Binary files /dev/null and b/SD-Karte/advert/0104.mp3 differ diff --git a/SD-Karte/advert/0105.mp3 b/SD-Karte/advert/0105.mp3 new file mode 100644 index 0000000..24f26ca Binary files /dev/null and b/SD-Karte/advert/0105.mp3 differ diff --git a/SD-Karte/advert/0106.mp3 b/SD-Karte/advert/0106.mp3 new file mode 100644 index 0000000..c53f04a Binary files /dev/null and b/SD-Karte/advert/0106.mp3 differ diff --git a/SD-Karte/advert/0107.mp3 b/SD-Karte/advert/0107.mp3 new file mode 100644 index 0000000..7af0b9b Binary files /dev/null and b/SD-Karte/advert/0107.mp3 differ diff --git a/SD-Karte/advert/0108.mp3 b/SD-Karte/advert/0108.mp3 new file mode 100644 index 0000000..9e18a09 Binary files /dev/null and b/SD-Karte/advert/0108.mp3 differ diff --git a/SD-Karte/advert/0109.mp3 b/SD-Karte/advert/0109.mp3 new file mode 100644 index 0000000..9b73ae8 Binary files /dev/null and b/SD-Karte/advert/0109.mp3 differ diff --git a/SD-Karte/advert/0110.mp3 b/SD-Karte/advert/0110.mp3 new file mode 100644 index 0000000..60358e2 Binary files /dev/null and b/SD-Karte/advert/0110.mp3 differ diff --git a/SD-Karte/advert/0111.mp3 b/SD-Karte/advert/0111.mp3 new file mode 100644 index 0000000..a45c4cf Binary files /dev/null and b/SD-Karte/advert/0111.mp3 differ diff --git a/SD-Karte/advert/0112.mp3 b/SD-Karte/advert/0112.mp3 new file mode 100644 index 0000000..506abc5 Binary files /dev/null and b/SD-Karte/advert/0112.mp3 differ diff --git a/SD-Karte/advert/0113.mp3 b/SD-Karte/advert/0113.mp3 new file mode 100644 index 0000000..ecdbc1c Binary files /dev/null and b/SD-Karte/advert/0113.mp3 differ diff --git a/SD-Karte/advert/0114.mp3 b/SD-Karte/advert/0114.mp3 new file mode 100644 index 0000000..48007f5 Binary files /dev/null and b/SD-Karte/advert/0114.mp3 differ diff --git a/SD-Karte/advert/0115.mp3 b/SD-Karte/advert/0115.mp3 new file mode 100644 index 0000000..0492d4a Binary files /dev/null and b/SD-Karte/advert/0115.mp3 differ diff --git a/SD-Karte/advert/0116.mp3 b/SD-Karte/advert/0116.mp3 new file mode 100644 index 0000000..15a3298 Binary files /dev/null and b/SD-Karte/advert/0116.mp3 differ diff --git a/SD-Karte/advert/0117.mp3 b/SD-Karte/advert/0117.mp3 new file mode 100644 index 0000000..eee3646 Binary files /dev/null and b/SD-Karte/advert/0117.mp3 differ diff --git a/SD-Karte/advert/0118.mp3 b/SD-Karte/advert/0118.mp3 new file mode 100644 index 0000000..e96d0a9 Binary files /dev/null and b/SD-Karte/advert/0118.mp3 differ diff --git a/SD-Karte/advert/0119.mp3 b/SD-Karte/advert/0119.mp3 new file mode 100644 index 0000000..c903c54 Binary files /dev/null and b/SD-Karte/advert/0119.mp3 differ diff --git a/SD-Karte/advert/0120.mp3 b/SD-Karte/advert/0120.mp3 new file mode 100644 index 0000000..9e5fc49 Binary files /dev/null and b/SD-Karte/advert/0120.mp3 differ diff --git a/SD-Karte/advert/0121.mp3 b/SD-Karte/advert/0121.mp3 new file mode 100644 index 0000000..42542db Binary files /dev/null and b/SD-Karte/advert/0121.mp3 differ diff --git a/SD-Karte/advert/0122.mp3 b/SD-Karte/advert/0122.mp3 new file mode 100644 index 0000000..53d93e7 Binary files /dev/null and b/SD-Karte/advert/0122.mp3 differ diff --git a/SD-Karte/advert/0123.mp3 b/SD-Karte/advert/0123.mp3 new file mode 100644 index 0000000..1b5940b Binary files /dev/null and b/SD-Karte/advert/0123.mp3 differ diff --git a/SD-Karte/advert/0124.mp3 b/SD-Karte/advert/0124.mp3 new file mode 100644 index 0000000..128a9e1 Binary files /dev/null and b/SD-Karte/advert/0124.mp3 differ diff --git a/SD-Karte/advert/0125.mp3 b/SD-Karte/advert/0125.mp3 new file mode 100644 index 0000000..e62896f Binary files /dev/null and b/SD-Karte/advert/0125.mp3 differ diff --git a/SD-Karte/advert/0126.mp3 b/SD-Karte/advert/0126.mp3 new file mode 100644 index 0000000..8563d5f Binary files /dev/null and b/SD-Karte/advert/0126.mp3 differ diff --git a/SD-Karte/advert/0127.mp3 b/SD-Karte/advert/0127.mp3 new file mode 100644 index 0000000..c3745a3 Binary files /dev/null and b/SD-Karte/advert/0127.mp3 differ diff --git a/SD-Karte/advert/0128.mp3 b/SD-Karte/advert/0128.mp3 new file mode 100644 index 0000000..3f0c52f Binary files /dev/null and b/SD-Karte/advert/0128.mp3 differ diff --git a/SD-Karte/advert/0129.mp3 b/SD-Karte/advert/0129.mp3 new file mode 100644 index 0000000..d53f08a Binary files /dev/null and b/SD-Karte/advert/0129.mp3 differ diff --git a/SD-Karte/advert/0130.mp3 b/SD-Karte/advert/0130.mp3 new file mode 100644 index 0000000..fc7e9b8 Binary files /dev/null and b/SD-Karte/advert/0130.mp3 differ diff --git a/SD-Karte/advert/0131.mp3 b/SD-Karte/advert/0131.mp3 new file mode 100644 index 0000000..cfa3e1c Binary files /dev/null and b/SD-Karte/advert/0131.mp3 differ diff --git a/SD-Karte/advert/0132.mp3 b/SD-Karte/advert/0132.mp3 new file mode 100644 index 0000000..25a4104 Binary files /dev/null and b/SD-Karte/advert/0132.mp3 differ diff --git a/SD-Karte/advert/0133.mp3 b/SD-Karte/advert/0133.mp3 new file mode 100644 index 0000000..b459f47 Binary files /dev/null and b/SD-Karte/advert/0133.mp3 differ diff --git a/SD-Karte/advert/0134.mp3 b/SD-Karte/advert/0134.mp3 new file mode 100644 index 0000000..da26c36 Binary files /dev/null and b/SD-Karte/advert/0134.mp3 differ diff --git a/SD-Karte/advert/0135.mp3 b/SD-Karte/advert/0135.mp3 new file mode 100644 index 0000000..8d56ee6 Binary files /dev/null and b/SD-Karte/advert/0135.mp3 differ diff --git a/SD-Karte/advert/0136.mp3 b/SD-Karte/advert/0136.mp3 new file mode 100644 index 0000000..28cc873 Binary files /dev/null and b/SD-Karte/advert/0136.mp3 differ diff --git a/SD-Karte/advert/0137.mp3 b/SD-Karte/advert/0137.mp3 new file mode 100644 index 0000000..93b02b7 Binary files /dev/null and b/SD-Karte/advert/0137.mp3 differ diff --git a/SD-Karte/advert/0138.mp3 b/SD-Karte/advert/0138.mp3 new file mode 100644 index 0000000..3c9d585 Binary files /dev/null and b/SD-Karte/advert/0138.mp3 differ diff --git a/SD-Karte/advert/0139.mp3 b/SD-Karte/advert/0139.mp3 new file mode 100644 index 0000000..d06fdaf Binary files /dev/null and b/SD-Karte/advert/0139.mp3 differ diff --git a/SD-Karte/advert/0140.mp3 b/SD-Karte/advert/0140.mp3 new file mode 100644 index 0000000..f061c0f Binary files /dev/null and b/SD-Karte/advert/0140.mp3 differ diff --git a/SD-Karte/advert/0141.mp3 b/SD-Karte/advert/0141.mp3 new file mode 100644 index 0000000..c6b90c1 Binary files /dev/null and b/SD-Karte/advert/0141.mp3 differ diff --git a/SD-Karte/advert/0142.mp3 b/SD-Karte/advert/0142.mp3 new file mode 100644 index 0000000..44ee176 Binary files /dev/null and b/SD-Karte/advert/0142.mp3 differ diff --git a/SD-Karte/advert/0143.mp3 b/SD-Karte/advert/0143.mp3 new file mode 100644 index 0000000..3d5cf89 Binary files /dev/null and b/SD-Karte/advert/0143.mp3 differ diff --git a/SD-Karte/advert/0144.mp3 b/SD-Karte/advert/0144.mp3 new file mode 100644 index 0000000..24cf32a Binary files /dev/null and b/SD-Karte/advert/0144.mp3 differ diff --git a/SD-Karte/advert/0145.mp3 b/SD-Karte/advert/0145.mp3 new file mode 100644 index 0000000..b33fdb8 Binary files /dev/null and b/SD-Karte/advert/0145.mp3 differ diff --git a/SD-Karte/advert/0146.mp3 b/SD-Karte/advert/0146.mp3 new file mode 100644 index 0000000..445b8b9 Binary files /dev/null and b/SD-Karte/advert/0146.mp3 differ diff --git a/SD-Karte/advert/0147.mp3 b/SD-Karte/advert/0147.mp3 new file mode 100644 index 0000000..5967c36 Binary files /dev/null and b/SD-Karte/advert/0147.mp3 differ diff --git a/SD-Karte/advert/0148.mp3 b/SD-Karte/advert/0148.mp3 new file mode 100644 index 0000000..5746c57 Binary files /dev/null and b/SD-Karte/advert/0148.mp3 differ diff --git a/SD-Karte/advert/0149.mp3 b/SD-Karte/advert/0149.mp3 new file mode 100644 index 0000000..aa8fd30 Binary files /dev/null and b/SD-Karte/advert/0149.mp3 differ diff --git a/SD-Karte/advert/0150.mp3 b/SD-Karte/advert/0150.mp3 new file mode 100644 index 0000000..edc3d1c Binary files /dev/null and b/SD-Karte/advert/0150.mp3 differ diff --git a/SD-Karte/advert/0151.mp3 b/SD-Karte/advert/0151.mp3 new file mode 100644 index 0000000..382da42 Binary files /dev/null and b/SD-Karte/advert/0151.mp3 differ diff --git a/SD-Karte/advert/0152.mp3 b/SD-Karte/advert/0152.mp3 new file mode 100644 index 0000000..a9f3b06 Binary files /dev/null and b/SD-Karte/advert/0152.mp3 differ diff --git a/SD-Karte/advert/0153.mp3 b/SD-Karte/advert/0153.mp3 new file mode 100644 index 0000000..0dd5661 Binary files /dev/null and b/SD-Karte/advert/0153.mp3 differ diff --git a/SD-Karte/advert/0154.mp3 b/SD-Karte/advert/0154.mp3 new file mode 100644 index 0000000..9796c47 Binary files /dev/null and b/SD-Karte/advert/0154.mp3 differ diff --git a/SD-Karte/advert/0155.mp3 b/SD-Karte/advert/0155.mp3 new file mode 100644 index 0000000..bfc9921 Binary files /dev/null and b/SD-Karte/advert/0155.mp3 differ diff --git a/SD-Karte/advert/0156.mp3 b/SD-Karte/advert/0156.mp3 new file mode 100644 index 0000000..8d6bf3d Binary files /dev/null and b/SD-Karte/advert/0156.mp3 differ diff --git a/SD-Karte/advert/0157.mp3 b/SD-Karte/advert/0157.mp3 new file mode 100644 index 0000000..630d5aa Binary files /dev/null and b/SD-Karte/advert/0157.mp3 differ diff --git a/SD-Karte/advert/0158.mp3 b/SD-Karte/advert/0158.mp3 new file mode 100644 index 0000000..f317be6 Binary files /dev/null and b/SD-Karte/advert/0158.mp3 differ diff --git a/SD-Karte/advert/0159.mp3 b/SD-Karte/advert/0159.mp3 new file mode 100644 index 0000000..629c3af Binary files /dev/null and b/SD-Karte/advert/0159.mp3 differ diff --git a/SD-Karte/advert/0160.mp3 b/SD-Karte/advert/0160.mp3 new file mode 100644 index 0000000..cfbee5f Binary files /dev/null and b/SD-Karte/advert/0160.mp3 differ diff --git a/SD-Karte/advert/0161.mp3 b/SD-Karte/advert/0161.mp3 new file mode 100644 index 0000000..35c80d2 Binary files /dev/null and b/SD-Karte/advert/0161.mp3 differ diff --git a/SD-Karte/advert/0162.mp3 b/SD-Karte/advert/0162.mp3 new file mode 100644 index 0000000..3d9983d Binary files /dev/null and b/SD-Karte/advert/0162.mp3 differ diff --git a/SD-Karte/advert/0163.mp3 b/SD-Karte/advert/0163.mp3 new file mode 100644 index 0000000..5a566e9 Binary files /dev/null and b/SD-Karte/advert/0163.mp3 differ diff --git a/SD-Karte/advert/0164.mp3 b/SD-Karte/advert/0164.mp3 new file mode 100644 index 0000000..2b87b57 Binary files /dev/null and b/SD-Karte/advert/0164.mp3 differ diff --git a/SD-Karte/advert/0165.mp3 b/SD-Karte/advert/0165.mp3 new file mode 100644 index 0000000..9a5d500 Binary files /dev/null and b/SD-Karte/advert/0165.mp3 differ diff --git a/SD-Karte/advert/0166.mp3 b/SD-Karte/advert/0166.mp3 new file mode 100644 index 0000000..cdd462f Binary files /dev/null and b/SD-Karte/advert/0166.mp3 differ diff --git a/SD-Karte/advert/0167.mp3 b/SD-Karte/advert/0167.mp3 new file mode 100644 index 0000000..e44fab6 Binary files /dev/null and b/SD-Karte/advert/0167.mp3 differ diff --git a/SD-Karte/advert/0168.mp3 b/SD-Karte/advert/0168.mp3 new file mode 100644 index 0000000..d063a9e Binary files /dev/null and b/SD-Karte/advert/0168.mp3 differ diff --git a/SD-Karte/advert/0169.mp3 b/SD-Karte/advert/0169.mp3 new file mode 100644 index 0000000..877161f Binary files /dev/null and b/SD-Karte/advert/0169.mp3 differ diff --git a/SD-Karte/advert/0170.mp3 b/SD-Karte/advert/0170.mp3 new file mode 100644 index 0000000..2777bd4 Binary files /dev/null and b/SD-Karte/advert/0170.mp3 differ diff --git a/SD-Karte/advert/0171.mp3 b/SD-Karte/advert/0171.mp3 new file mode 100644 index 0000000..fd061c9 Binary files /dev/null and b/SD-Karte/advert/0171.mp3 differ diff --git a/SD-Karte/advert/0172.mp3 b/SD-Karte/advert/0172.mp3 new file mode 100644 index 0000000..489920f Binary files /dev/null and b/SD-Karte/advert/0172.mp3 differ diff --git a/SD-Karte/advert/0173.mp3 b/SD-Karte/advert/0173.mp3 new file mode 100644 index 0000000..b7fbea9 Binary files /dev/null and b/SD-Karte/advert/0173.mp3 differ diff --git a/SD-Karte/advert/0174.mp3 b/SD-Karte/advert/0174.mp3 new file mode 100644 index 0000000..f4f60b8 Binary files /dev/null and b/SD-Karte/advert/0174.mp3 differ diff --git a/SD-Karte/advert/0175.mp3 b/SD-Karte/advert/0175.mp3 new file mode 100644 index 0000000..a326614 Binary files /dev/null and b/SD-Karte/advert/0175.mp3 differ diff --git a/SD-Karte/advert/0176.mp3 b/SD-Karte/advert/0176.mp3 new file mode 100644 index 0000000..d3dccfa Binary files /dev/null and b/SD-Karte/advert/0176.mp3 differ diff --git a/SD-Karte/advert/0177.mp3 b/SD-Karte/advert/0177.mp3 new file mode 100644 index 0000000..8c5b4d9 Binary files /dev/null and b/SD-Karte/advert/0177.mp3 differ diff --git a/SD-Karte/advert/0178.mp3 b/SD-Karte/advert/0178.mp3 new file mode 100644 index 0000000..057e7bb Binary files /dev/null and b/SD-Karte/advert/0178.mp3 differ diff --git a/SD-Karte/advert/0179.mp3 b/SD-Karte/advert/0179.mp3 new file mode 100644 index 0000000..76fec36 Binary files /dev/null and b/SD-Karte/advert/0179.mp3 differ diff --git a/SD-Karte/advert/0180.mp3 b/SD-Karte/advert/0180.mp3 new file mode 100644 index 0000000..d7bbad6 Binary files /dev/null and b/SD-Karte/advert/0180.mp3 differ diff --git a/SD-Karte/advert/0181.mp3 b/SD-Karte/advert/0181.mp3 new file mode 100644 index 0000000..ab56b9b Binary files /dev/null and b/SD-Karte/advert/0181.mp3 differ diff --git a/SD-Karte/advert/0182.mp3 b/SD-Karte/advert/0182.mp3 new file mode 100644 index 0000000..12fd9f0 Binary files /dev/null and b/SD-Karte/advert/0182.mp3 differ diff --git a/SD-Karte/advert/0183.mp3 b/SD-Karte/advert/0183.mp3 new file mode 100644 index 0000000..b00e938 Binary files /dev/null and b/SD-Karte/advert/0183.mp3 differ diff --git a/SD-Karte/advert/0184.mp3 b/SD-Karte/advert/0184.mp3 new file mode 100644 index 0000000..e1b49f5 Binary files /dev/null and b/SD-Karte/advert/0184.mp3 differ diff --git a/SD-Karte/advert/0185.mp3 b/SD-Karte/advert/0185.mp3 new file mode 100644 index 0000000..7783be4 Binary files /dev/null and b/SD-Karte/advert/0185.mp3 differ diff --git a/SD-Karte/advert/0186.mp3 b/SD-Karte/advert/0186.mp3 new file mode 100644 index 0000000..b5766af Binary files /dev/null and b/SD-Karte/advert/0186.mp3 differ diff --git a/SD-Karte/advert/0187.mp3 b/SD-Karte/advert/0187.mp3 new file mode 100644 index 0000000..67587f8 Binary files /dev/null and b/SD-Karte/advert/0187.mp3 differ diff --git a/SD-Karte/advert/0188.mp3 b/SD-Karte/advert/0188.mp3 new file mode 100644 index 0000000..dc7a740 Binary files /dev/null and b/SD-Karte/advert/0188.mp3 differ diff --git a/SD-Karte/advert/0189.mp3 b/SD-Karte/advert/0189.mp3 new file mode 100644 index 0000000..5ffb605 Binary files /dev/null and b/SD-Karte/advert/0189.mp3 differ diff --git a/SD-Karte/advert/0190.mp3 b/SD-Karte/advert/0190.mp3 new file mode 100644 index 0000000..e18d2de Binary files /dev/null and b/SD-Karte/advert/0190.mp3 differ diff --git a/SD-Karte/advert/0191.mp3 b/SD-Karte/advert/0191.mp3 new file mode 100644 index 0000000..2438a32 Binary files /dev/null and b/SD-Karte/advert/0191.mp3 differ diff --git a/SD-Karte/advert/0192.mp3 b/SD-Karte/advert/0192.mp3 new file mode 100644 index 0000000..71e69a4 Binary files /dev/null and b/SD-Karte/advert/0192.mp3 differ diff --git a/SD-Karte/advert/0193.mp3 b/SD-Karte/advert/0193.mp3 new file mode 100644 index 0000000..a1dfb1b Binary files /dev/null and b/SD-Karte/advert/0193.mp3 differ diff --git a/SD-Karte/advert/0194.mp3 b/SD-Karte/advert/0194.mp3 new file mode 100644 index 0000000..6998724 Binary files /dev/null and b/SD-Karte/advert/0194.mp3 differ diff --git a/SD-Karte/advert/0195.mp3 b/SD-Karte/advert/0195.mp3 new file mode 100644 index 0000000..15ab494 Binary files /dev/null and b/SD-Karte/advert/0195.mp3 differ diff --git a/SD-Karte/advert/0196.mp3 b/SD-Karte/advert/0196.mp3 new file mode 100644 index 0000000..341fb2a Binary files /dev/null and b/SD-Karte/advert/0196.mp3 differ diff --git a/SD-Karte/advert/0197.mp3 b/SD-Karte/advert/0197.mp3 new file mode 100644 index 0000000..b1e609c Binary files /dev/null and b/SD-Karte/advert/0197.mp3 differ diff --git a/SD-Karte/advert/0198.mp3 b/SD-Karte/advert/0198.mp3 new file mode 100644 index 0000000..20adeec Binary files /dev/null and b/SD-Karte/advert/0198.mp3 differ diff --git a/SD-Karte/advert/0199.mp3 b/SD-Karte/advert/0199.mp3 new file mode 100644 index 0000000..b136b38 Binary files /dev/null and b/SD-Karte/advert/0199.mp3 differ diff --git a/SD-Karte/advert/0200.mp3 b/SD-Karte/advert/0200.mp3 new file mode 100644 index 0000000..d0a003f Binary files /dev/null and b/SD-Karte/advert/0200.mp3 differ diff --git a/SD-Karte/advert/0201.mp3 b/SD-Karte/advert/0201.mp3 new file mode 100644 index 0000000..5ed5690 Binary files /dev/null and b/SD-Karte/advert/0201.mp3 differ diff --git a/SD-Karte/advert/0202.mp3 b/SD-Karte/advert/0202.mp3 new file mode 100644 index 0000000..683f126 Binary files /dev/null and b/SD-Karte/advert/0202.mp3 differ diff --git a/SD-Karte/advert/0203.mp3 b/SD-Karte/advert/0203.mp3 new file mode 100644 index 0000000..c1c07fe Binary files /dev/null and b/SD-Karte/advert/0203.mp3 differ diff --git a/SD-Karte/advert/0204.mp3 b/SD-Karte/advert/0204.mp3 new file mode 100644 index 0000000..aa41ca9 Binary files /dev/null and b/SD-Karte/advert/0204.mp3 differ diff --git a/SD-Karte/advert/0205.mp3 b/SD-Karte/advert/0205.mp3 new file mode 100644 index 0000000..4d9f1c3 Binary files /dev/null and b/SD-Karte/advert/0205.mp3 differ diff --git a/SD-Karte/advert/0206.mp3 b/SD-Karte/advert/0206.mp3 new file mode 100644 index 0000000..47b1cd5 Binary files /dev/null and b/SD-Karte/advert/0206.mp3 differ diff --git a/SD-Karte/advert/0207.mp3 b/SD-Karte/advert/0207.mp3 new file mode 100644 index 0000000..820c3c4 Binary files /dev/null and b/SD-Karte/advert/0207.mp3 differ diff --git a/SD-Karte/advert/0208.mp3 b/SD-Karte/advert/0208.mp3 new file mode 100644 index 0000000..967cb76 Binary files /dev/null and b/SD-Karte/advert/0208.mp3 differ diff --git a/SD-Karte/advert/0209.mp3 b/SD-Karte/advert/0209.mp3 new file mode 100644 index 0000000..82d54f5 Binary files /dev/null and b/SD-Karte/advert/0209.mp3 differ diff --git a/SD-Karte/advert/0210.mp3 b/SD-Karte/advert/0210.mp3 new file mode 100644 index 0000000..d1bc8a3 Binary files /dev/null and b/SD-Karte/advert/0210.mp3 differ diff --git a/SD-Karte/advert/0211.mp3 b/SD-Karte/advert/0211.mp3 new file mode 100644 index 0000000..b9369dc Binary files /dev/null and b/SD-Karte/advert/0211.mp3 differ diff --git a/SD-Karte/advert/0212.mp3 b/SD-Karte/advert/0212.mp3 new file mode 100644 index 0000000..689c742 Binary files /dev/null and b/SD-Karte/advert/0212.mp3 differ diff --git a/SD-Karte/advert/0213.mp3 b/SD-Karte/advert/0213.mp3 new file mode 100644 index 0000000..b8ac4c9 Binary files /dev/null and b/SD-Karte/advert/0213.mp3 differ diff --git a/SD-Karte/advert/0214.mp3 b/SD-Karte/advert/0214.mp3 new file mode 100644 index 0000000..d31f28a Binary files /dev/null and b/SD-Karte/advert/0214.mp3 differ diff --git a/SD-Karte/advert/0215.mp3 b/SD-Karte/advert/0215.mp3 new file mode 100644 index 0000000..4323602 Binary files /dev/null and b/SD-Karte/advert/0215.mp3 differ diff --git a/SD-Karte/advert/0216.mp3 b/SD-Karte/advert/0216.mp3 new file mode 100644 index 0000000..ce7a70e Binary files /dev/null and b/SD-Karte/advert/0216.mp3 differ diff --git a/SD-Karte/advert/0217.mp3 b/SD-Karte/advert/0217.mp3 new file mode 100644 index 0000000..1575284 Binary files /dev/null and b/SD-Karte/advert/0217.mp3 differ diff --git a/SD-Karte/advert/0218.mp3 b/SD-Karte/advert/0218.mp3 new file mode 100644 index 0000000..8ef5e88 Binary files /dev/null and b/SD-Karte/advert/0218.mp3 differ diff --git a/SD-Karte/advert/0219.mp3 b/SD-Karte/advert/0219.mp3 new file mode 100644 index 0000000..20f6611 Binary files /dev/null and b/SD-Karte/advert/0219.mp3 differ diff --git a/SD-Karte/advert/0220.mp3 b/SD-Karte/advert/0220.mp3 new file mode 100644 index 0000000..a124c9d Binary files /dev/null and b/SD-Karte/advert/0220.mp3 differ diff --git a/SD-Karte/advert/0221.mp3 b/SD-Karte/advert/0221.mp3 new file mode 100644 index 0000000..c84ad91 Binary files /dev/null and b/SD-Karte/advert/0221.mp3 differ diff --git a/SD-Karte/advert/0222.mp3 b/SD-Karte/advert/0222.mp3 new file mode 100644 index 0000000..5136dec Binary files /dev/null and b/SD-Karte/advert/0222.mp3 differ diff --git a/SD-Karte/advert/0223.mp3 b/SD-Karte/advert/0223.mp3 new file mode 100644 index 0000000..7d7216c Binary files /dev/null and b/SD-Karte/advert/0223.mp3 differ diff --git a/SD-Karte/advert/0224.mp3 b/SD-Karte/advert/0224.mp3 new file mode 100644 index 0000000..6fd4f89 Binary files /dev/null and b/SD-Karte/advert/0224.mp3 differ diff --git a/SD-Karte/advert/0225.mp3 b/SD-Karte/advert/0225.mp3 new file mode 100644 index 0000000..61beb61 Binary files /dev/null and b/SD-Karte/advert/0225.mp3 differ diff --git a/SD-Karte/advert/0226.mp3 b/SD-Karte/advert/0226.mp3 new file mode 100644 index 0000000..d7740b5 Binary files /dev/null and b/SD-Karte/advert/0226.mp3 differ diff --git a/SD-Karte/advert/0227.mp3 b/SD-Karte/advert/0227.mp3 new file mode 100644 index 0000000..c13fa1f Binary files /dev/null and b/SD-Karte/advert/0227.mp3 differ diff --git a/SD-Karte/advert/0228.mp3 b/SD-Karte/advert/0228.mp3 new file mode 100644 index 0000000..cc62720 Binary files /dev/null and b/SD-Karte/advert/0228.mp3 differ diff --git a/SD-Karte/advert/0229.mp3 b/SD-Karte/advert/0229.mp3 new file mode 100644 index 0000000..f62cc5c Binary files /dev/null and b/SD-Karte/advert/0229.mp3 differ diff --git a/SD-Karte/advert/0230.mp3 b/SD-Karte/advert/0230.mp3 new file mode 100644 index 0000000..4592e9d Binary files /dev/null and b/SD-Karte/advert/0230.mp3 differ diff --git a/SD-Karte/advert/0231.mp3 b/SD-Karte/advert/0231.mp3 new file mode 100644 index 0000000..ee72b28 Binary files /dev/null and b/SD-Karte/advert/0231.mp3 differ diff --git a/SD-Karte/advert/0232.mp3 b/SD-Karte/advert/0232.mp3 new file mode 100644 index 0000000..54e2b6a Binary files /dev/null and b/SD-Karte/advert/0232.mp3 differ diff --git a/SD-Karte/advert/0233.mp3 b/SD-Karte/advert/0233.mp3 new file mode 100644 index 0000000..8d4d454 Binary files /dev/null and b/SD-Karte/advert/0233.mp3 differ diff --git a/SD-Karte/advert/0234.mp3 b/SD-Karte/advert/0234.mp3 new file mode 100644 index 0000000..d3a85d4 Binary files /dev/null and b/SD-Karte/advert/0234.mp3 differ diff --git a/SD-Karte/advert/0235.mp3 b/SD-Karte/advert/0235.mp3 new file mode 100644 index 0000000..01591b7 Binary files /dev/null and b/SD-Karte/advert/0235.mp3 differ diff --git a/SD-Karte/advert/0236.mp3 b/SD-Karte/advert/0236.mp3 new file mode 100644 index 0000000..ea6be6d Binary files /dev/null and b/SD-Karte/advert/0236.mp3 differ diff --git a/SD-Karte/advert/0237.mp3 b/SD-Karte/advert/0237.mp3 new file mode 100644 index 0000000..0a7cfea Binary files /dev/null and b/SD-Karte/advert/0237.mp3 differ diff --git a/SD-Karte/advert/0238.mp3 b/SD-Karte/advert/0238.mp3 new file mode 100644 index 0000000..f0659cc Binary files /dev/null and b/SD-Karte/advert/0238.mp3 differ diff --git a/SD-Karte/advert/0239.mp3 b/SD-Karte/advert/0239.mp3 new file mode 100644 index 0000000..c8b3d1e Binary files /dev/null and b/SD-Karte/advert/0239.mp3 differ diff --git a/SD-Karte/advert/0240.mp3 b/SD-Karte/advert/0240.mp3 new file mode 100644 index 0000000..251a08f Binary files /dev/null and b/SD-Karte/advert/0240.mp3 differ diff --git a/SD-Karte/advert/0241.mp3 b/SD-Karte/advert/0241.mp3 new file mode 100644 index 0000000..f0363d9 Binary files /dev/null and b/SD-Karte/advert/0241.mp3 differ diff --git a/SD-Karte/advert/0242.mp3 b/SD-Karte/advert/0242.mp3 new file mode 100644 index 0000000..e28beca Binary files /dev/null and b/SD-Karte/advert/0242.mp3 differ diff --git a/SD-Karte/advert/0243.mp3 b/SD-Karte/advert/0243.mp3 new file mode 100644 index 0000000..b6f9b3a Binary files /dev/null and b/SD-Karte/advert/0243.mp3 differ diff --git a/SD-Karte/advert/0244.mp3 b/SD-Karte/advert/0244.mp3 new file mode 100644 index 0000000..01d2d78 Binary files /dev/null and b/SD-Karte/advert/0244.mp3 differ diff --git a/SD-Karte/advert/0245.mp3 b/SD-Karte/advert/0245.mp3 new file mode 100644 index 0000000..71db9d4 Binary files /dev/null and b/SD-Karte/advert/0245.mp3 differ diff --git a/SD-Karte/advert/0246.mp3 b/SD-Karte/advert/0246.mp3 new file mode 100644 index 0000000..f121509 Binary files /dev/null and b/SD-Karte/advert/0246.mp3 differ diff --git a/SD-Karte/advert/0247.mp3 b/SD-Karte/advert/0247.mp3 new file mode 100644 index 0000000..b86fad6 Binary files /dev/null and b/SD-Karte/advert/0247.mp3 differ diff --git a/SD-Karte/advert/0248.mp3 b/SD-Karte/advert/0248.mp3 new file mode 100644 index 0000000..226acef Binary files /dev/null and b/SD-Karte/advert/0248.mp3 differ diff --git a/SD-Karte/advert/0249.mp3 b/SD-Karte/advert/0249.mp3 new file mode 100644 index 0000000..e514b02 Binary files /dev/null and b/SD-Karte/advert/0249.mp3 differ diff --git a/SD-Karte/advert/0250.mp3 b/SD-Karte/advert/0250.mp3 new file mode 100644 index 0000000..02d0b65 Binary files /dev/null and b/SD-Karte/advert/0250.mp3 differ diff --git a/SD-Karte/mp3/0001.mp3 b/SD-Karte/mp3/0001.mp3 index 0f0ba66..bfc9491 100644 Binary files a/SD-Karte/mp3/0001.mp3 and b/SD-Karte/mp3/0001.mp3 differ diff --git a/SD-Karte/mp3/0002.mp3 b/SD-Karte/mp3/0002.mp3 index a827423..d6032cf 100644 Binary files a/SD-Karte/mp3/0002.mp3 and b/SD-Karte/mp3/0002.mp3 differ diff --git a/SD-Karte/mp3/0003.mp3 b/SD-Karte/mp3/0003.mp3 index eb74ff4..d070d27 100644 Binary files a/SD-Karte/mp3/0003.mp3 and b/SD-Karte/mp3/0003.mp3 differ diff --git a/SD-Karte/mp3/0004.mp3 b/SD-Karte/mp3/0004.mp3 index e7a053c..aa95d5a 100644 Binary files a/SD-Karte/mp3/0004.mp3 and b/SD-Karte/mp3/0004.mp3 differ diff --git a/SD-Karte/mp3/0005.mp3 b/SD-Karte/mp3/0005.mp3 index 376d8ef..588cddd 100644 Binary files a/SD-Karte/mp3/0005.mp3 and b/SD-Karte/mp3/0005.mp3 differ diff --git a/SD-Karte/mp3/0006.mp3 b/SD-Karte/mp3/0006.mp3 index 37b3279..c3fdb79 100644 Binary files a/SD-Karte/mp3/0006.mp3 and b/SD-Karte/mp3/0006.mp3 differ diff --git a/SD-Karte/mp3/0007.mp3 b/SD-Karte/mp3/0007.mp3 index a2819f1..fdf8fae 100644 Binary files a/SD-Karte/mp3/0007.mp3 and b/SD-Karte/mp3/0007.mp3 differ diff --git a/SD-Karte/mp3/0008.mp3 b/SD-Karte/mp3/0008.mp3 index e2fa89d..20e05e6 100644 Binary files a/SD-Karte/mp3/0008.mp3 and b/SD-Karte/mp3/0008.mp3 differ diff --git a/SD-Karte/mp3/0009.mp3 b/SD-Karte/mp3/0009.mp3 index 06859f3..96aaa63 100644 Binary files a/SD-Karte/mp3/0009.mp3 and b/SD-Karte/mp3/0009.mp3 differ diff --git a/SD-Karte/mp3/0010.mp3 b/SD-Karte/mp3/0010.mp3 index 04f2ffc..3b35b43 100644 Binary files a/SD-Karte/mp3/0010.mp3 and b/SD-Karte/mp3/0010.mp3 differ diff --git a/SD-Karte/mp3/0011.mp3 b/SD-Karte/mp3/0011.mp3 index 4333343..07c7197 100644 Binary files a/SD-Karte/mp3/0011.mp3 and b/SD-Karte/mp3/0011.mp3 differ diff --git a/SD-Karte/mp3/0012.mp3 b/SD-Karte/mp3/0012.mp3 index 1adc0bb..c85d0ce 100644 Binary files a/SD-Karte/mp3/0012.mp3 and b/SD-Karte/mp3/0012.mp3 differ diff --git a/SD-Karte/mp3/0013.mp3 b/SD-Karte/mp3/0013.mp3 index aae08aa..cb07d9f 100644 Binary files a/SD-Karte/mp3/0013.mp3 and b/SD-Karte/mp3/0013.mp3 differ diff --git a/SD-Karte/mp3/0014.mp3 b/SD-Karte/mp3/0014.mp3 index 4808450..c4dbdba 100644 Binary files a/SD-Karte/mp3/0014.mp3 and b/SD-Karte/mp3/0014.mp3 differ diff --git a/SD-Karte/mp3/0015.mp3 b/SD-Karte/mp3/0015.mp3 index 163f594..b9da66b 100644 Binary files a/SD-Karte/mp3/0015.mp3 and b/SD-Karte/mp3/0015.mp3 differ diff --git a/SD-Karte/mp3/0016.mp3 b/SD-Karte/mp3/0016.mp3 index 12f9944..0594a15 100644 Binary files a/SD-Karte/mp3/0016.mp3 and b/SD-Karte/mp3/0016.mp3 differ diff --git a/SD-Karte/mp3/0017.mp3 b/SD-Karte/mp3/0017.mp3 index c8417ac..6790b3f 100644 Binary files a/SD-Karte/mp3/0017.mp3 and b/SD-Karte/mp3/0017.mp3 differ diff --git a/SD-Karte/mp3/0018.mp3 b/SD-Karte/mp3/0018.mp3 index 834dd80..22e5d6d 100644 Binary files a/SD-Karte/mp3/0018.mp3 and b/SD-Karte/mp3/0018.mp3 differ diff --git a/SD-Karte/mp3/0019.mp3 b/SD-Karte/mp3/0019.mp3 index ee13e3b..b6d688c 100644 Binary files a/SD-Karte/mp3/0019.mp3 and b/SD-Karte/mp3/0019.mp3 differ diff --git a/SD-Karte/mp3/0020.mp3 b/SD-Karte/mp3/0020.mp3 index 6dd14e8..51ed75b 100644 Binary files a/SD-Karte/mp3/0020.mp3 and b/SD-Karte/mp3/0020.mp3 differ diff --git a/SD-Karte/mp3/0021.mp3 b/SD-Karte/mp3/0021.mp3 index 00c2c6e..2a65d9f 100644 Binary files a/SD-Karte/mp3/0021.mp3 and b/SD-Karte/mp3/0021.mp3 differ diff --git a/SD-Karte/mp3/0022.mp3 b/SD-Karte/mp3/0022.mp3 index 206f5ae..c768964 100644 Binary files a/SD-Karte/mp3/0022.mp3 and b/SD-Karte/mp3/0022.mp3 differ diff --git a/SD-Karte/mp3/0023.mp3 b/SD-Karte/mp3/0023.mp3 index 9ea9941..37e4451 100644 Binary files a/SD-Karte/mp3/0023.mp3 and b/SD-Karte/mp3/0023.mp3 differ diff --git a/SD-Karte/mp3/0024.mp3 b/SD-Karte/mp3/0024.mp3 index 182f06c..6316e07 100644 Binary files a/SD-Karte/mp3/0024.mp3 and b/SD-Karte/mp3/0024.mp3 differ diff --git a/SD-Karte/mp3/0025.mp3 b/SD-Karte/mp3/0025.mp3 index 47edb23..d71e056 100644 Binary files a/SD-Karte/mp3/0025.mp3 and b/SD-Karte/mp3/0025.mp3 differ diff --git a/SD-Karte/mp3/0026.mp3 b/SD-Karte/mp3/0026.mp3 index b4bc0bd..a1d80be 100644 Binary files a/SD-Karte/mp3/0026.mp3 and b/SD-Karte/mp3/0026.mp3 differ diff --git a/SD-Karte/mp3/0027.mp3 b/SD-Karte/mp3/0027.mp3 index 6616b51..d1a4ae4 100644 Binary files a/SD-Karte/mp3/0027.mp3 and b/SD-Karte/mp3/0027.mp3 differ diff --git a/SD-Karte/mp3/0028.mp3 b/SD-Karte/mp3/0028.mp3 index 291ee65..99c5428 100644 Binary files a/SD-Karte/mp3/0028.mp3 and b/SD-Karte/mp3/0028.mp3 differ diff --git a/SD-Karte/mp3/0029.mp3 b/SD-Karte/mp3/0029.mp3 index ab686dd..a0912e0 100644 Binary files a/SD-Karte/mp3/0029.mp3 and b/SD-Karte/mp3/0029.mp3 differ diff --git a/SD-Karte/mp3/0030.mp3 b/SD-Karte/mp3/0030.mp3 index 3286018..a3bd08c 100644 Binary files a/SD-Karte/mp3/0030.mp3 and b/SD-Karte/mp3/0030.mp3 differ diff --git a/SD-Karte/mp3/0031.mp3 b/SD-Karte/mp3/0031.mp3 index c03f020..cdf5f5c 100644 Binary files a/SD-Karte/mp3/0031.mp3 and b/SD-Karte/mp3/0031.mp3 differ diff --git a/SD-Karte/mp3/0032.mp3 b/SD-Karte/mp3/0032.mp3 index 3b763fb..7d14217 100644 Binary files a/SD-Karte/mp3/0032.mp3 and b/SD-Karte/mp3/0032.mp3 differ diff --git a/SD-Karte/mp3/0033.mp3 b/SD-Karte/mp3/0033.mp3 index cf20f3c..7859d41 100644 Binary files a/SD-Karte/mp3/0033.mp3 and b/SD-Karte/mp3/0033.mp3 differ diff --git a/SD-Karte/mp3/0034.mp3 b/SD-Karte/mp3/0034.mp3 index ab2f3a7..89e63c4 100644 Binary files a/SD-Karte/mp3/0034.mp3 and b/SD-Karte/mp3/0034.mp3 differ diff --git a/SD-Karte/mp3/0035.mp3 b/SD-Karte/mp3/0035.mp3 index 063f69d..7654c06 100644 Binary files a/SD-Karte/mp3/0035.mp3 and b/SD-Karte/mp3/0035.mp3 differ diff --git a/SD-Karte/mp3/0036.mp3 b/SD-Karte/mp3/0036.mp3 index d86c789..c4f2f93 100644 Binary files a/SD-Karte/mp3/0036.mp3 and b/SD-Karte/mp3/0036.mp3 differ diff --git a/SD-Karte/mp3/0037.mp3 b/SD-Karte/mp3/0037.mp3 index 31e68f2..83ee6ac 100644 Binary files a/SD-Karte/mp3/0037.mp3 and b/SD-Karte/mp3/0037.mp3 differ diff --git a/SD-Karte/mp3/0038.mp3 b/SD-Karte/mp3/0038.mp3 index df1e1ef..c6215f1 100644 Binary files a/SD-Karte/mp3/0038.mp3 and b/SD-Karte/mp3/0038.mp3 differ diff --git a/SD-Karte/mp3/0039.mp3 b/SD-Karte/mp3/0039.mp3 index ecfcfd3..5cc010d 100644 Binary files a/SD-Karte/mp3/0039.mp3 and b/SD-Karte/mp3/0039.mp3 differ diff --git a/SD-Karte/mp3/0040.mp3 b/SD-Karte/mp3/0040.mp3 index 4a979b8..ec60ffa 100644 Binary files a/SD-Karte/mp3/0040.mp3 and b/SD-Karte/mp3/0040.mp3 differ diff --git a/SD-Karte/mp3/0041.mp3 b/SD-Karte/mp3/0041.mp3 index f5ae286..42f57d9 100644 Binary files a/SD-Karte/mp3/0041.mp3 and b/SD-Karte/mp3/0041.mp3 differ diff --git a/SD-Karte/mp3/0042.mp3 b/SD-Karte/mp3/0042.mp3 index 0dc3fea..3572f9f 100644 Binary files a/SD-Karte/mp3/0042.mp3 and b/SD-Karte/mp3/0042.mp3 differ diff --git a/SD-Karte/mp3/0043.mp3 b/SD-Karte/mp3/0043.mp3 index 1c132a4..1610c92 100644 Binary files a/SD-Karte/mp3/0043.mp3 and b/SD-Karte/mp3/0043.mp3 differ diff --git a/SD-Karte/mp3/0044.mp3 b/SD-Karte/mp3/0044.mp3 index abdf503..ac93370 100644 Binary files a/SD-Karte/mp3/0044.mp3 and b/SD-Karte/mp3/0044.mp3 differ diff --git a/SD-Karte/mp3/0045.mp3 b/SD-Karte/mp3/0045.mp3 index 1a35ad4..9edae65 100644 Binary files a/SD-Karte/mp3/0045.mp3 and b/SD-Karte/mp3/0045.mp3 differ diff --git a/SD-Karte/mp3/0046.mp3 b/SD-Karte/mp3/0046.mp3 index 6728fb0..4123bd9 100644 Binary files a/SD-Karte/mp3/0046.mp3 and b/SD-Karte/mp3/0046.mp3 differ diff --git a/SD-Karte/mp3/0047.mp3 b/SD-Karte/mp3/0047.mp3 index be0623d..e3a4fe7 100644 Binary files a/SD-Karte/mp3/0047.mp3 and b/SD-Karte/mp3/0047.mp3 differ diff --git a/SD-Karte/mp3/0048.mp3 b/SD-Karte/mp3/0048.mp3 index db652ab..85265ab 100644 Binary files a/SD-Karte/mp3/0048.mp3 and b/SD-Karte/mp3/0048.mp3 differ diff --git a/SD-Karte/mp3/0049.mp3 b/SD-Karte/mp3/0049.mp3 index 24a5c56..c118db9 100644 Binary files a/SD-Karte/mp3/0049.mp3 and b/SD-Karte/mp3/0049.mp3 differ diff --git a/SD-Karte/mp3/0050.mp3 b/SD-Karte/mp3/0050.mp3 index dab8da3..122d035 100644 Binary files a/SD-Karte/mp3/0050.mp3 and b/SD-Karte/mp3/0050.mp3 differ diff --git a/SD-Karte/mp3/0051.mp3 b/SD-Karte/mp3/0051.mp3 index 14bf0a3..dd2437c 100644 Binary files a/SD-Karte/mp3/0051.mp3 and b/SD-Karte/mp3/0051.mp3 differ diff --git a/SD-Karte/mp3/0052.mp3 b/SD-Karte/mp3/0052.mp3 index cd3fa56..cd9da42 100644 Binary files a/SD-Karte/mp3/0052.mp3 and b/SD-Karte/mp3/0052.mp3 differ diff --git a/SD-Karte/mp3/0053.mp3 b/SD-Karte/mp3/0053.mp3 index 5c78a69..db544a0 100644 Binary files a/SD-Karte/mp3/0053.mp3 and b/SD-Karte/mp3/0053.mp3 differ diff --git a/SD-Karte/mp3/0054.mp3 b/SD-Karte/mp3/0054.mp3 index de3cc9b..a1226e9 100644 Binary files a/SD-Karte/mp3/0054.mp3 and b/SD-Karte/mp3/0054.mp3 differ diff --git a/SD-Karte/mp3/0055.mp3 b/SD-Karte/mp3/0055.mp3 index dd234d0..1df91ca 100644 Binary files a/SD-Karte/mp3/0055.mp3 and b/SD-Karte/mp3/0055.mp3 differ diff --git a/SD-Karte/mp3/0056.mp3 b/SD-Karte/mp3/0056.mp3 index 13b8cc9..9f72c55 100644 Binary files a/SD-Karte/mp3/0056.mp3 and b/SD-Karte/mp3/0056.mp3 differ diff --git a/SD-Karte/mp3/0057.mp3 b/SD-Karte/mp3/0057.mp3 index ed556d8..cbad187 100644 Binary files a/SD-Karte/mp3/0057.mp3 and b/SD-Karte/mp3/0057.mp3 differ diff --git a/SD-Karte/mp3/0058.mp3 b/SD-Karte/mp3/0058.mp3 index 05fc7aa..92ea462 100644 Binary files a/SD-Karte/mp3/0058.mp3 and b/SD-Karte/mp3/0058.mp3 differ diff --git a/SD-Karte/mp3/0059.mp3 b/SD-Karte/mp3/0059.mp3 index f703bc2..88e88f0 100644 Binary files a/SD-Karte/mp3/0059.mp3 and b/SD-Karte/mp3/0059.mp3 differ diff --git a/SD-Karte/mp3/0060.mp3 b/SD-Karte/mp3/0060.mp3 index cb76ed2..9b8d28b 100644 Binary files a/SD-Karte/mp3/0060.mp3 and b/SD-Karte/mp3/0060.mp3 differ diff --git a/SD-Karte/mp3/0061.mp3 b/SD-Karte/mp3/0061.mp3 index 0384d66..2356d1a 100644 Binary files a/SD-Karte/mp3/0061.mp3 and b/SD-Karte/mp3/0061.mp3 differ diff --git a/SD-Karte/mp3/0062.mp3 b/SD-Karte/mp3/0062.mp3 index c3ad5b0..94f183d 100644 Binary files a/SD-Karte/mp3/0062.mp3 and b/SD-Karte/mp3/0062.mp3 differ diff --git a/SD-Karte/mp3/0063.mp3 b/SD-Karte/mp3/0063.mp3 index 93a000b..8e1e5aa 100644 Binary files a/SD-Karte/mp3/0063.mp3 and b/SD-Karte/mp3/0063.mp3 differ diff --git a/SD-Karte/mp3/0064.mp3 b/SD-Karte/mp3/0064.mp3 index 7fb4b6c..9323dd8 100644 Binary files a/SD-Karte/mp3/0064.mp3 and b/SD-Karte/mp3/0064.mp3 differ diff --git a/SD-Karte/mp3/0065.mp3 b/SD-Karte/mp3/0065.mp3 index e95b7cc..4e7f598 100644 Binary files a/SD-Karte/mp3/0065.mp3 and b/SD-Karte/mp3/0065.mp3 differ diff --git a/SD-Karte/mp3/0066.mp3 b/SD-Karte/mp3/0066.mp3 index 6bc7d0f..415d61e 100644 Binary files a/SD-Karte/mp3/0066.mp3 and b/SD-Karte/mp3/0066.mp3 differ diff --git a/SD-Karte/mp3/0067.mp3 b/SD-Karte/mp3/0067.mp3 index f36f8ff..92a8c41 100644 Binary files a/SD-Karte/mp3/0067.mp3 and b/SD-Karte/mp3/0067.mp3 differ diff --git a/SD-Karte/mp3/0068.mp3 b/SD-Karte/mp3/0068.mp3 index 850aa72..0d62867 100644 Binary files a/SD-Karte/mp3/0068.mp3 and b/SD-Karte/mp3/0068.mp3 differ diff --git a/SD-Karte/mp3/0069.mp3 b/SD-Karte/mp3/0069.mp3 index 92d2e70..a111ec3 100644 Binary files a/SD-Karte/mp3/0069.mp3 and b/SD-Karte/mp3/0069.mp3 differ diff --git a/SD-Karte/mp3/0070.mp3 b/SD-Karte/mp3/0070.mp3 index e5f23b1..2230a2f 100644 Binary files a/SD-Karte/mp3/0070.mp3 and b/SD-Karte/mp3/0070.mp3 differ diff --git a/SD-Karte/mp3/0071.mp3 b/SD-Karte/mp3/0071.mp3 index 25247bc..8239c9e 100644 Binary files a/SD-Karte/mp3/0071.mp3 and b/SD-Karte/mp3/0071.mp3 differ diff --git a/SD-Karte/mp3/0072.mp3 b/SD-Karte/mp3/0072.mp3 index c939de6..5e9a066 100644 Binary files a/SD-Karte/mp3/0072.mp3 and b/SD-Karte/mp3/0072.mp3 differ diff --git a/SD-Karte/mp3/0073.mp3 b/SD-Karte/mp3/0073.mp3 index 6c47a8d..33254d3 100644 Binary files a/SD-Karte/mp3/0073.mp3 and b/SD-Karte/mp3/0073.mp3 differ diff --git a/SD-Karte/mp3/0074.mp3 b/SD-Karte/mp3/0074.mp3 index 479732a..bd2b487 100644 Binary files a/SD-Karte/mp3/0074.mp3 and b/SD-Karte/mp3/0074.mp3 differ diff --git a/SD-Karte/mp3/0075.mp3 b/SD-Karte/mp3/0075.mp3 index 1fcc703..8d86177 100644 Binary files a/SD-Karte/mp3/0075.mp3 and b/SD-Karte/mp3/0075.mp3 differ diff --git a/SD-Karte/mp3/0076.mp3 b/SD-Karte/mp3/0076.mp3 index d898a5b..d4d24e5 100644 Binary files a/SD-Karte/mp3/0076.mp3 and b/SD-Karte/mp3/0076.mp3 differ diff --git a/SD-Karte/mp3/0077.mp3 b/SD-Karte/mp3/0077.mp3 index 1798091..4651465 100644 Binary files a/SD-Karte/mp3/0077.mp3 and b/SD-Karte/mp3/0077.mp3 differ diff --git a/SD-Karte/mp3/0078.mp3 b/SD-Karte/mp3/0078.mp3 index 7e31d67..b65c65d 100644 Binary files a/SD-Karte/mp3/0078.mp3 and b/SD-Karte/mp3/0078.mp3 differ diff --git a/SD-Karte/mp3/0079.mp3 b/SD-Karte/mp3/0079.mp3 index e2ecf7c..a62e95d 100644 Binary files a/SD-Karte/mp3/0079.mp3 and b/SD-Karte/mp3/0079.mp3 differ diff --git a/SD-Karte/mp3/0080.mp3 b/SD-Karte/mp3/0080.mp3 index 1cc4651..912ef30 100644 Binary files a/SD-Karte/mp3/0080.mp3 and b/SD-Karte/mp3/0080.mp3 differ diff --git a/SD-Karte/mp3/0081.mp3 b/SD-Karte/mp3/0081.mp3 index 482bda1..4b16f75 100644 Binary files a/SD-Karte/mp3/0081.mp3 and b/SD-Karte/mp3/0081.mp3 differ diff --git a/SD-Karte/mp3/0082.mp3 b/SD-Karte/mp3/0082.mp3 index 43d1847..af74fea 100644 Binary files a/SD-Karte/mp3/0082.mp3 and b/SD-Karte/mp3/0082.mp3 differ diff --git a/SD-Karte/mp3/0083.mp3 b/SD-Karte/mp3/0083.mp3 index 120126d..35b954f 100644 Binary files a/SD-Karte/mp3/0083.mp3 and b/SD-Karte/mp3/0083.mp3 differ diff --git a/SD-Karte/mp3/0084.mp3 b/SD-Karte/mp3/0084.mp3 index 6d7f92e..fa23d66 100644 Binary files a/SD-Karte/mp3/0084.mp3 and b/SD-Karte/mp3/0084.mp3 differ diff --git a/SD-Karte/mp3/0085.mp3 b/SD-Karte/mp3/0085.mp3 index 6eff52e..2cb80fb 100644 Binary files a/SD-Karte/mp3/0085.mp3 and b/SD-Karte/mp3/0085.mp3 differ diff --git a/SD-Karte/mp3/0086.mp3 b/SD-Karte/mp3/0086.mp3 index 408f813..f926775 100644 Binary files a/SD-Karte/mp3/0086.mp3 and b/SD-Karte/mp3/0086.mp3 differ diff --git a/SD-Karte/mp3/0087.mp3 b/SD-Karte/mp3/0087.mp3 index b52aa86..b913709 100644 Binary files a/SD-Karte/mp3/0087.mp3 and b/SD-Karte/mp3/0087.mp3 differ diff --git a/SD-Karte/mp3/0088.mp3 b/SD-Karte/mp3/0088.mp3 index 233620d..26f3fa7 100644 Binary files a/SD-Karte/mp3/0088.mp3 and b/SD-Karte/mp3/0088.mp3 differ diff --git a/SD-Karte/mp3/0089.mp3 b/SD-Karte/mp3/0089.mp3 index 2144a9f..8e13291 100644 Binary files a/SD-Karte/mp3/0089.mp3 and b/SD-Karte/mp3/0089.mp3 differ diff --git a/SD-Karte/mp3/0090.mp3 b/SD-Karte/mp3/0090.mp3 index 7679111..80b4027 100644 Binary files a/SD-Karte/mp3/0090.mp3 and b/SD-Karte/mp3/0090.mp3 differ diff --git a/SD-Karte/mp3/0091.mp3 b/SD-Karte/mp3/0091.mp3 index 69ea839..d013c00 100644 Binary files a/SD-Karte/mp3/0091.mp3 and b/SD-Karte/mp3/0091.mp3 differ diff --git a/SD-Karte/mp3/0092.mp3 b/SD-Karte/mp3/0092.mp3 index 5c080fe..fb3caa5 100644 Binary files a/SD-Karte/mp3/0092.mp3 and b/SD-Karte/mp3/0092.mp3 differ diff --git a/SD-Karte/mp3/0093.mp3 b/SD-Karte/mp3/0093.mp3 index f9eb2db..128073d 100644 Binary files a/SD-Karte/mp3/0093.mp3 and b/SD-Karte/mp3/0093.mp3 differ diff --git a/SD-Karte/mp3/0094.mp3 b/SD-Karte/mp3/0094.mp3 index 7711fd7..a07def4 100644 Binary files a/SD-Karte/mp3/0094.mp3 and b/SD-Karte/mp3/0094.mp3 differ diff --git a/SD-Karte/mp3/0095.mp3 b/SD-Karte/mp3/0095.mp3 index b8e98cd..a4f5f8e 100644 Binary files a/SD-Karte/mp3/0095.mp3 and b/SD-Karte/mp3/0095.mp3 differ diff --git a/SD-Karte/mp3/0096.mp3 b/SD-Karte/mp3/0096.mp3 index 818fcb6..f7d88df 100644 Binary files a/SD-Karte/mp3/0096.mp3 and b/SD-Karte/mp3/0096.mp3 differ diff --git a/SD-Karte/mp3/0097.mp3 b/SD-Karte/mp3/0097.mp3 index 1daf98a..8113f1c 100644 Binary files a/SD-Karte/mp3/0097.mp3 and b/SD-Karte/mp3/0097.mp3 differ diff --git a/SD-Karte/mp3/0098.mp3 b/SD-Karte/mp3/0098.mp3 index 1ff4331..f56ba08 100644 Binary files a/SD-Karte/mp3/0098.mp3 and b/SD-Karte/mp3/0098.mp3 differ diff --git a/SD-Karte/mp3/0099.mp3 b/SD-Karte/mp3/0099.mp3 index af55b2f..a80ac96 100644 Binary files a/SD-Karte/mp3/0099.mp3 and b/SD-Karte/mp3/0099.mp3 differ diff --git a/SD-Karte/mp3/0100.mp3 b/SD-Karte/mp3/0100.mp3 index 9a76b0b..a33450b 100644 Binary files a/SD-Karte/mp3/0100.mp3 and b/SD-Karte/mp3/0100.mp3 differ diff --git a/SD-Karte/mp3/0101.mp3 b/SD-Karte/mp3/0101.mp3 index e1437cb..70ffd3f 100644 Binary files a/SD-Karte/mp3/0101.mp3 and b/SD-Karte/mp3/0101.mp3 differ diff --git a/SD-Karte/mp3/0102.mp3 b/SD-Karte/mp3/0102.mp3 index 59449e4..d9bf64a 100644 Binary files a/SD-Karte/mp3/0102.mp3 and b/SD-Karte/mp3/0102.mp3 differ diff --git a/SD-Karte/mp3/0103.mp3 b/SD-Karte/mp3/0103.mp3 index cb21355..5d6f6c9 100644 Binary files a/SD-Karte/mp3/0103.mp3 and b/SD-Karte/mp3/0103.mp3 differ diff --git a/SD-Karte/mp3/0104.mp3 b/SD-Karte/mp3/0104.mp3 index 9857a8e..2fb891c 100644 Binary files a/SD-Karte/mp3/0104.mp3 and b/SD-Karte/mp3/0104.mp3 differ diff --git a/SD-Karte/mp3/0105.mp3 b/SD-Karte/mp3/0105.mp3 new file mode 100644 index 0000000..24f26ca Binary files /dev/null and b/SD-Karte/mp3/0105.mp3 differ diff --git a/SD-Karte/mp3/0106.mp3 b/SD-Karte/mp3/0106.mp3 new file mode 100644 index 0000000..c53f04a Binary files /dev/null and b/SD-Karte/mp3/0106.mp3 differ diff --git a/SD-Karte/mp3/0107.mp3 b/SD-Karte/mp3/0107.mp3 new file mode 100644 index 0000000..7af0b9b Binary files /dev/null and b/SD-Karte/mp3/0107.mp3 differ diff --git a/SD-Karte/mp3/0108.mp3 b/SD-Karte/mp3/0108.mp3 new file mode 100644 index 0000000..9e18a09 Binary files /dev/null and b/SD-Karte/mp3/0108.mp3 differ diff --git a/SD-Karte/mp3/0109.mp3 b/SD-Karte/mp3/0109.mp3 new file mode 100644 index 0000000..9b73ae8 Binary files /dev/null and b/SD-Karte/mp3/0109.mp3 differ diff --git a/SD-Karte/mp3/0110.mp3 b/SD-Karte/mp3/0110.mp3 index 6f87e20..60358e2 100644 Binary files a/SD-Karte/mp3/0110.mp3 and b/SD-Karte/mp3/0110.mp3 differ diff --git a/SD-Karte/mp3/0111.mp3 b/SD-Karte/mp3/0111.mp3 new file mode 100644 index 0000000..a45c4cf Binary files /dev/null and b/SD-Karte/mp3/0111.mp3 differ diff --git a/SD-Karte/mp3/0112.mp3 b/SD-Karte/mp3/0112.mp3 new file mode 100644 index 0000000..506abc5 Binary files /dev/null and b/SD-Karte/mp3/0112.mp3 differ diff --git a/SD-Karte/mp3/0113.mp3 b/SD-Karte/mp3/0113.mp3 new file mode 100644 index 0000000..ecdbc1c Binary files /dev/null and b/SD-Karte/mp3/0113.mp3 differ diff --git a/SD-Karte/mp3/0114.mp3 b/SD-Karte/mp3/0114.mp3 new file mode 100644 index 0000000..48007f5 Binary files /dev/null and b/SD-Karte/mp3/0114.mp3 differ diff --git a/SD-Karte/mp3/0115.mp3 b/SD-Karte/mp3/0115.mp3 new file mode 100644 index 0000000..0492d4a Binary files /dev/null and b/SD-Karte/mp3/0115.mp3 differ diff --git a/SD-Karte/mp3/0116.mp3 b/SD-Karte/mp3/0116.mp3 new file mode 100644 index 0000000..15a3298 Binary files /dev/null and b/SD-Karte/mp3/0116.mp3 differ diff --git a/SD-Karte/mp3/0117.mp3 b/SD-Karte/mp3/0117.mp3 new file mode 100644 index 0000000..eee3646 Binary files /dev/null and b/SD-Karte/mp3/0117.mp3 differ diff --git a/SD-Karte/mp3/0118.mp3 b/SD-Karte/mp3/0118.mp3 new file mode 100644 index 0000000..e96d0a9 Binary files /dev/null and b/SD-Karte/mp3/0118.mp3 differ diff --git a/SD-Karte/mp3/0119.mp3 b/SD-Karte/mp3/0119.mp3 new file mode 100644 index 0000000..c903c54 Binary files /dev/null and b/SD-Karte/mp3/0119.mp3 differ diff --git a/SD-Karte/mp3/0120.mp3 b/SD-Karte/mp3/0120.mp3 new file mode 100644 index 0000000..9e5fc49 Binary files /dev/null and b/SD-Karte/mp3/0120.mp3 differ diff --git a/SD-Karte/mp3/0121.mp3 b/SD-Karte/mp3/0121.mp3 new file mode 100644 index 0000000..42542db Binary files /dev/null and b/SD-Karte/mp3/0121.mp3 differ diff --git a/SD-Karte/mp3/0122.mp3 b/SD-Karte/mp3/0122.mp3 new file mode 100644 index 0000000..53d93e7 Binary files /dev/null and b/SD-Karte/mp3/0122.mp3 differ diff --git a/SD-Karte/mp3/0123.mp3 b/SD-Karte/mp3/0123.mp3 new file mode 100644 index 0000000..1b5940b Binary files /dev/null and b/SD-Karte/mp3/0123.mp3 differ diff --git a/SD-Karte/mp3/0124.mp3 b/SD-Karte/mp3/0124.mp3 new file mode 100644 index 0000000..128a9e1 Binary files /dev/null and b/SD-Karte/mp3/0124.mp3 differ diff --git a/SD-Karte/mp3/0125.mp3 b/SD-Karte/mp3/0125.mp3 new file mode 100644 index 0000000..e62896f Binary files /dev/null and b/SD-Karte/mp3/0125.mp3 differ diff --git a/SD-Karte/mp3/0126.mp3 b/SD-Karte/mp3/0126.mp3 new file mode 100644 index 0000000..8563d5f Binary files /dev/null and b/SD-Karte/mp3/0126.mp3 differ diff --git a/SD-Karte/mp3/0127.mp3 b/SD-Karte/mp3/0127.mp3 new file mode 100644 index 0000000..c3745a3 Binary files /dev/null and b/SD-Karte/mp3/0127.mp3 differ diff --git a/SD-Karte/mp3/0128.mp3 b/SD-Karte/mp3/0128.mp3 new file mode 100644 index 0000000..3f0c52f Binary files /dev/null and b/SD-Karte/mp3/0128.mp3 differ diff --git a/SD-Karte/mp3/0129.mp3 b/SD-Karte/mp3/0129.mp3 new file mode 100644 index 0000000..d53f08a Binary files /dev/null and b/SD-Karte/mp3/0129.mp3 differ diff --git a/SD-Karte/mp3/0130.mp3 b/SD-Karte/mp3/0130.mp3 new file mode 100644 index 0000000..fc7e9b8 Binary files /dev/null and b/SD-Karte/mp3/0130.mp3 differ diff --git a/SD-Karte/mp3/0131.mp3 b/SD-Karte/mp3/0131.mp3 new file mode 100644 index 0000000..cfa3e1c Binary files /dev/null and b/SD-Karte/mp3/0131.mp3 differ diff --git a/SD-Karte/mp3/0132.mp3 b/SD-Karte/mp3/0132.mp3 new file mode 100644 index 0000000..25a4104 Binary files /dev/null and b/SD-Karte/mp3/0132.mp3 differ diff --git a/SD-Karte/mp3/0133.mp3 b/SD-Karte/mp3/0133.mp3 new file mode 100644 index 0000000..b459f47 Binary files /dev/null and b/SD-Karte/mp3/0133.mp3 differ diff --git a/SD-Karte/mp3/0134.mp3 b/SD-Karte/mp3/0134.mp3 new file mode 100644 index 0000000..da26c36 Binary files /dev/null and b/SD-Karte/mp3/0134.mp3 differ diff --git a/SD-Karte/mp3/0135.mp3 b/SD-Karte/mp3/0135.mp3 new file mode 100644 index 0000000..8d56ee6 Binary files /dev/null and b/SD-Karte/mp3/0135.mp3 differ diff --git a/SD-Karte/mp3/0136.mp3 b/SD-Karte/mp3/0136.mp3 new file mode 100644 index 0000000..28cc873 Binary files /dev/null and b/SD-Karte/mp3/0136.mp3 differ diff --git a/SD-Karte/mp3/0137.mp3 b/SD-Karte/mp3/0137.mp3 new file mode 100644 index 0000000..93b02b7 Binary files /dev/null and b/SD-Karte/mp3/0137.mp3 differ diff --git a/SD-Karte/mp3/0138.mp3 b/SD-Karte/mp3/0138.mp3 new file mode 100644 index 0000000..3c9d585 Binary files /dev/null and b/SD-Karte/mp3/0138.mp3 differ diff --git a/SD-Karte/mp3/0139.mp3 b/SD-Karte/mp3/0139.mp3 new file mode 100644 index 0000000..d06fdaf Binary files /dev/null and b/SD-Karte/mp3/0139.mp3 differ diff --git a/SD-Karte/mp3/0140.mp3 b/SD-Karte/mp3/0140.mp3 new file mode 100644 index 0000000..f061c0f Binary files /dev/null and b/SD-Karte/mp3/0140.mp3 differ diff --git a/SD-Karte/mp3/0141.mp3 b/SD-Karte/mp3/0141.mp3 new file mode 100644 index 0000000..c6b90c1 Binary files /dev/null and b/SD-Karte/mp3/0141.mp3 differ diff --git a/SD-Karte/mp3/0142.mp3 b/SD-Karte/mp3/0142.mp3 new file mode 100644 index 0000000..44ee176 Binary files /dev/null and b/SD-Karte/mp3/0142.mp3 differ diff --git a/SD-Karte/mp3/0143.mp3 b/SD-Karte/mp3/0143.mp3 new file mode 100644 index 0000000..3d5cf89 Binary files /dev/null and b/SD-Karte/mp3/0143.mp3 differ diff --git a/SD-Karte/mp3/0144.mp3 b/SD-Karte/mp3/0144.mp3 new file mode 100644 index 0000000..24cf32a Binary files /dev/null and b/SD-Karte/mp3/0144.mp3 differ diff --git a/SD-Karte/mp3/0145.mp3 b/SD-Karte/mp3/0145.mp3 new file mode 100644 index 0000000..b33fdb8 Binary files /dev/null and b/SD-Karte/mp3/0145.mp3 differ diff --git a/SD-Karte/mp3/0146.mp3 b/SD-Karte/mp3/0146.mp3 new file mode 100644 index 0000000..445b8b9 Binary files /dev/null and b/SD-Karte/mp3/0146.mp3 differ diff --git a/SD-Karte/mp3/0147.mp3 b/SD-Karte/mp3/0147.mp3 new file mode 100644 index 0000000..5967c36 Binary files /dev/null and b/SD-Karte/mp3/0147.mp3 differ diff --git a/SD-Karte/mp3/0148.mp3 b/SD-Karte/mp3/0148.mp3 new file mode 100644 index 0000000..5746c57 Binary files /dev/null and b/SD-Karte/mp3/0148.mp3 differ diff --git a/SD-Karte/mp3/0149.mp3 b/SD-Karte/mp3/0149.mp3 new file mode 100644 index 0000000..aa8fd30 Binary files /dev/null and b/SD-Karte/mp3/0149.mp3 differ diff --git a/SD-Karte/mp3/0150.mp3 b/SD-Karte/mp3/0150.mp3 new file mode 100644 index 0000000..edc3d1c Binary files /dev/null and b/SD-Karte/mp3/0150.mp3 differ diff --git a/SD-Karte/mp3/0151.mp3 b/SD-Karte/mp3/0151.mp3 new file mode 100644 index 0000000..382da42 Binary files /dev/null and b/SD-Karte/mp3/0151.mp3 differ diff --git a/SD-Karte/mp3/0152.mp3 b/SD-Karte/mp3/0152.mp3 new file mode 100644 index 0000000..a9f3b06 Binary files /dev/null and b/SD-Karte/mp3/0152.mp3 differ diff --git a/SD-Karte/mp3/0153.mp3 b/SD-Karte/mp3/0153.mp3 new file mode 100644 index 0000000..0dd5661 Binary files /dev/null and b/SD-Karte/mp3/0153.mp3 differ diff --git a/SD-Karte/mp3/0154.mp3 b/SD-Karte/mp3/0154.mp3 new file mode 100644 index 0000000..9796c47 Binary files /dev/null and b/SD-Karte/mp3/0154.mp3 differ diff --git a/SD-Karte/mp3/0155.mp3 b/SD-Karte/mp3/0155.mp3 new file mode 100644 index 0000000..bfc9921 Binary files /dev/null and b/SD-Karte/mp3/0155.mp3 differ diff --git a/SD-Karte/mp3/0156.mp3 b/SD-Karte/mp3/0156.mp3 new file mode 100644 index 0000000..8d6bf3d Binary files /dev/null and b/SD-Karte/mp3/0156.mp3 differ diff --git a/SD-Karte/mp3/0157.mp3 b/SD-Karte/mp3/0157.mp3 new file mode 100644 index 0000000..630d5aa Binary files /dev/null and b/SD-Karte/mp3/0157.mp3 differ diff --git a/SD-Karte/mp3/0158.mp3 b/SD-Karte/mp3/0158.mp3 new file mode 100644 index 0000000..f317be6 Binary files /dev/null and b/SD-Karte/mp3/0158.mp3 differ diff --git a/SD-Karte/mp3/0159.mp3 b/SD-Karte/mp3/0159.mp3 new file mode 100644 index 0000000..629c3af Binary files /dev/null and b/SD-Karte/mp3/0159.mp3 differ diff --git a/SD-Karte/mp3/0160.mp3 b/SD-Karte/mp3/0160.mp3 new file mode 100644 index 0000000..cfbee5f Binary files /dev/null and b/SD-Karte/mp3/0160.mp3 differ diff --git a/SD-Karte/mp3/0161.mp3 b/SD-Karte/mp3/0161.mp3 new file mode 100644 index 0000000..35c80d2 Binary files /dev/null and b/SD-Karte/mp3/0161.mp3 differ diff --git a/SD-Karte/mp3/0162.mp3 b/SD-Karte/mp3/0162.mp3 new file mode 100644 index 0000000..3d9983d Binary files /dev/null and b/SD-Karte/mp3/0162.mp3 differ diff --git a/SD-Karte/mp3/0163.mp3 b/SD-Karte/mp3/0163.mp3 new file mode 100644 index 0000000..5a566e9 Binary files /dev/null and b/SD-Karte/mp3/0163.mp3 differ diff --git a/SD-Karte/mp3/0164.mp3 b/SD-Karte/mp3/0164.mp3 new file mode 100644 index 0000000..2b87b57 Binary files /dev/null and b/SD-Karte/mp3/0164.mp3 differ diff --git a/SD-Karte/mp3/0165.mp3 b/SD-Karte/mp3/0165.mp3 new file mode 100644 index 0000000..9a5d500 Binary files /dev/null and b/SD-Karte/mp3/0165.mp3 differ diff --git a/SD-Karte/mp3/0166.mp3 b/SD-Karte/mp3/0166.mp3 new file mode 100644 index 0000000..cdd462f Binary files /dev/null and b/SD-Karte/mp3/0166.mp3 differ diff --git a/SD-Karte/mp3/0167.mp3 b/SD-Karte/mp3/0167.mp3 new file mode 100644 index 0000000..e44fab6 Binary files /dev/null and b/SD-Karte/mp3/0167.mp3 differ diff --git a/SD-Karte/mp3/0168.mp3 b/SD-Karte/mp3/0168.mp3 new file mode 100644 index 0000000..d063a9e Binary files /dev/null and b/SD-Karte/mp3/0168.mp3 differ diff --git a/SD-Karte/mp3/0169.mp3 b/SD-Karte/mp3/0169.mp3 new file mode 100644 index 0000000..877161f Binary files /dev/null and b/SD-Karte/mp3/0169.mp3 differ diff --git a/SD-Karte/mp3/0170.mp3 b/SD-Karte/mp3/0170.mp3 new file mode 100644 index 0000000..2777bd4 Binary files /dev/null and b/SD-Karte/mp3/0170.mp3 differ diff --git a/SD-Karte/mp3/0171.mp3 b/SD-Karte/mp3/0171.mp3 new file mode 100644 index 0000000..fd061c9 Binary files /dev/null and b/SD-Karte/mp3/0171.mp3 differ diff --git a/SD-Karte/mp3/0172.mp3 b/SD-Karte/mp3/0172.mp3 new file mode 100644 index 0000000..489920f Binary files /dev/null and b/SD-Karte/mp3/0172.mp3 differ diff --git a/SD-Karte/mp3/0173.mp3 b/SD-Karte/mp3/0173.mp3 new file mode 100644 index 0000000..b7fbea9 Binary files /dev/null and b/SD-Karte/mp3/0173.mp3 differ diff --git a/SD-Karte/mp3/0174.mp3 b/SD-Karte/mp3/0174.mp3 new file mode 100644 index 0000000..f4f60b8 Binary files /dev/null and b/SD-Karte/mp3/0174.mp3 differ diff --git a/SD-Karte/mp3/0175.mp3 b/SD-Karte/mp3/0175.mp3 new file mode 100644 index 0000000..a326614 Binary files /dev/null and b/SD-Karte/mp3/0175.mp3 differ diff --git a/SD-Karte/mp3/0176.mp3 b/SD-Karte/mp3/0176.mp3 new file mode 100644 index 0000000..d3dccfa Binary files /dev/null and b/SD-Karte/mp3/0176.mp3 differ diff --git a/SD-Karte/mp3/0177.mp3 b/SD-Karte/mp3/0177.mp3 new file mode 100644 index 0000000..8c5b4d9 Binary files /dev/null and b/SD-Karte/mp3/0177.mp3 differ diff --git a/SD-Karte/mp3/0178.mp3 b/SD-Karte/mp3/0178.mp3 new file mode 100644 index 0000000..057e7bb Binary files /dev/null and b/SD-Karte/mp3/0178.mp3 differ diff --git a/SD-Karte/mp3/0179.mp3 b/SD-Karte/mp3/0179.mp3 new file mode 100644 index 0000000..76fec36 Binary files /dev/null and b/SD-Karte/mp3/0179.mp3 differ diff --git a/SD-Karte/mp3/0180.mp3 b/SD-Karte/mp3/0180.mp3 new file mode 100644 index 0000000..d7bbad6 Binary files /dev/null and b/SD-Karte/mp3/0180.mp3 differ diff --git a/SD-Karte/mp3/0181.mp3 b/SD-Karte/mp3/0181.mp3 new file mode 100644 index 0000000..ab56b9b Binary files /dev/null and b/SD-Karte/mp3/0181.mp3 differ diff --git a/SD-Karte/mp3/0182.mp3 b/SD-Karte/mp3/0182.mp3 new file mode 100644 index 0000000..12fd9f0 Binary files /dev/null and b/SD-Karte/mp3/0182.mp3 differ diff --git a/SD-Karte/mp3/0183.mp3 b/SD-Karte/mp3/0183.mp3 new file mode 100644 index 0000000..b00e938 Binary files /dev/null and b/SD-Karte/mp3/0183.mp3 differ diff --git a/SD-Karte/mp3/0184.mp3 b/SD-Karte/mp3/0184.mp3 new file mode 100644 index 0000000..e1b49f5 Binary files /dev/null and b/SD-Karte/mp3/0184.mp3 differ diff --git a/SD-Karte/mp3/0185.mp3 b/SD-Karte/mp3/0185.mp3 new file mode 100644 index 0000000..7783be4 Binary files /dev/null and b/SD-Karte/mp3/0185.mp3 differ diff --git a/SD-Karte/mp3/0186.mp3 b/SD-Karte/mp3/0186.mp3 new file mode 100644 index 0000000..b5766af Binary files /dev/null and b/SD-Karte/mp3/0186.mp3 differ diff --git a/SD-Karte/mp3/0187.mp3 b/SD-Karte/mp3/0187.mp3 new file mode 100644 index 0000000..67587f8 Binary files /dev/null and b/SD-Karte/mp3/0187.mp3 differ diff --git a/SD-Karte/mp3/0188.mp3 b/SD-Karte/mp3/0188.mp3 new file mode 100644 index 0000000..dc7a740 Binary files /dev/null and b/SD-Karte/mp3/0188.mp3 differ diff --git a/SD-Karte/mp3/0189.mp3 b/SD-Karte/mp3/0189.mp3 new file mode 100644 index 0000000..5ffb605 Binary files /dev/null and b/SD-Karte/mp3/0189.mp3 differ diff --git a/SD-Karte/mp3/0190.mp3 b/SD-Karte/mp3/0190.mp3 new file mode 100644 index 0000000..e18d2de Binary files /dev/null and b/SD-Karte/mp3/0190.mp3 differ diff --git a/SD-Karte/mp3/0191.mp3 b/SD-Karte/mp3/0191.mp3 new file mode 100644 index 0000000..2438a32 Binary files /dev/null and b/SD-Karte/mp3/0191.mp3 differ diff --git a/SD-Karte/mp3/0192.mp3 b/SD-Karte/mp3/0192.mp3 new file mode 100644 index 0000000..71e69a4 Binary files /dev/null and b/SD-Karte/mp3/0192.mp3 differ diff --git a/SD-Karte/mp3/0193.mp3 b/SD-Karte/mp3/0193.mp3 new file mode 100644 index 0000000..a1dfb1b Binary files /dev/null and b/SD-Karte/mp3/0193.mp3 differ diff --git a/SD-Karte/mp3/0194.mp3 b/SD-Karte/mp3/0194.mp3 new file mode 100644 index 0000000..6998724 Binary files /dev/null and b/SD-Karte/mp3/0194.mp3 differ diff --git a/SD-Karte/mp3/0195.mp3 b/SD-Karte/mp3/0195.mp3 new file mode 100644 index 0000000..15ab494 Binary files /dev/null and b/SD-Karte/mp3/0195.mp3 differ diff --git a/SD-Karte/mp3/0196.mp3 b/SD-Karte/mp3/0196.mp3 new file mode 100644 index 0000000..341fb2a Binary files /dev/null and b/SD-Karte/mp3/0196.mp3 differ diff --git a/SD-Karte/mp3/0197.mp3 b/SD-Karte/mp3/0197.mp3 new file mode 100644 index 0000000..b1e609c Binary files /dev/null and b/SD-Karte/mp3/0197.mp3 differ diff --git a/SD-Karte/mp3/0198.mp3 b/SD-Karte/mp3/0198.mp3 new file mode 100644 index 0000000..20adeec Binary files /dev/null and b/SD-Karte/mp3/0198.mp3 differ diff --git a/SD-Karte/mp3/0199.mp3 b/SD-Karte/mp3/0199.mp3 new file mode 100644 index 0000000..b136b38 Binary files /dev/null and b/SD-Karte/mp3/0199.mp3 differ diff --git a/SD-Karte/mp3/0200.mp3 b/SD-Karte/mp3/0200.mp3 new file mode 100644 index 0000000..d0a003f Binary files /dev/null and b/SD-Karte/mp3/0200.mp3 differ diff --git a/SD-Karte/mp3/0201.mp3 b/SD-Karte/mp3/0201.mp3 new file mode 100644 index 0000000..5ed5690 Binary files /dev/null and b/SD-Karte/mp3/0201.mp3 differ diff --git a/SD-Karte/mp3/0202.mp3 b/SD-Karte/mp3/0202.mp3 new file mode 100644 index 0000000..683f126 Binary files /dev/null and b/SD-Karte/mp3/0202.mp3 differ diff --git a/SD-Karte/mp3/0203.mp3 b/SD-Karte/mp3/0203.mp3 new file mode 100644 index 0000000..c1c07fe Binary files /dev/null and b/SD-Karte/mp3/0203.mp3 differ diff --git a/SD-Karte/mp3/0204.mp3 b/SD-Karte/mp3/0204.mp3 new file mode 100644 index 0000000..aa41ca9 Binary files /dev/null and b/SD-Karte/mp3/0204.mp3 differ diff --git a/SD-Karte/mp3/0205.mp3 b/SD-Karte/mp3/0205.mp3 new file mode 100644 index 0000000..4d9f1c3 Binary files /dev/null and b/SD-Karte/mp3/0205.mp3 differ diff --git a/SD-Karte/mp3/0206.mp3 b/SD-Karte/mp3/0206.mp3 new file mode 100644 index 0000000..47b1cd5 Binary files /dev/null and b/SD-Karte/mp3/0206.mp3 differ diff --git a/SD-Karte/mp3/0207.mp3 b/SD-Karte/mp3/0207.mp3 new file mode 100644 index 0000000..820c3c4 Binary files /dev/null and b/SD-Karte/mp3/0207.mp3 differ diff --git a/SD-Karte/mp3/0208.mp3 b/SD-Karte/mp3/0208.mp3 new file mode 100644 index 0000000..967cb76 Binary files /dev/null and b/SD-Karte/mp3/0208.mp3 differ diff --git a/SD-Karte/mp3/0209.mp3 b/SD-Karte/mp3/0209.mp3 new file mode 100644 index 0000000..82d54f5 Binary files /dev/null and b/SD-Karte/mp3/0209.mp3 differ diff --git a/SD-Karte/mp3/0210.mp3 b/SD-Karte/mp3/0210.mp3 new file mode 100644 index 0000000..d1bc8a3 Binary files /dev/null and b/SD-Karte/mp3/0210.mp3 differ diff --git a/SD-Karte/mp3/0211.mp3 b/SD-Karte/mp3/0211.mp3 new file mode 100644 index 0000000..b9369dc Binary files /dev/null and b/SD-Karte/mp3/0211.mp3 differ diff --git a/SD-Karte/mp3/0212.mp3 b/SD-Karte/mp3/0212.mp3 new file mode 100644 index 0000000..689c742 Binary files /dev/null and b/SD-Karte/mp3/0212.mp3 differ diff --git a/SD-Karte/mp3/0213.mp3 b/SD-Karte/mp3/0213.mp3 new file mode 100644 index 0000000..b8ac4c9 Binary files /dev/null and b/SD-Karte/mp3/0213.mp3 differ diff --git a/SD-Karte/mp3/0214.mp3 b/SD-Karte/mp3/0214.mp3 new file mode 100644 index 0000000..d31f28a Binary files /dev/null and b/SD-Karte/mp3/0214.mp3 differ diff --git a/SD-Karte/mp3/0215.mp3 b/SD-Karte/mp3/0215.mp3 new file mode 100644 index 0000000..4323602 Binary files /dev/null and b/SD-Karte/mp3/0215.mp3 differ diff --git a/SD-Karte/mp3/0216.mp3 b/SD-Karte/mp3/0216.mp3 new file mode 100644 index 0000000..ce7a70e Binary files /dev/null and b/SD-Karte/mp3/0216.mp3 differ diff --git a/SD-Karte/mp3/0217.mp3 b/SD-Karte/mp3/0217.mp3 new file mode 100644 index 0000000..1575284 Binary files /dev/null and b/SD-Karte/mp3/0217.mp3 differ diff --git a/SD-Karte/mp3/0218.mp3 b/SD-Karte/mp3/0218.mp3 new file mode 100644 index 0000000..8ef5e88 Binary files /dev/null and b/SD-Karte/mp3/0218.mp3 differ diff --git a/SD-Karte/mp3/0219.mp3 b/SD-Karte/mp3/0219.mp3 new file mode 100644 index 0000000..20f6611 Binary files /dev/null and b/SD-Karte/mp3/0219.mp3 differ diff --git a/SD-Karte/mp3/0220.mp3 b/SD-Karte/mp3/0220.mp3 new file mode 100644 index 0000000..a124c9d Binary files /dev/null and b/SD-Karte/mp3/0220.mp3 differ diff --git a/SD-Karte/mp3/0221.mp3 b/SD-Karte/mp3/0221.mp3 new file mode 100644 index 0000000..c84ad91 Binary files /dev/null and b/SD-Karte/mp3/0221.mp3 differ diff --git a/SD-Karte/mp3/0222.mp3 b/SD-Karte/mp3/0222.mp3 new file mode 100644 index 0000000..5136dec Binary files /dev/null and b/SD-Karte/mp3/0222.mp3 differ diff --git a/SD-Karte/mp3/0223.mp3 b/SD-Karte/mp3/0223.mp3 new file mode 100644 index 0000000..7d7216c Binary files /dev/null and b/SD-Karte/mp3/0223.mp3 differ diff --git a/SD-Karte/mp3/0224.mp3 b/SD-Karte/mp3/0224.mp3 new file mode 100644 index 0000000..6fd4f89 Binary files /dev/null and b/SD-Karte/mp3/0224.mp3 differ diff --git a/SD-Karte/mp3/0225.mp3 b/SD-Karte/mp3/0225.mp3 new file mode 100644 index 0000000..61beb61 Binary files /dev/null and b/SD-Karte/mp3/0225.mp3 differ diff --git a/SD-Karte/mp3/0226.mp3 b/SD-Karte/mp3/0226.mp3 new file mode 100644 index 0000000..d7740b5 Binary files /dev/null and b/SD-Karte/mp3/0226.mp3 differ diff --git a/SD-Karte/mp3/0227.mp3 b/SD-Karte/mp3/0227.mp3 new file mode 100644 index 0000000..c13fa1f Binary files /dev/null and b/SD-Karte/mp3/0227.mp3 differ diff --git a/SD-Karte/mp3/0228.mp3 b/SD-Karte/mp3/0228.mp3 new file mode 100644 index 0000000..cc62720 Binary files /dev/null and b/SD-Karte/mp3/0228.mp3 differ diff --git a/SD-Karte/mp3/0229.mp3 b/SD-Karte/mp3/0229.mp3 new file mode 100644 index 0000000..f62cc5c Binary files /dev/null and b/SD-Karte/mp3/0229.mp3 differ diff --git a/SD-Karte/mp3/0230.mp3 b/SD-Karte/mp3/0230.mp3 new file mode 100644 index 0000000..4592e9d Binary files /dev/null and b/SD-Karte/mp3/0230.mp3 differ diff --git a/SD-Karte/mp3/0231.mp3 b/SD-Karte/mp3/0231.mp3 new file mode 100644 index 0000000..ee72b28 Binary files /dev/null and b/SD-Karte/mp3/0231.mp3 differ diff --git a/SD-Karte/mp3/0232.mp3 b/SD-Karte/mp3/0232.mp3 new file mode 100644 index 0000000..54e2b6a Binary files /dev/null and b/SD-Karte/mp3/0232.mp3 differ diff --git a/SD-Karte/mp3/0233.mp3 b/SD-Karte/mp3/0233.mp3 new file mode 100644 index 0000000..8d4d454 Binary files /dev/null and b/SD-Karte/mp3/0233.mp3 differ diff --git a/SD-Karte/mp3/0234.mp3 b/SD-Karte/mp3/0234.mp3 new file mode 100644 index 0000000..d3a85d4 Binary files /dev/null and b/SD-Karte/mp3/0234.mp3 differ diff --git a/SD-Karte/mp3/0235.mp3 b/SD-Karte/mp3/0235.mp3 new file mode 100644 index 0000000..01591b7 Binary files /dev/null and b/SD-Karte/mp3/0235.mp3 differ diff --git a/SD-Karte/mp3/0236.mp3 b/SD-Karte/mp3/0236.mp3 new file mode 100644 index 0000000..ea6be6d Binary files /dev/null and b/SD-Karte/mp3/0236.mp3 differ diff --git a/SD-Karte/mp3/0237.mp3 b/SD-Karte/mp3/0237.mp3 new file mode 100644 index 0000000..0a7cfea Binary files /dev/null and b/SD-Karte/mp3/0237.mp3 differ diff --git a/SD-Karte/mp3/0238.mp3 b/SD-Karte/mp3/0238.mp3 new file mode 100644 index 0000000..f0659cc Binary files /dev/null and b/SD-Karte/mp3/0238.mp3 differ diff --git a/SD-Karte/mp3/0239.mp3 b/SD-Karte/mp3/0239.mp3 new file mode 100644 index 0000000..c8b3d1e Binary files /dev/null and b/SD-Karte/mp3/0239.mp3 differ diff --git a/SD-Karte/mp3/0240.mp3 b/SD-Karte/mp3/0240.mp3 new file mode 100644 index 0000000..251a08f Binary files /dev/null and b/SD-Karte/mp3/0240.mp3 differ diff --git a/SD-Karte/mp3/0241.mp3 b/SD-Karte/mp3/0241.mp3 new file mode 100644 index 0000000..f0363d9 Binary files /dev/null and b/SD-Karte/mp3/0241.mp3 differ diff --git a/SD-Karte/mp3/0242.mp3 b/SD-Karte/mp3/0242.mp3 new file mode 100644 index 0000000..e28beca Binary files /dev/null and b/SD-Karte/mp3/0242.mp3 differ diff --git a/SD-Karte/mp3/0243.mp3 b/SD-Karte/mp3/0243.mp3 new file mode 100644 index 0000000..b6f9b3a Binary files /dev/null and b/SD-Karte/mp3/0243.mp3 differ diff --git a/SD-Karte/mp3/0244.mp3 b/SD-Karte/mp3/0244.mp3 new file mode 100644 index 0000000..01d2d78 Binary files /dev/null and b/SD-Karte/mp3/0244.mp3 differ diff --git a/SD-Karte/mp3/0245.mp3 b/SD-Karte/mp3/0245.mp3 new file mode 100644 index 0000000..71db9d4 Binary files /dev/null and b/SD-Karte/mp3/0245.mp3 differ diff --git a/SD-Karte/mp3/0246.mp3 b/SD-Karte/mp3/0246.mp3 new file mode 100644 index 0000000..f121509 Binary files /dev/null and b/SD-Karte/mp3/0246.mp3 differ diff --git a/SD-Karte/mp3/0247.mp3 b/SD-Karte/mp3/0247.mp3 new file mode 100644 index 0000000..b86fad6 Binary files /dev/null and b/SD-Karte/mp3/0247.mp3 differ diff --git a/SD-Karte/mp3/0248.mp3 b/SD-Karte/mp3/0248.mp3 new file mode 100644 index 0000000..226acef Binary files /dev/null and b/SD-Karte/mp3/0248.mp3 differ diff --git a/SD-Karte/mp3/0249.mp3 b/SD-Karte/mp3/0249.mp3 new file mode 100644 index 0000000..e514b02 Binary files /dev/null and b/SD-Karte/mp3/0249.mp3 differ diff --git a/SD-Karte/mp3/0250.mp3 b/SD-Karte/mp3/0250.mp3 new file mode 100644 index 0000000..02d0b65 Binary files /dev/null and b/SD-Karte/mp3/0250.mp3 differ diff --git a/SD-Karte/mp3/0300_new_tag.mp3 b/SD-Karte/mp3/0300_new_tag.mp3 new file mode 100644 index 0000000..a70ea8c Binary files /dev/null and b/SD-Karte/mp3/0300_new_tag.mp3 differ diff --git a/SD-Karte/mp3/0310.mp3 b/SD-Karte/mp3/0310.mp3 new file mode 100644 index 0000000..68f0d60 Binary files /dev/null and b/SD-Karte/mp3/0310.mp3 differ diff --git a/SD-Karte/mp3/0311_mode_random_episode.mp3 b/SD-Karte/mp3/0311_mode_random_episode.mp3 new file mode 100644 index 0000000..b68644e Binary files /dev/null and b/SD-Karte/mp3/0311_mode_random_episode.mp3 differ diff --git a/SD-Karte/mp3/0312_mode_album.mp3 b/SD-Karte/mp3/0312_mode_album.mp3 new file mode 100644 index 0000000..c82f5c7 Binary files /dev/null and b/SD-Karte/mp3/0312_mode_album.mp3 differ diff --git a/SD-Karte/mp3/0313_mode_party.mp3 b/SD-Karte/mp3/0313_mode_party.mp3 new file mode 100644 index 0000000..90dae77 Binary files /dev/null and b/SD-Karte/mp3/0313_mode_party.mp3 differ diff --git a/SD-Karte/mp3/0314_mode_sigle_track.mp3 b/SD-Karte/mp3/0314_mode_sigle_track.mp3 new file mode 100644 index 0000000..8d78d6a Binary files /dev/null and b/SD-Karte/mp3/0314_mode_sigle_track.mp3 differ diff --git a/SD-Karte/mp3/0315_node_audio_book.mp3 b/SD-Karte/mp3/0315_node_audio_book.mp3 new file mode 100644 index 0000000..79e5130 Binary files /dev/null and b/SD-Karte/mp3/0315_node_audio_book.mp3 differ diff --git a/SD-Karte/mp3/0316_admin.mp3 b/SD-Karte/mp3/0316_admin.mp3 new file mode 100644 index 0000000..ba1a1be Binary files /dev/null and b/SD-Karte/mp3/0316_admin.mp3 differ diff --git a/SD-Karte/mp3/0320_select_file.mp3 b/SD-Karte/mp3/0320_select_file.mp3 new file mode 100644 index 0000000..8ef4a32 Binary files /dev/null and b/SD-Karte/mp3/0320_select_file.mp3 differ diff --git a/SD-Karte/mp3/0330.mp3 b/SD-Karte/mp3/0330.mp3 new file mode 100644 index 0000000..e8ca617 Binary files /dev/null and b/SD-Karte/mp3/0330.mp3 differ diff --git a/SD-Karte/mp3/0331.mp3 b/SD-Karte/mp3/0331.mp3 new file mode 100644 index 0000000..02c6d78 Binary files /dev/null and b/SD-Karte/mp3/0331.mp3 differ diff --git a/SD-Karte/mp3/0332.mp3 b/SD-Karte/mp3/0332.mp3 new file mode 100644 index 0000000..2370dd5 Binary files /dev/null and b/SD-Karte/mp3/0332.mp3 differ diff --git a/SD-Karte/mp3/0400.mp3 b/SD-Karte/mp3/0400.mp3 new file mode 100644 index 0000000..148fca3 Binary files /dev/null and b/SD-Karte/mp3/0400.mp3 differ diff --git a/SD-Karte/mp3/0800_reset_tag.mp3 b/SD-Karte/mp3/0800_reset_tag.mp3 new file mode 100644 index 0000000..3bb0f07 Binary files /dev/null and b/SD-Karte/mp3/0800_reset_tag.mp3 differ diff --git a/SD-Karte/mp3/0801_reset_tag_ok.mp3 b/SD-Karte/mp3/0801_reset_tag_ok.mp3 new file mode 100644 index 0000000..041093b Binary files /dev/null and b/SD-Karte/mp3/0801_reset_tag_ok.mp3 differ diff --git a/SD-Karte/mp3/0802_reset_aborted.mp3 b/SD-Karte/mp3/0802_reset_aborted.mp3 new file mode 100644 index 0000000..50322e6 Binary files /dev/null and b/SD-Karte/mp3/0802_reset_aborted.mp3 differ diff --git a/SD-Karte/mp3/0999_reset_ok.mp3 b/SD-Karte/mp3/0999_reset_ok.mp3 new file mode 100644 index 0000000..b5d50fc Binary files /dev/null and b/SD-Karte/mp3/0999_reset_ok.mp3 differ diff --git a/Tonuino.ino b/Tonuino.ino new file mode 100644 index 0000000..e48a2a5 --- /dev/null +++ b/Tonuino.ino @@ -0,0 +1,557 @@ +#include +#include +#include +#include +#include +#include + +// DFPlayer Mini +SoftwareSerial mySoftwareSerial(2, 3); // RX, TX +uint16_t numTracksInFolder; +uint16_t track; + +// this object stores nfc tag data +struct nfcTagObject { + uint32_t cookie; + uint8_t version; + uint8_t folder; + uint8_t mode; + uint8_t special; +}; + +nfcTagObject myCard; + +static void nextTrack(); +int voiceMenu(int numberOfOptions, int startMessage, int messageOffset, + bool preview = false, int previewFromFolder = 0); + +bool knownCard = false; + +// implement a notification class, +// its member methods will get called +// +class Mp3Notify { +public: + static void OnError(uint16_t errorCode) { + // see DfMp3_Error for code meaning + Serial.println(); + Serial.print("Com Error "); + Serial.println(errorCode); + } + static void OnPlayFinished(uint16_t track) { + Serial.print("Track beendet"); + Serial.println(track); + delay(100); + nextTrack(); + } + static void OnCardOnline(uint16_t code) { + Serial.println(F("SD Karte online ")); + } + static void OnCardInserted(uint16_t code) { + Serial.println(F("SD Karte bereit ")); + } + static void OnCardRemoved(uint16_t code) { + Serial.println(F("SD Karte entfernt ")); + } +}; + +static DFMiniMp3 mp3(mySoftwareSerial); + +// Leider kann das Modul keine Queue abspielen. +static void nextTrack() { + if (knownCard == false) + // Wenn eine neue Karte angelernt wird soll das Ende eines Tracks nicht + // verarbeitet werden + return; + + if (myCard.mode == 1) { + Serial.println(F("Hörspielmodus ist aktiv -> Strom sparen")); + mp3.sleep(); + } + if (myCard.mode == 2) { + if (track != numTracksInFolder) { + track = track + 1; + mp3.playFolderTrack(myCard.folder, track); + Serial.print(F("Albummodus ist aktiv -> nächster Track: ")); + Serial.print(track); + } else + mp3.sleep(); + } + if (myCard.mode == 3) { + track = random(1, numTracksInFolder + 1); + Serial.print(F("Party Modus ist aktiv -> zufälligen Track spielen: ")); + Serial.println(track); + mp3.playFolderTrack(myCard.folder, track); + } + if (myCard.mode == 4) { + Serial.println(F("Einzel Modus aktiv -> Strom sparen")); + mp3.sleep(); + } + if (myCard.mode == 5) { + if (track != numTracksInFolder) { + track = track + 1; + Serial.print(F("Hörbuch Modus ist aktiv -> nächster Track und " + "Fortschritt speichern")); + Serial.println(track); + mp3.playFolderTrack(myCard.folder, track); + // Fortschritt im EEPROM abspeichern + EEPROM.write(myCard.folder, track); + } else + mp3.sleep(); + } +} + +static void previousTrack() { + if (myCard.mode == 1) { + Serial.println(F("Hörspielmodus ist aktiv -> Track von vorne spielen")); + mp3.playFolderTrack(myCard.folder, track); + } + if (myCard.mode == 2) { + Serial.println(F("Albummodus ist aktiv -> vorheriger Track")); + if (track != 1) { + track = track - 1; + } + mp3.playFolderTrack(myCard.folder, track); + } + if (myCard.mode == 3) { + Serial.println(F("Party Modus ist aktiv -> Track von vorne spielen")); + mp3.playFolderTrack(myCard.folder, track); + } + if (myCard.mode == 4) { + Serial.println(F("Einzel Modus aktiv -> Track von vorne spielen")); + mp3.playFolderTrack(myCard.folder, track); + } + if (myCard.mode == 5) { + Serial.println(F("Hörbuch Modus ist aktiv -> vorheriger Track und " + "Fortschritt speichern")); + if (track != 1) { + track = track - 1; + } + mp3.playFolderTrack(myCard.folder, track); + // Fortschritt im EEPROM abspeichern + EEPROM.write(myCard.folder, track); + } +} + +// MFRC522 +#define RST_PIN 9 // Configurable, see typical pin layout above +#define SS_PIN 10 // Configurable, see typical pin layout above +MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 +MFRC522::MIFARE_Key key; +bool successRead; +byte sector = 1; +byte blockAddr = 4; +byte trailerBlock = 7; +MFRC522::StatusCode status; + +#define buttonPause A0 +#define buttonUp A1 +#define buttonDown A2 +#define busyPin 4 + +#define LONG_PRESS 1000 + +Button pauseButton(buttonPause); +Button upButton(buttonUp); +Button downButton(buttonDown); +bool ignorePauseButton = false; +bool ignoreUpButton = false; +bool ignoreDownButton = false; + +uint8_t numberOfCards = 0; + +bool isPlaying() { return !digitalRead(busyPin); } + +void setup() { + + Serial.begin(115200); // Es gibt ein paar Debug Ausgaben über die serielle + // Schnittstelle + randomSeed(analogRead(A0)); // Zufallsgenerator initialisieren + + Serial.println(F("TonUINO Version 2.0")); + Serial.println(F("(c) Thorsten Voß")); + + // Knöpfe mit PullUp + pinMode(buttonPause, INPUT_PULLUP); + pinMode(buttonUp, INPUT_PULLUP); + pinMode(buttonDown, INPUT_PULLUP); + + // Busy Pin + pinMode(busyPin, INPUT); + + // DFPlayer Mini initialisieren + mp3.begin(); + mp3.setVolume(15); + + // NFC Leser initialisieren + SPI.begin(); // Init SPI bus + mfrc522.PCD_Init(); // Init MFRC522 + mfrc522 + .PCD_DumpVersionToSerial(); // Show details of PCD - MFRC522 Card Reader + for (byte i = 0; i < 6; i++) { + key.keyByte[i] = 0xFF; + } + + // RESET --- ALLE DREI KNÖPFE BEIM STARTEN GEDRÜCKT HALTEN -> alle bekannten + // Karten werden gelöscht + if (digitalRead(buttonPause) == LOW && digitalRead(buttonUp) == LOW && + digitalRead(buttonDown) == LOW) { + Serial.println(F("Reset -> EEPROM wird gelöscht")); + for (int i = 0; i < EEPROM.length(); i++) { + EEPROM.write(i, 0); + } + } + +} + +void loop() { + do { + mp3.loop(); + // Buttons werden nun über JS_Button gehandelt, dadurch kann jede Taste + // doppelt belegt werden + pauseButton.read(); + upButton.read(); + downButton.read(); + + if (pauseButton.wasReleased()) { + if (ignorePauseButton == false) + if (isPlaying()) + mp3.pause(); + else + mp3.start(); + ignorePauseButton = false; + } else if (pauseButton.pressedFor(LONG_PRESS) && + ignorePauseButton == false) { + if (isPlaying()) + mp3.playAdvertisement(track); + else { + knownCard = false; + mp3.playMp3FolderTrack(800); + Serial.println(F("Karte resetten...")); + resetCard(); + mfrc522.PICC_HaltA(); + mfrc522.PCD_StopCrypto1(); + } + ignorePauseButton = true; + } + + if (upButton.pressedFor(LONG_PRESS)) { + Serial.println(F("Volume Up")); + mp3.increaseVolume(); + ignoreUpButton = true; + } else if (upButton.wasReleased()) { + if (!ignoreUpButton) + nextTrack(); + else + ignoreUpButton = false; + } + + if (downButton.pressedFor(LONG_PRESS)) { + Serial.println(F("Volume Down")); + mp3.decreaseVolume(); + ignoreDownButton = true; + } else if (downButton.wasReleased()) { + if (!ignoreDownButton) + previousTrack(); + else + ignoreDownButton = false; + } + // Ende der Buttons + } while (!mfrc522.PICC_IsNewCardPresent()); + + // RFID Karte wurde aufgelegt + + if (!mfrc522.PICC_ReadCardSerial()) + return; + + if (readCard(&myCard) == true) { + if (myCard.cookie == 322417479 && myCard.folder != 0 && myCard.mode != 0) { + + knownCard = true; + numTracksInFolder = mp3.getFolderTrackCount(myCard.folder); + + // Hörspielmodus: eine zufällige Datei aus dem Ordner + if (myCard.mode == 1) { + Serial.println(F("Hörspielmodus -> zufälligen Track wiedergeben")); + track = random(1, numTracksInFolder + 1); + Serial.println(track); + mp3.playFolderTrack(myCard.folder, track); + } + // Album Modus: kompletten Ordner spielen + if (myCard.mode == 2) { + Serial.println(F("Album Modus -> kompletten Ordner wiedergeben")); + track = 1; + mp3.playFolderTrack(myCard.folder, track); + } + // Party Modus: Ordner in zufälliger Reihenfolge + if (myCard.mode == 3) { + Serial.println( + F("Party Modus -> Ordner in zufälliger Reihenfolge wiedergeben")); + track = random(1, numTracksInFolder + 1); + mp3.playFolderTrack(myCard.folder, track); + } + // Einzel Modus: eine Datei aus dem Ordner abspielen + if (myCard.mode == 4) { + Serial.println( + F("Einzel Modus -> eine Datei aus dem Odrdner abspielen")); + track = myCard.special; + mp3.playFolderTrack(myCard.folder, track); + } + // Hörbuch Modus: kompletten Ordner spielen und Fortschritt merken + if (myCard.mode == 5) { + Serial.println(F("Hörbuch Modus -> kompletten Ordner spielen und " + "Fortschritt merken")); + track = EEPROM.read(myCard.folder); + mp3.playFolderTrack(myCard.folder, track); + } + } + + // Neue Karte konfigurieren + else { + knownCard = false; + setupCard(); + } + } + mfrc522.PICC_HaltA(); + mfrc522.PCD_StopCrypto1(); +} + +int voiceMenu(int numberOfOptions, int startMessage, int messageOffset, + bool preview = false, int previewFromFolder = 0) { + int returnValue = 0; + if (startMessage != 0) + mp3.playMp3FolderTrack(startMessage); + do { + pauseButton.read(); + upButton.read(); + downButton.read(); + mp3.loop(); + if (pauseButton.wasPressed()) { + if (returnValue != 0) + return returnValue; + delay(1000); + } + + if (upButton.pressedFor(LONG_PRESS)) { + returnValue = min(returnValue + 10, numberOfOptions); + mp3.playMp3FolderTrack(messageOffset + returnValue); + delay(1000); + if (preview) { + do { + delay(10); + } while (isPlaying()); + if (previewFromFolder == 0) + mp3.playFolderTrack(returnValue, 1); + else + mp3.playFolderTrack(previewFromFolder, returnValue); + } + ignoreUpButton = true; + } else if (upButton.wasReleased()) { + if (!ignoreUpButton) { + returnValue = min(returnValue + 1, numberOfOptions); + mp3.playMp3FolderTrack(messageOffset + returnValue); + delay(1000); + if (preview) { + do { + delay(10); + } while (isPlaying()); + if (previewFromFolder == 0) + mp3.playFolderTrack(returnValue, 1); + else + mp3.playFolderTrack(previewFromFolder, returnValue); + } + } else + ignoreUpButton = false; + } + + if (downButton.pressedFor(LONG_PRESS)) { + returnValue = max(returnValue - 10, 1); + mp3.playMp3FolderTrack(messageOffset + returnValue); + delay(1000); + if (preview) { + do { + delay(10); + } while (isPlaying()); + if (previewFromFolder == 0) + mp3.playFolderTrack(returnValue, 1); + else + mp3.playFolderTrack(previewFromFolder, returnValue); + } + ignoreDownButton = true; + } else if (downButton.wasReleased()) { + if (!ignoreDownButton) { + returnValue = max(returnValue - 1, 1); + mp3.playMp3FolderTrack(messageOffset + returnValue); + delay(1000); + if (preview) { + do { + delay(10); + } while (isPlaying()); + if (previewFromFolder == 0) + mp3.playFolderTrack(returnValue, 1); + else + mp3.playFolderTrack(previewFromFolder, returnValue); + } + } else + ignoreDownButton = false; + } + } while (true); +} + +void resetCard() { + do { + pauseButton.read(); + upButton.read(); + downButton.read(); + + if (upButton.wasReleased() || downButton.wasReleased()) { + Serial.print(F("Abgebrochen!")); + mp3.playMp3FolderTrack(802); + return; + } + } while (!mfrc522.PICC_IsNewCardPresent()); + + if (!mfrc522.PICC_ReadCardSerial()) + return; + + Serial.print(F("Karte wird neu Konfiguriert!")); + setupCard(); +} + +void setupCard() { + mp3.pause(); + Serial.print(F("Neue Karte konfigurieren")); + + // Ordner abfragen + myCard.folder = voiceMenu(99, 300, 0, true); + + // Wiedergabemodus abfragen + myCard.mode = voiceMenu(6, 310, 310); + + // Hörbuchmodus -> Fortschritt im EEPROM auf 1 setzen + EEPROM.write(myCard.folder,1); + + // Einzelmodus -> Datei abfragen + if (myCard.mode == 4) + myCard.special = voiceMenu(mp3.getFolderTrackCount(myCard.folder), 320, 0, + true, myCard.folder); + + // Admin Funktionen + if (myCard.mode == 6) + myCard.special = voiceMenu(3, 320, 320); + + // Karte ist konfiguriert -> speichern + mp3.playMp3FolderTrack(400); + writeCard(myCard); +} + +bool readCard(nfcTagObject *nfcTag) { + bool returnValue = true; + // Show some details of the PICC (that is: the tag/card) + Serial.print(F("Card UID:")); + dump_byte_array(mfrc522.uid.uidByte, mfrc522.uid.size); + Serial.println(); + Serial.print(F("PICC type: ")); + MFRC522::PICC_Type piccType = mfrc522.PICC_GetType(mfrc522.uid.sak); + Serial.println(mfrc522.PICC_GetTypeName(piccType)); + + byte buffer[18]; + byte size = sizeof(buffer); + + // Authenticate using key A + Serial.println(F("Authenticating using key A...")); + status = (MFRC522::StatusCode)mfrc522.PCD_Authenticate( + MFRC522::PICC_CMD_MF_AUTH_KEY_A, trailerBlock, &key, &(mfrc522.uid)); + if (status != MFRC522::STATUS_OK) { + returnValue = false; + Serial.print(F("PCD_Authenticate() failed: ")); + Serial.println(mfrc522.GetStatusCodeName(status)); + return; + } + + // Show the whole sector as it currently is + Serial.println(F("Current data in sector:")); + mfrc522.PICC_DumpMifareClassicSectorToSerial(&(mfrc522.uid), &key, sector); + Serial.println(); + + // Read data from the block + Serial.print(F("Reading data from block ")); + Serial.print(blockAddr); + Serial.println(F(" ...")); + status = (MFRC522::StatusCode)mfrc522.MIFARE_Read(blockAddr, buffer, &size); + if (status != MFRC522::STATUS_OK) { + returnValue = false; + Serial.print(F("MIFARE_Read() failed: ")); + Serial.println(mfrc522.GetStatusCodeName(status)); + } + Serial.print(F("Data in block ")); + Serial.print(blockAddr); + Serial.println(F(":")); + dump_byte_array(buffer, 16); + Serial.println(); + Serial.println(); + + uint32_t tempCookie; + tempCookie = (uint32_t)buffer[0] << 24; + tempCookie += (uint32_t)buffer[1] << 16; + tempCookie += (uint32_t)buffer[2] << 8; + tempCookie += (uint32_t)buffer[3]; + + nfcTag->cookie = tempCookie; + nfcTag->version = buffer[4]; + nfcTag->folder = buffer[5]; + nfcTag->mode = buffer[6]; + nfcTag->special = buffer[7]; + + return returnValue; +} + +void writeCard(nfcTagObject nfcTag) { + MFRC522::PICC_Type mifareType; + byte buffer[16] = {0x13, 0x37, 0xb3, 0x47, // 0x1337 0xb347 magic cookie to + // identify our nfc tags + 0x01, // version 1 + nfcTag.folder, // the folder picked by the user + nfcTag.mode, // the playback mode picked by the user + nfcTag.special, // track or function for admin cards + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; + + byte size = sizeof(buffer); + + mifareType = mfrc522.PICC_GetType(mfrc522.uid.sak); + + // Authenticate using key B + Serial.println(F("Authenticating again using key B...")); + status = (MFRC522::StatusCode)mfrc522.PCD_Authenticate( + MFRC522::PICC_CMD_MF_AUTH_KEY_B, trailerBlock, &key, &(mfrc522.uid)); + if (status != MFRC522::STATUS_OK) { + Serial.print(F("PCD_Authenticate() failed: ")); + Serial.println(mfrc522.GetStatusCodeName(status)); + return; + } + + // Write data to the block + Serial.print(F("Writing data into block ")); + Serial.print(blockAddr); + Serial.println(F(" ...")); + dump_byte_array(buffer, 16); + Serial.println(); + status = (MFRC522::StatusCode)mfrc522.MIFARE_Write(blockAddr, buffer, 16); + if (status != MFRC522::STATUS_OK) { + Serial.print(F("MIFARE_Write() failed: ")); + Serial.println(mfrc522.GetStatusCodeName(status)); + } + Serial.println(); + delay(100); +} + +/** + * Helper routine to dump a byte array as hex values to Serial. + */ +void dump_byte_array(byte *buffer, byte bufferSize) { + for (byte i = 0; i < bufferSize; i++) { + Serial.print(buffer[i] < 0x10 ? " 0" : " "); + Serial.print(buffer[i], HEX); + } +} + diff --git a/create-soundfiles.sh b/create-soundfiles.sh index 6c568a4..3871aa3 100755 --- a/create-soundfiles.sh +++ b/create-soundfiles.sh @@ -1,40 +1,85 @@ #!/bin/bash -for i in {01..99}; -do - i=$(printf "%02d" $i) - say -v anna $i -o $i.aiff - sox $i.aiff $i.wav pitch 800 - lame -b 128 $i.wav 00$i.mp3 +for i in {1..250}; +do + j=$(printf "%04d" $i) + say -v anna $i -o $j.aiff + sox $j.aiff $j.wav pitch 800 + lame -b 128 $j.wav $j.mp3 done -say -v Anna "Oh, eine neue Karte! Verwende die Lautstärke Knöpfe um einen Order für die Karte auszuwählen. Drücke die Pause Taste um die Auswahl zu speichern." -o 0100.aiff -sox 0100.aiff 0100.wav pitch 800 -lame -b 128 0100.wav 0100.mp3 +say -v Anna "Oh, eine neue Karte! Verwende die Lautstärke Tasten um einen Order für die Karte auszuwählen. Drücke die Pause Taste um die Auswahl zu speichern." -o 0300.aiff +sox 0300.aiff 0300.wav pitch 800 +lame -b 128 0300.wav 0300_new_tag.mp3 -say -v Anna "OK, ich habe die Karte mit dem Ordner verknüpft. Wähle nun mit den Lautstärke Knöpfen den Wiedergabemodus aus." -o 0101.aiff -sox 0101.aiff 0101.wav pitch 800 -lame -b 128 0101.wav 0101.mp3 +say -v Anna "OK, ich habe die Karte mit dem Ordner verknüpft. Wähle nun mit den Lautstärke Tasten den Wiedergabemodus aus." -o 0310.aiff +sox 0310.aiff 0310.wav pitch 800 +lame -b 128 0310.wav 0310.mp3 -say -v Anna "Hörspielmodus: Ein zufälliges Lied aus dem Ordner wiedergeben" -o 0102.aiff -sox 0102.aiff 0102.wav pitch 800 -lame -b 128 0102.wav 0102.mp3 +say -v Anna "Hörspielmodus: Eine zufällige Datei aus dem Ordner wiedergeben" -o 0311.aiff +sox 0311.aiff 0311.wav pitch 800 +lame -b 128 0311.wav 0311_mode_random_episode.mp3 -say -v Anna "Albummodus: Den kompletten Ordner wiedergeben" -o 0103.aiff -sox 0103.aiff 0103.wav pitch 800 -lame -b 128 0103.wav 0103.mp3 +say -v Anna "Albummodus: Den kompletten Ordner wiedergeben" -o 0312.aiff +sox 0312.aiff 0312.wav pitch 800 +lame -b 128 0312.wav 0312_mode_album.mp3 -say -v Anna "Party Modus: Ordner zufällig wiedergeben." -o 0104.aiff -sox 0104.aiff 0104.wav pitch 800 -lame -b 128 0104.wav 0104.mp3 +say -v Anna "Party Modus: Ordner zufällig wiedergeben." -o 0313.aiff +sox 0313.aiff 0313.wav pitch 800 +lame -b 128 0313.wav 0313_mode_party.mp3 -say -v Anna "Einzel Modus: Eine bestimmte Datei im Ordner wiedergeben." -o 0105.aiff -sox 0105.aiff 0105.wav pitch 800 -lame -b 128 0105.wav 0105.mp3 +say -v Anna "Einzel Modus: Eine bestimmte Datei im Ordner wiedergeben." -o 0314.aiff +sox 0314.aiff 0314.wav pitch 800 +lame -b 128 0314.wav 0314_mode_sigle_track.mp3 + +say -v Anna "Hörbuch Modus: Einen Ordner wiedergeben und den Fortschritt speichern." -o 0315.aiff +sox 0315.aiff 0315.wav pitch 800 +lame -b 128 0315.wav 0315_node_audio_book.mp3 + +say -v Anna "OK, wähle nun bitte die Datei mit den Lautstärke Tasten aus. " -o 0320.aiff +sox 0320.aiff 0320.wav pitch 800 +lame -b 128 0320.wav 0320_select_file.mp3 + +say -v Anna "Admin Funktionen." -o 0316.aiff +sox 0316.aiff 0316.wav pitch 800 +lame -b 128 0316.wav 0316_admin.mp3 + +say -v Anna "Bitte lege die zu löschende Karte auf! Zum Abbrechen einfach eine der Lautstärke Taste drücken!" -o 0800.aiff +sox 0800.aiff 0800.wav pitch 800 +lame -b 128 0800.wav 0800_reset_tag.mp3 + +say -v Anna "OK, du kannst den Tag nun wieder neu konfigurieren." -o 0801.aiff +sox 0801.aiff 0801.wav pitch 800 +lame -b 128 0801.wav 0801_reset_tag_ok.mp3 + +say -v Anna "OK, ich habe den Vorgang abgebrochen." -o 0802.aiff +sox 0802.aiff 0802.wav pitch 800 +lame -b 128 0802.wav 0802_reset_aborted.mp3 + +say -v Anna "Reset wurde durchgeführt!" -o 0999.aiff +sox 0999.aiff 0999.wav pitch 800 +lame -b 128 0999.wav 0999_reset_ok.mp3 + +say -v Anna "Soll ich vor einer Datei jeweils die Nummer ansagen? Du kannst jederzeit durch einen langen Druck auf die Pause Taste die aktuelle Nummer abfragen." -o 0330.aiff +sox 0330.aiff 0330.wav pitch 800 +lame -b 128 0330.wav 0330.mp3 + +say -v Anna "Nein, Nummer nicht ansagen." -o 0331.aiff +sox 0331.aiff 0331.wav pitch 800 +lame -b 128 0331.wav 0331.mp3 + +say -v Anna "Ja, Nummer ansagen." -o 0332.aiff +sox 0332.aiff 0332.wav pitch 800 +lame -b 128 0332.wav 0332.mp3 + +#say -v Anna "Bitte lege die Karte erneut auf und warte auf die Bestätigung." -o 0400.aiff +#sox 0400.aiff 0400.wav pitch 800 +#lame -b 128 0400.wav 0400_wait_for_card.mp3 + +say -v Anna "OK. Ich habe die Karte konfiguriert." -o 0400.aiff +sox 0400.aiff 0400.wav pitch 800 +lame -b 128 0400.wav 0400_ok.mp3 -say -v Anna "OK. Ich habe die Karte konfiguriert." -o 0110.aiff -sox 0110.aiff 0110.wav pitch 800 -lame -b 128 0110.wav 0110.mp3 rm *.aiff rm *.wav