diff --git a/app.py b/app.py deleted file mode 100644 index 5b4e18f444a3d04f8acc6ed220c854a308326500..0000000000000000000000000000000000000000 --- a/app.py +++ /dev/null @@ -1,757 +0,0 @@ -import os -import logging -import random -import shutil -import re -import asyncio -import signal -import traceback -import stat -from telegram import Update, InlineKeyboardButton, InlineKeyboardMarkup -from telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes, ConversationHandler, CallbackQueryHandler -from typing import Dict, Set, Tuple, Optional - -# Enable more detailed logging -logging.basicConfig( - format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', - level=logging.DEBUG # Changed to DEBUG for more details -) -logger = logging.getLogger(__name__) - -# Add specific logger for telegram -telegram_logger = logging.getLogger('telegram') -telegram_logger.setLevel(logging.DEBUG) - -# Define conversation states -AWAITING_CORRECTION = 1 -AWAITING_VALIDATION = 2 - -# Store active tasks per user -# {user_id: (voice_filename, text_filename, seq_num, corrected_text)} -user_tasks = {} - -# Track chunks being processed -chunks_in_process = set() # set of sequence numbers that are currently being processed - -# Directory paths -DATA_DIR = os.environ.get('DATA_DIR', 'data') -PENDING_DIR = os.path.join(DATA_DIR, 'pending') -PENDING_VOICE_DIR = os.path.join(PENDING_DIR, 'voice') -PENDING_TEXT_DIR = os.path.join(PENDING_DIR, 'text') -PROCESSED_DIR = os.path.join(DATA_DIR, 'processed') -PROCESSED_VOICE_DIR = os.path.join(PROCESSED_DIR, 'voice') -PROCESSED_TEXT_DIR = os.path.join(PROCESSED_DIR, 'text') - -# Ensure directories exist with proper permissions - - -def ensure_directory_with_permissions(directory): - """Create directory if it doesn't exist and set permissions.""" - try: - if not os.path.exists(directory): - os.makedirs(directory, exist_ok=True) - # Set permissions: read/write/execute for everyone - os.chmod(directory, stat.S_IRWXU | stat.S_IRWXG | - stat.S_IRWXO) # 0777 permissions - logger.info(f"Directory ensured with permissions: {directory}") - except Exception as e: - logger.error(f"Error setting permissions for {directory}: {str(e)}") - - -# Initialize directories with proper permissions -ensure_directory_with_permissions(PENDING_VOICE_DIR) -ensure_directory_with_permissions(PENDING_TEXT_DIR) -ensure_directory_with_permissions(PROCESSED_VOICE_DIR) -ensure_directory_with_permissions(PROCESSED_TEXT_DIR) - -# Global application variable -application = None - - -def extract_sequence_number(filename: str) -> Optional[int]: - """Extract sequence number from filename, e.g., 'Sound 100.wav' -> 100.""" - match = re.search(r'(\d+)', filename) - if match: - return int(match.group(1)) - return None - - -def get_files_by_sequence_number(): - """Create dictionaries mapping sequence numbers to filenames.""" - voice_files = {} - text_files = {} - - # Map voice files to sequence numbers - if os.path.exists(PENDING_VOICE_DIR): - for filename in os.listdir(PENDING_VOICE_DIR): - if filename.endswith('.wav'): - seq_num = extract_sequence_number(filename) - if seq_num is not None: - voice_files[seq_num] = filename - - # Map text files to sequence numbers - if os.path.exists(PENDING_TEXT_DIR): - for filename in os.listdir(PENDING_TEXT_DIR): - if filename.endswith('.txt'): - seq_num = extract_sequence_number(filename) - if seq_num is not None: - text_files[seq_num] = filename - - return voice_files, text_files - - -async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: - """Send a welcome message when the /start command is issued.""" - logger.info(f"Start command received from user {update.effective_user.id}") - try: - await update.message.reply_text( - "السلام عليكم في The Algerian Darija Transcription Correction Bot!\n\n" - ''' - 🌟 قواعد التنميط اللغوي والبدائل 🌟 - - -🟦🟦🟦 قواعد الكتابة 🟦🟦🟦 - -🔷 القاعدة 00 -يُسمح فقط باستخدام الكلمات والحروف العربية في عملية التنصيص. يُمنع استعمال الأحرف الأجنبية أو ما يُعرف بـ "العربيزي". -📝 مثال: "على" ✅ وليس "3la" ❌ - -🔷 القاعدة 01 -يجوز إلصاق الجار والمجرور بالفعل مباشرة دون فصله. -📝 مثال: قالولي ✅ بدلاً من قالوا لي ❌ - -🔷 القاعدة 02 -لا يُشترط الالتزام بألف الجماعة في الأفعال. -📝 مثال: قالو ✅ بدلاً من قالوا ❌ - -🔷 القاعدة 03 -يتم استبدال همزة الألف (أ) بحرف (ا) دائماً. -📝 مثال: اكتوب ✅ بدلاً من أكتب ❌ - -🔷 القاعدة 04 -يُكتب الضمير المتصل (هو) بالشكل الصحيح دون تغيير. -📝 مثال: عنده ✅ بدلاً من عندو ❌ - -🔷 القاعدة 05 -عند النطق، يتم استبدال حرف (ت) بحرف (ث) إذا نُطق كذلك. -📝 مثال: ثاني ✅ بدلاً من تاني ❌ - -🔷 القاعدة 06 -تحويل الفاء الملتصقة بالاسم إلى حرف الجر "في". -📝 مثال: في البيت ✅ بدلاً من فالبيت ❌ - -🔷 القاعدة 07 -يُفضل وصل "ما" و"واو العطف" بالكلمة مباشرة. -📝 مثال: ماقولتش ✅ بدلاً من ماقولتش ❌ - -🔷 القاعدة 09 -تُحافظ حروف المستقبل مثل "عنقول" أو "كنقول" على شكلها الأصلي دون تغيير. -📝 مثال: عنقول ✅ (لا تغيير) - - -🟩🟩🟩 البدائل اللغوية 🟩🟩🟩 -🚫 اللفظ غير المعياري ← ✅ اللفظ المعياري - - درك ← ضرك ✅ - - علابالي ← على بالي ✅ - - شويا ← شوية ✅ - - واش ← وش ✅ - - ڨالو ← قالو ✅ - - نتاع / نتع / تع ← تاع ✅ - - بالصح / بصاح ← بصح ✅ - - قتلك ← قلتلك ✅ - - يقول لك ← يقولك ✅ - - عنا ← عندنا ✅ - - هاداك / هذاك / هاذاك ← هداك ✅ - - لي / ليه / ليك ← اللي / له / لك ✅ - - -😉 قم بعمل pin أو تثبيت لهذه الرسالة لكي يسهل عليك الرجوع إليها لاحقا لمراجعة القواعد‼️ - ''' - "استعمل /correct للبدأ في تصحيح النصوص\n" - "استعمل /skip لتجاوز مقطع صوتي معين\n" - "استعمل /cancel لإلغاء العملية\n" - ) - logger.info("Start message sent successfully") - except Exception as e: - logger.error(f"Error sending start message: {e}") - - -async def get_next_available_chunk() -> Tuple[Optional[str], Optional[str], Optional[int]]: - """Find the next available audio chunk that isn't being processed. - Returns (voice_filename, text_filename, sequence_number) or (None, None, None)""" - voice_files, text_files = get_files_by_sequence_number() - - # Find sequence numbers that exist in both voice and text files - common_seq_nums = set(voice_files.keys()).intersection( - set(text_files.keys())) - - # Filter out sequence numbers that are already being processed - available_seq_nums = [ - seq_num for seq_num in common_seq_nums if seq_num not in chunks_in_process] - - logger.debug(f"Available sequence numbers: {available_seq_nums}") - - if available_seq_nums: - # Get random available sequence number from the list - seq_num = random.choice(available_seq_nums) - logger.debug(f"Selected sequence number: {seq_num}") - return voice_files[seq_num], text_files[seq_num], seq_num - - logger.debug("No available chunks found") - return None, None, None - - -async def send_chunk_to_user(update: Update, user_id: int, voice_filename: str, text_filename: str, seq_num: int) -> bool: - """Send audio chunk and text to user. Returns True if successful, False otherwise.""" - # Send audio file - audio_path = os.path.join(PENDING_VOICE_DIR, voice_filename) - - # Check if audio file exists - if not os.path.exists(audio_path): - logger.error(f"Audio file not found: {audio_path}") - await update.message.reply_text("Error: Audio file not found. Please try again.") - return False - - # Read the original transcription to send as reference - text_path = os.path.join(PENDING_TEXT_DIR, text_filename) - if not os.path.exists(text_path): - logger.error(f"Text file not found: {text_path}") - await update.message.reply_text("Error: Text file not found. Please try again.") - return False - - try: - with open(text_path, 'r', encoding='utf-8') as f: - original_text = f.read().strip() - except Exception as e: - logger.error(f"Error reading text file: {e}") - await update.message.reply_text(f"Error reading transcription file. Please try again.") - return False - - # Send audio and original text - try: - with open(audio_path, 'rb') as audio_file: - await update.message.reply_voice(voice=audio_file) - - await update.message.reply_text( - f"من فضلك استمع إلى المقطع الصوتي وأعد كتابة النص.\n\n" - f"النص الأصلي:\n{original_text}\n\n" - f"من فضلك قم بإرسال النص الذي تم تصحيحه أو استعمل /skip لتجاوز هذا المقطع." - f"استعمل /cancel لإلغاء العملية." - ) - - logger.info(f"Successfully sent audio and text to user {user_id}") - return True - except Exception as e: - logger.error(f"Error sending audio or text: {e}") - await update.message.reply_text("Error sending audio. Please try again.") - return False - - -async def correct(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: - """Start the correction process.""" - logger.info( - f"تم استقبال أمر التصحيح من المستعمل {update.effective_user.id}") - user_id = update.effective_user.id - - # Check if user already has an active task - if user_id in user_tasks: - await update.message.reply_text("أنت الآن في غضون عملية تصحيح. من فضلك قم بإكمالها أو ألغي العملية عبر /cancel.") - current_state = AWAITING_VALIDATION if len( - user_tasks[user_id]) > 3 else AWAITING_CORRECTION - return current_state - - # Ensure directory paths exist with proper permissions - ensure_directory_with_permissions(PENDING_VOICE_DIR) - ensure_directory_with_permissions(PENDING_TEXT_DIR) - - # Log directory contents for debugging - logger.debug( - f"PENDING_VOICE_DIR contents: {os.listdir(PENDING_VOICE_DIR)}") - logger.debug(f"PENDING_TEXT_DIR contents: {os.listdir(PENDING_TEXT_DIR)}") - - # Get next available chunk - voice_filename, text_filename, seq_num = await get_next_available_chunk() - - if not voice_filename or not text_filename: - await update.message.reply_text("لا توجد نصوص قيد الانتظار في الوقت الحالي. حاول مرة أخرى لاحقًا.") - return ConversationHandler.END - - # Mark chunk as being processed - chunks_in_process.add(seq_num) - user_tasks[user_id] = (voice_filename, text_filename, seq_num) - - # Send chunk to user - success = await send_chunk_to_user(update, user_id, voice_filename, text_filename, seq_num) - - if not success: - # Clean up on failure - chunks_in_process.remove(seq_num) - del user_tasks[user_id] - return ConversationHandler.END - - return AWAITING_CORRECTION - - -async def skip_chunk(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: - """Skip the current chunk and get a new one.""" - user_id = update.effective_user.id - - if user_id not in user_tasks: - await update.message.reply_text("أنت لا تملك مهمة تصحيح نشطة. استخدم /correct للبدء.") - return ConversationHandler.END - - # Get current task info - current_task = user_tasks[user_id] - if len(current_task) >= 3: # Has at least voice, text, seq_num - _, _, current_seq_num = current_task[:3] - - # Remove current chunk from processing (making it available for others) - chunks_in_process.discard(current_seq_num) - logger.info(f"User {user_id} skipped chunk {current_seq_num}") - - # Remove current task - del user_tasks[user_id] - - await update.message.reply_text("تجاوزت المقطع الصوتي. دعني أبحث عن مقطع آخر لك.") - - # Get next available chunk - voice_filename, text_filename, seq_num = await get_next_available_chunk() - - if not voice_filename or not text_filename: - await update.message.reply_text("لا توجد نصوص قيد الانتظار في الوقت الحالي. حاول مرة أخرى لاحقًا.") - return ConversationHandler.END - - # Mark new chunk as being processed - chunks_in_process.add(seq_num) - user_tasks[user_id] = (voice_filename, text_filename, seq_num) - - # Send new chunk to user - success = await send_chunk_to_user(update, user_id, voice_filename, text_filename, seq_num) - - if not success: - # Clean up on failure - chunks_in_process.remove(seq_num) - del user_tasks[user_id] - return ConversationHandler.END - - return AWAITING_CORRECTION - - -async def receive_correction(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: - """Receive the user's correction and ask for validation.""" - user_id = update.effective_user.id - - if user_id not in user_tasks: - await update.message.reply_text("أنت لا تملك مهمة تصحيح نشطة. استخدم /correct للبدء.") - return ConversationHandler.END - - voice_filename, text_filename, seq_num = user_tasks[user_id] - corrected_text = update.message.text - - # Update user task with corrected text - user_tasks[user_id] = (voice_filename, text_filename, - seq_num, corrected_text) - - # Create validation buttons - keyboard = [ - [ - InlineKeyboardButton("✅ نعم, أنا متأكد من التصحيح", - callback_data="validate_yes"), - InlineKeyboardButton("❌ لا, أريد التصحيح مرة أخرى", - callback_data="validate_no") - ] - ] - reply_markup = InlineKeyboardMarkup(keyboard) - - await update.message.reply_text( - f"النص الذي قمت بتصحيحه:\n{corrected_text}\n\n" - f"هل أنت متأكد من التصحيح؟", - reply_markup=reply_markup - ) - - return AWAITING_VALIDATION - - -async def handle_validation(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: - """Handle the validation response.""" - query = update.callback_query - await query.answer() - - user_id = query.from_user.id - - if user_id not in user_tasks or len(user_tasks[user_id]) < 4: - await query.edit_message_text("أنت لا تملك مهمة تصحيح نشطة. استخدم /correct للبدء.") - return ConversationHandler.END - - voice_filename, text_filename, seq_num, corrected_text = user_tasks[user_id] - - if query.data == "validate_yes": - # User is confident - save the correction - success = await save_final_correction(query, user_id, voice_filename, text_filename, seq_num, corrected_text) - if success: - await query.edit_message_text( - "شكرا. تصحيحك تم حفظه\n" - "استعمل /correct لاستقبال عملية تصحيح جديدة" - ) - return ConversationHandler.END - else: - # If saving failed, go back to correction state - # Remove corrected text - user_tasks[user_id] = (voice_filename, text_filename, seq_num) - await query.edit_message_text( - "حدث خطأ أثناء حفظ التصحيح. من فضلك أعد إرساله." - ) - return AWAITING_CORRECTION - - elif query.data == "validate_no": - # User wants to correct again - remove corrected text and go back to correction state - user_tasks[user_id] = (voice_filename, text_filename, seq_num) - await query.edit_message_text( - "من فضلك أعد كتابة النص التصحيحي مرة أخرى." - ) - return AWAITING_CORRECTION - - return AWAITING_VALIDATION - - -async def save_final_correction(query, user_id: int, voice_filename: str, text_filename: str, seq_num: int, corrected_text: str) -> bool: - """Save the final validated correction.""" - # Get original file paths - original_txt_path = os.path.join(PENDING_TEXT_DIR, text_filename) - original_wav_path = os.path.join(PENDING_VOICE_DIR, voice_filename) - - # Create user-specific directory in processed TEXT folder only - user_processed_text_dir = os.path.join( - PROCESSED_TEXT_DIR, f"user_{user_id}") - - # Log the directory path for debugging - logger.debug(f"Creating text directory: {user_processed_text_dir}") - - try: - # Ensure text directory with proper permissions - ensure_directory_with_permissions(user_processed_text_dir) - - # Save corrected text to processed directory - processed_txt_path = os.path.join( - user_processed_text_dir, text_filename) - - # Log file paths for debugging - logger.debug( - f"Original text path: {original_txt_path}, exists: {os.path.exists(original_txt_path)}") - logger.debug( - f"Original wav path: {original_wav_path}, exists: {os.path.exists(original_wav_path)}") - logger.debug(f"Processed text path: {processed_txt_path}") - - # Save corrected text - logger.debug(f"Saving corrected text to {processed_txt_path}") - with open(processed_txt_path, 'w', encoding='utf-8') as f: - f.write(corrected_text) - # Set file permissions - os.chmod(processed_txt_path, stat.S_IRUSR | stat.S_IWUSR | - stat.S_IRGRP | stat.S_IWGRP | stat.S_IROTH | stat.S_IWOTH) - - # Verify processed text file exists - logger.debug( - f"Verifying processed text file exists: {os.path.exists(processed_txt_path)}") - - # Remove both files from pending directory (text and voice) - if os.path.exists(original_txt_path): - logger.debug(f"Removing original text file at {original_txt_path}") - os.remove(original_txt_path) - else: - logger.warning( - f"Could not remove original text file as it doesn't exist at {original_txt_path}") - - if os.path.exists(original_wav_path): - logger.debug(f"Removing original wav file at {original_wav_path}") - os.remove(original_wav_path) - else: - logger.warning( - f"Could not remove original wav file as it doesn't exist at {original_wav_path}") - - # Remove from active tasks - logger.debug(f"Removing seq_num {seq_num} from chunks_in_process") - chunks_in_process.remove(seq_num) - - logger.debug(f"Removing user {user_id} from user_tasks") - del user_tasks[user_id] - - logger.info( - f"Successfully saved validated correction for user {user_id}") - return True - - except Exception as e: - # Enhanced error logging with stack trace - error_msg = f"Error saving correction: {str(e)}" - logger.error(error_msg) - logger.error(traceback.format_exc()) - - # Try to provide more specific error messages - if "Permission denied" in str(e): - await query.edit_message_text("Error: Permission denied while saving files. Please contact the administrator.") - elif "No such file or directory" in str(e): - await query.edit_message_text("Error: File not found. The system couldn't find one of the files.") - else: - await query.edit_message_text(f"Error saving your correction: {str(e)}. Please try again.") - - return False - - -async def cancel(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: - """Cancel the current correction task.""" - user_id = update.effective_user.id - - if user_id in user_tasks: - task_info = user_tasks[user_id] - if len(task_info) >= 3: # Has at least voice, text, seq_num - seq_num = task_info[2] - chunks_in_process.discard(seq_num) - del user_tasks[user_id] - - await update.message.reply_text("العملية قد ألغيت :( استعمل /correct للبدء تصحيح جديد.") - else: - await update.message.reply_text("لا توجد عملية تصحيح نشطة لإلغائها.") - - return ConversationHandler.END - - -async def status(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: - """Show status of pending and processed chunks.""" - logger.info( - f"Status command received from user {update.effective_user.id}") - - # Count pending files - pending_voice_count = len( - [f for f in os.listdir(PENDING_VOICE_DIR) if f.endswith('.wav')]) - pending_text_count = len( - [f for f in os.listdir(PENDING_TEXT_DIR) if f.endswith('.txt')]) - - # Get sequence numbers - voice_files, text_files = get_files_by_sequence_number() - matching_pairs = len( - set(voice_files.keys()).intersection(set(text_files.keys()))) - - # Count processed files (only text files now) - processed_text_count = 0 - - # Count text files - for root, dirs, files in os.walk(PROCESSED_TEXT_DIR): - processed_text_count += len([f for f in files if f.endswith('.txt')]) - - active_tasks = len(user_tasks) - - # Check file permissions - permissions_info = "" - try: - # Check if we can write to the processed text directory - can_write_text = os.access(PROCESSED_TEXT_DIR, os.W_OK) - permissions_info = f"\n• Write permissions: Text: {can_write_text}" - except Exception as e: - permissions_info = f"\n• Error checking permissions: {str(e)}" - - await update.message.reply_text( - f"📊 Transcription Status:\n" - f"• Pending voice files: {pending_voice_count}\n" - f"• Pending text files: {pending_text_count}\n" - f"• Matching pending pairs: {matching_pairs}\n" - f"• Processed text files: {processed_text_count}\n" - f"• Active tasks: {active_tasks}{permissions_info}\n" - f"• Note: Only corrected text files are saved, voice files are not copied to processed folder" - ) - - -async def debug_info(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: - """Command to show debug information about directories and permissions.""" - user_id = update.effective_user.id - - # Check directory structure - debug_info = [ - "📁 Directory Check:", - f"• DATA_DIR: {DATA_DIR}, exists: {os.path.exists(DATA_DIR)}", - f"• PENDING_DIR: {PENDING_DIR}, exists: {os.path.exists(PENDING_DIR)}", - f"• PENDING_VOICE_DIR: {PENDING_VOICE_DIR}, exists: {os.path.exists(PENDING_VOICE_DIR)}", - f"• PENDING_TEXT_DIR: {PENDING_TEXT_DIR}, exists: {os.path.exists(PENDING_TEXT_DIR)}", - f"• PROCESSED_DIR: {PROCESSED_DIR}, exists: {os.path.exists(PROCESSED_DIR)}", - f"• PROCESSED_TEXT_DIR: {PROCESSED_TEXT_DIR}, exists: {os.path.exists(PROCESSED_TEXT_DIR)}", - ] - - # Check permissions - try: - permission_info = [ - "🔑 Permission Check:", - f"• PENDING_VOICE_DIR writable: {os.access(PENDING_VOICE_DIR, os.W_OK)}", - f"• PENDING_TEXT_DIR writable: {os.access(PENDING_TEXT_DIR, os.W_OK)}", - f"• PROCESSED_TEXT_DIR writable: {os.access(PROCESSED_TEXT_DIR, os.W_OK)}", - ] - debug_info.extend(permission_info) - except Exception as e: - debug_info.append(f"Error checking permissions: {str(e)}") - - # Check active tasks - task_info = [ - "📋 Active Tasks:", - f"• Number of active users: {len(user_tasks)}", - f"• Active chunks: {len(chunks_in_process)}", - ] - debug_info.extend(task_info) - - await update.message.reply_text("\n".join(debug_info)) - - -async def test_handler(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: - """Test handler to verify bot is receiving messages.""" - logger.info(f"Test command received from user {update.effective_user.id}") - await update.message.reply_text("Bot is working! ✅") - - -async def setup_application(): - """Setup the Application with all handlers.""" - global application - - # Get the token from environment variable - token = os.environ.get("TELEGRAM_TOKEN") - if not token: - logger.error("TELEGRAM_TOKEN environment variable not set!") - return None - - logger.info(f"Setting up bot with token: {token[:10]}...") - - # Create the Application with additional debugging - application = Application.builder().token(token).build() - - # Add a test handler first - application.add_handler(CommandHandler("test", test_handler)) - - # Add conversation handler for correction workflow - conv_handler = ConversationHandler( - entry_points=[CommandHandler("correct", correct)], - states={ - AWAITING_CORRECTION: [ - MessageHandler(filters.TEXT & ~filters.COMMAND, - receive_correction), - CommandHandler("skip", skip_chunk), - ], - AWAITING_VALIDATION: [ - CallbackQueryHandler(handle_validation, pattern="^validate_"), - ], - }, - fallbacks=[ - CommandHandler("cancel", cancel), - CommandHandler("skip", skip_chunk), - ], - name="correction_conversation", - ) - - application.add_handler(conv_handler) - - # Add command handlers - application.add_handler(CommandHandler("start", start)) - application.add_handler(CommandHandler("status", status)) - application.add_handler(CommandHandler("cancel", cancel)) - application.add_handler(CommandHandler( - "skip", skip_chunk)) # Global skip handler - application.add_handler(CommandHandler("debug", debug_info)) - - logger.info("All handlers added successfully") - return application - - -async def start_bot(): - """Start the bot with proper signal handling.""" - global application - - logger.info("Starting bot setup...") - - # Create and configure the bot - app = await setup_application() - if not app: - logger.error("Failed to create application") - return - - logger.info("Application created successfully") - - # Start the Bot - try: - await app.initialize() - logger.info("Application initialized") - - await app.start() - logger.info("Application started") - - # Start polling for updates - await app.updater.start_polling(drop_pending_updates=False) - logger.info("Started polling for updates") - - except Exception as e: - logger.error(f"Error starting bot: {e}") - return - - # Setup signal handlers for graceful shutdown - loop = asyncio.get_event_loop() - - for signal_name in ('SIGINT', 'SIGTERM'): - try: - loop.add_signal_handler( - getattr(signal, signal_name), - lambda s=signal_name: asyncio.create_task(shutdown(s)) - ) - except NotImplementedError: - # Windows doesn't support this - logger.info("Signal handlers not supported on this platform") - pass - - try: - # Just run forever until interrupted - logger.info("Bot is now running and waiting for messages...") - await asyncio.Event().wait() - finally: - # Ensure the bot is properly shut down - await shutdown("Manual") - - -async def shutdown(signal_type): - """Cleanup tasks tied to the service's shutdown.""" - global application - - logger.info(f"Received exit signal {signal_type}...") - - # Stop the bot - if application: - logger.info("Stopping application...") - await application.updater.stop() - await application.stop() - await application.shutdown() - - # Cancel all running tasks - tasks = [t for t in asyncio.all_tasks() if t is not asyncio.current_task()] - for task in tasks: - task.cancel() - - # Wait for all tasks to be cancelled - if tasks: - logger.info(f"Waiting for {len(tasks)} tasks to complete...") - await asyncio.gather(*tasks, return_exceptions=True) - - logger.info("Application shutdown complete") - - -async def main(): - """Main function to setup and run the bot.""" - # Setup and start the bot - await start_bot() - -# This is the entry point when run as the main process -if __name__ == "__main__": - asyncio.run(main()) diff --git a/data/pending/text/Sound 1799.txt b/data/pending/text/Sound 1799.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c52f9d91baa3b35f1706b7a2cb33d2ada9083fe --- /dev/null +++ b/data/pending/text/Sound 1799.txt @@ -0,0 +1 @@ +الناس \ No newline at end of file diff --git a/data/pending/text/Sound 1800.txt b/data/pending/text/Sound 1800.txt new file mode 100644 index 0000000000000000000000000000000000000000..522791030b20340ab27e32757170dc85cca0d04c --- /dev/null +++ b/data/pending/text/Sound 1800.txt @@ -0,0 +1 @@ +يوارسين السموان \ No newline at end of file diff --git a/data/pending/text/Sound 1801.txt b/data/pending/text/Sound 1801.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a342b96396e60c5e2de9ab704eba5b0143bf48a --- /dev/null +++ b/data/pending/text/Sound 1801.txt @@ -0,0 +1 @@ +هو زولكمي يعني الانسان يكي \ No newline at end of file diff --git a/data/pending/text/Sound 1802.txt b/data/pending/text/Sound 1802.txt new file mode 100644 index 0000000000000000000000000000000000000000..a97ef320ee0eb5cb927264aceeeef05ad6ddd02e --- /dev/null +++ b/data/pending/text/Sound 1802.txt @@ -0,0 +1 @@ +الحقيق والا اوكي عيوان توويشة والتهم \ No newline at end of file diff --git a/data/pending/text/Sound 1803.txt b/data/pending/text/Sound 1803.txt new file mode 100644 index 0000000000000000000000000000000000000000..21fade47b90e733258c990d16df8c471065e04be --- /dev/null +++ b/data/pending/text/Sound 1803.txt @@ -0,0 +1 @@ +هادي الحوجة التانية \ No newline at end of file diff --git a/data/pending/text/Sound 1804.txt b/data/pending/text/Sound 1804.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ed743cc7e45b1be1f36bb9714539a2a6fa004d8 --- /dev/null +++ b/data/pending/text/Sound 1804.txt @@ -0,0 +1 @@ +الحاجة التالتة لي هضرت علا \ No newline at end of file diff --git a/data/pending/text/Sound 1805.txt b/data/pending/text/Sound 1805.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab3a5d2a20837f9eba56d6788f73a78e07275992 --- /dev/null +++ b/data/pending/text/Sound 1805.txt @@ -0,0 +1 @@ +كيفاش الناس تخرج من عقلية بوكيمون وتزيد فالناس \ No newline at end of file diff --git a/data/pending/text/Sound 1806.txt b/data/pending/text/Sound 1806.txt new file mode 100644 index 0000000000000000000000000000000000000000..482ff7338d15dd16cb542879d7bd9d15e59571a8 --- /dev/null +++ b/data/pending/text/Sound 1806.txt @@ -0,0 +1 @@ +تلوكان منن فور ولا ايشنشب \ No newline at end of file diff --git a/data/pending/text/Sound 1807.txt b/data/pending/text/Sound 1807.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c5355eaa298c22205e6d694a53ede1a7369f39c --- /dev/null +++ b/data/pending/text/Sound 1807.txt @@ -0,0 +1 @@ +وشنو هي \ No newline at end of file diff --git a/data/pending/text/Sound 1808.txt b/data/pending/text/Sound 1808.txt new file mode 100644 index 0000000000000000000000000000000000000000..94bd48ccc41266b589ff2eb217eca941ee5ae8ab --- /dev/null +++ b/data/pending/text/Sound 1808.txt @@ -0,0 +1 @@ +فسيكانا نحب كينزيد الناس فلينكان \ No newline at end of file diff --git a/data/pending/text/Sound 1809.txt b/data/pending/text/Sound 1809.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f06fc12b0321277f70cf5b9cb9cf00905f48ada --- /dev/null +++ b/data/pending/text/Sound 1809.txt @@ -0,0 +1 @@ +نبعت لهم بوسونلايز \ No newline at end of file diff --git a/data/pending/text/Sound 1810.txt b/data/pending/text/Sound 1810.txt new file mode 100644 index 0000000000000000000000000000000000000000..98e9eb872d462b85c2ac1825f1a38a178ef8f68a --- /dev/null +++ b/data/pending/text/Sound 1810.txt @@ -0,0 +1 @@ +ما سادش تما ما نزيدش هادي كتاع \ No newline at end of file diff --git a/data/pending/text/Sound 1811.txt b/data/pending/text/Sound 1811.txt new file mode 100644 index 0000000000000000000000000000000000000000..b436d224e4fc5cb1fe1d9da36acc6e6ae376317b --- /dev/null +++ b/data/pending/text/Sound 1811.txt @@ -0,0 +1 @@ +اد سموان ازيل كناكش \ No newline at end of file diff --git a/data/pending/text/Sound 1812.txt b/data/pending/text/Sound 1812.txt new file mode 100644 index 0000000000000000000000000000000000000000..865cbfb0a77154d985bf8d1ca06bfd4dbe4f28ae --- /dev/null +++ b/data/pending/text/Sound 1812.txt @@ -0,0 +1 @@ +الصونلايس انفيتيهش نزيد هاديك \ No newline at end of file diff --git a/data/pending/text/Sound 1813.txt b/data/pending/text/Sound 1813.txt new file mode 100644 index 0000000000000000000000000000000000000000..de103e11a6bce1491342bb091b9d3af297b3c555 --- /dev/null +++ b/data/pending/text/Sound 1813.txt @@ -0,0 +1 @@ +الكلمة هاديك السلام عليكم زبير شفتك بلي راك فالبوطكاست مع طاها \ No newline at end of file diff --git a/data/pending/text/Sound 1814.txt b/data/pending/text/Sound 1814.txt new file mode 100644 index 0000000000000000000000000000000000000000..50e4cadb636ffd4ce2d4b7dd144295f52015ccda --- /dev/null +++ b/data/pending/text/Sound 1814.txt @@ -0,0 +1 @@ +ما نعرفكش بصح نكون تشرف لوكان \ No newline at end of file diff --git a/data/pending/text/Sound 1815.txt b/data/pending/text/Sound 1815.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb8301978559fda1121a2252d11d61bae693759b --- /dev/null +++ b/data/pending/text/Sound 1815.txt @@ -0,0 +1 @@ +تمنزيد هاديك زوج كلمات ولا تلاتة \ No newline at end of file diff --git a/data/pending/text/Sound 1816.txt b/data/pending/text/Sound 1816.txt new file mode 100644 index 0000000000000000000000000000000000000000..25b105d99527a8252e899d6e0641a795400af77e --- /dev/null +++ b/data/pending/text/Sound 1816.txt @@ -0,0 +1 @@ +ك الانسان ادا اكسبته و الاكسبتي واللامكان الانفيتيهشان \ No newline at end of file diff --git a/data/pending/text/Sound 1817.txt b/data/pending/text/Sound 1817.txt new file mode 100644 index 0000000000000000000000000000000000000000..8196c42f3b23426c3c9092a7ae93d7860441ede2 --- /dev/null +++ b/data/pending/text/Sound 1817.txt @@ -0,0 +1 @@ +تروحلو هاديك الكتيبة هاديك تروحلو فميساج انباكسستاعو \ No newline at end of file diff --git a/data/pending/text/Sound 1818.txt b/data/pending/text/Sound 1818.txt new file mode 100644 index 0000000000000000000000000000000000000000..4633d9ab4357ccbac0f75ebe450e78e86065b382 --- /dev/null +++ b/data/pending/text/Sound 1818.txt @@ -0,0 +1 @@ +وبالتالي هو الا كان انسان نرمرمور ما شاء الله \ No newline at end of file diff --git a/data/pending/text/Sound 1819.txt b/data/pending/text/Sound 1819.txt new file mode 100644 index 0000000000000000000000000000000000000000..302b9bf2085c40e120ebe9db8213dc6301b19f21 --- /dev/null +++ b/data/pending/text/Sound 1819.txt @@ -0,0 +1 @@ +لازم يتجاوبد باسك متلا شج يشوفها كدا ما غيتجاوبش شغل يدير لك فه هاديك لانك راه \ No newline at end of file diff --git a/data/pending/text/Sound 1820.txt b/data/pending/text/Sound 1820.txt new file mode 100644 index 0000000000000000000000000000000000000000..166268cddd89203ebb802c15a0d7befb6cf71690 --- /dev/null +++ b/data/pending/text/Sound 1820.txt @@ -0,0 +1 @@ +ما قال قال ولكا \ No newline at end of file diff --git a/data/pending/text/Sound 1821.txt b/data/pending/text/Sound 1821.txt new file mode 100644 index 0000000000000000000000000000000000000000..b45c1a82fb0d1f4ddd2bb5338a40b56e5abe84f9 --- /dev/null +++ b/data/pending/text/Sound 1821.txt @@ -0,0 +1 @@ +مرحبا زعما راك اينهاري زعما ما عندكش وقت باش لك تب قا ميغسي \ No newline at end of file diff --git a/data/pending/text/Sound 1822.txt b/data/pending/text/Sound 1822.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec5e6e257252ef67098f3a1eed1f31dc1a47f00c --- /dev/null +++ b/data/pending/text/Sound 1822.txt @@ -0,0 +1 @@ +ولا تينكيو \ No newline at end of file diff --git a/data/pending/text/Sound 1823.txt b/data/pending/text/Sound 1823.txt new file mode 100644 index 0000000000000000000000000000000000000000..0be2d1b0aa4f410a6def8b665e204179e2858cba --- /dev/null +++ b/data/pending/text/Sound 1823.txt @@ -0,0 +1 @@ +ويبعت ليميسار \ No newline at end of file diff --git a/data/pending/text/Sound 1824.txt b/data/pending/text/Sound 1824.txt new file mode 100644 index 0000000000000000000000000000000000000000..d95cdfd88f4999b4f417426cb31b3668e16b4ce7 --- /dev/null +++ b/data/pending/text/Sound 1824.txt @@ -0,0 +1 @@ +دونك ليميساج هادوك اللولين باسك انت درت \ No newline at end of file diff --git a/data/pending/text/Sound 1825.txt b/data/pending/text/Sound 1825.txt new file mode 100644 index 0000000000000000000000000000000000000000..64c67f702a7b37be66ea560dccf027d541ec7ab4 --- /dev/null +++ b/data/pending/text/Sound 1825.txt @@ -0,0 +1 @@ +فروستاب وكتبت ميساج \ No newline at end of file diff --git a/data/pending/text/Sound 1826.txt b/data/pending/text/Sound 1826.txt new file mode 100644 index 0000000000000000000000000000000000000000..8481e677368c02d8883f97dd45b93fe1111c3a9f --- /dev/null +++ b/data/pending/text/Sound 1826.txt @@ -0,0 +1 @@ +وعلاش انحابل ندخل معاك فاتصال \ No newline at end of file diff --git a/data/pending/text/Sound 1827.txt b/data/pending/text/Sound 1827.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b20bddde119fe29dd135673b6f25da4afbfa971 --- /dev/null +++ b/data/pending/text/Sound 1827.txt @@ -0,0 +1 @@ +الاولا انا نفلتري باش شكون لي نزيدهم وشكون لي نرفض باسكساعات هو نرفض كناك شينو لوك ويست \ No newline at end of file diff --git a/data/pending/text/Sound 1828.txt b/data/pending/text/Sound 1828.txt new file mode 100644 index 0000000000000000000000000000000000000000..211175851c27d3daf07b4cd181f424bf76688503 --- /dev/null +++ b/data/pending/text/Sound 1828.txt @@ -0,0 +1 @@ +تجيني عنا كونيكشنوب الكواستوع فلين كتيان \ No newline at end of file diff --git a/data/pending/text/Sound 1829.txt b/data/pending/text/Sound 1829.txt new file mode 100644 index 0000000000000000000000000000000000000000..21a7fc6abe93a96a042f4a2fc1c2af6c9453b542 --- /dev/null +++ b/data/pending/text/Sound 1829.txt @@ -0,0 +1 @@ +من كانوواحد ما يهضر ني فرونسي ني عربية ني اونجلي \ No newline at end of file diff --git a/data/pending/text/Sound 1830.txt b/data/pending/text/Sound 1830.txt new file mode 100644 index 0000000000000000000000000000000000000000..81a38306d4879c5f5b08a2716d30cf4ee4c2fd7b --- /dev/null +++ b/data/pending/text/Sound 1830.txt @@ -0,0 +1 @@ +مكاش بلاد ما عباديش انا ما عندي حتا علاقة مح ولاش نزيدك فلين قتان \ No newline at end of file diff --git a/data/pending/text/Sound 1831.txt b/data/pending/text/Sound 1831.txt new file mode 100644 index 0000000000000000000000000000000000000000..f578184eb0eb66cce3cdf5421119283e2a412a91 --- /dev/null +++ b/data/pending/text/Sound 1831.txt @@ -0,0 +1 @@ +يارنوت جاستالنامبعور انا ايض \ No newline at end of file diff --git a/data/pending/text/Sound 1832.txt b/data/pending/text/Sound 1832.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe10f6b3ccfaa6a154a430f7b4642463a03261e2 --- /dev/null +++ b/data/pending/text/Sound 1832.txt @@ -0,0 +1 @@ +ما نيش نحوسش انا باش نزيد انا باش نطلع \ No newline at end of file diff --git a/data/pending/text/Sound 1833.txt b/data/pending/text/Sound 1833.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4212f6e6028af839b67ba1c9a44c8cc72e558ff --- /dev/null +++ b/data/pending/text/Sound 1833.txt @@ -0,0 +1 @@ +ويكون عندي مئة الف فين نجدناء \ No newline at end of file diff --git a/data/pending/text/Sound 1834.txt b/data/pending/text/Sound 1834.txt new file mode 100644 index 0000000000000000000000000000000000000000..db9e00b15417f5a1c7d03f3cdf72c21940fa6a24 --- /dev/null +++ b/data/pending/text/Sound 1834.txt @@ -0,0 +1 @@ +اي نوط تيدشيو ستاد \ No newline at end of file diff --git a/data/pending/text/Sound 1835.txt b/data/pending/text/Sound 1835.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ed1ca626a753de67b41427a66f1309a410f1087 --- /dev/null +++ b/data/pending/text/Sound 1835.txt @@ -0,0 +1 @@ +وشنحاب منحب \ No newline at end of file diff --git a/data/pending/text/Sound 1836.txt b/data/pending/text/Sound 1836.txt new file mode 100644 index 0000000000000000000000000000000000000000..33ccf57d4bfdd6df32b2eb0796822310d2b2f532 --- /dev/null +++ b/data/pending/text/Sound 1836.txt @@ -0,0 +1 @@ +مني فرولة ش نشفتاني حب كواليتي اوفالكوانتتي \ No newline at end of file diff --git a/data/pending/text/Sound 1837.txt b/data/pending/text/Sound 1837.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0873b99eab93ad26684a69dc454a66b30daa9f3 --- /dev/null +++ b/data/pending/text/Sound 1837.txt @@ -0,0 +1 @@ +دونك انا نشوف نشوف فالبروفايل تاعا الانسان نشوف واش كتب لي \ No newline at end of file diff --git a/data/pending/text/Sound 1838.txt b/data/pending/text/Sound 1838.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c54168a45cfdabca8b466efa0b9e62b99891661 --- /dev/null +++ b/data/pending/text/Sound 1838.txt @@ -0,0 +1 @@ +باش نزيدو وكاين نلقا ميساج \ No newline at end of file diff --git a/data/pending/text/Sound 1839.txt b/data/pending/text/Sound 1839.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b0853991bab18e860f445de46a8e67555873020 --- /dev/null +++ b/data/pending/text/Sound 1839.txt @@ -0,0 +1 @@ +سم لايز د الانفيتايشل \ No newline at end of file diff --git a/data/pending/text/Sound 1840.txt b/data/pending/text/Sound 1840.txt new file mode 100644 index 0000000000000000000000000000000000000000..743fe7d3e4c69d7e0140ef0df3eb9a01c080575a --- /dev/null +++ b/data/pending/text/Sound 1840.txt @@ -0,0 +1 @@ +دي السليد توكم فسايشل كاين كل مة نستعملها بزاف انا فكاين \ No newline at end of file diff --git a/data/pending/text/Sound 1841.txt b/data/pending/text/Sound 1841.txt new file mode 100644 index 0000000000000000000000000000000000000000..cccdca5a8689f48c6007f1a9d460f33a5d1ddc4f --- /dev/null +++ b/data/pending/text/Sound 1841.txt @@ -0,0 +1 @@ +كيكونو عندي \ No newline at end of file diff --git a/data/pending/text/Sound 1842.txt b/data/pending/text/Sound 1842.txt new file mode 100644 index 0000000000000000000000000000000000000000..b850d3f340feafb0986d84f7d57235aa293c8ea5 --- /dev/null +++ b/data/pending/text/Sound 1842.txt @@ -0,0 +1 @@ +الناس نتعامل معهم فالبراندينغ وفالبرسن بلاندي \ No newline at end of file diff --git a/data/pending/text/Sound 1843.txt b/data/pending/text/Sound 1843.txt new file mode 100644 index 0000000000000000000000000000000000000000..f538ca8621baee785640afca5a2e6f49652b0aae --- /dev/null +++ b/data/pending/text/Sound 1843.txt @@ -0,0 +1 @@ +نكول لهم يفنو \ No newline at end of file diff --git a/data/pending/text/Sound 1844.txt b/data/pending/text/Sound 1844.txt new file mode 100644 index 0000000000000000000000000000000000000000..44650f01ffe3cc105fff6e19a911976b7bd7a579 --- /dev/null +++ b/data/pending/text/Sound 1844.txt @@ -0,0 +1 @@ +كون فلو سيشن \ No newline at end of file diff --git a/data/pending/text/Sound 1845.txt b/data/pending/text/Sound 1845.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec05ec369639120a6dab8fd908adf6a1c47f70af --- /dev/null +++ b/data/pending/text/Sound 1845.txt @@ -0,0 +1 @@ +نوك مفوجن \ No newline at end of file diff --git a/data/pending/text/Sound 1846.txt b/data/pending/text/Sound 1846.txt new file mode 100644 index 0000000000000000000000000000000000000000..27e85e009fc6b53e981e0a9c66f99b455df190cf --- /dev/null +++ b/data/pending/text/Sound 1846.txt @@ -0,0 +1 @@ +الا ما كانش \ No newline at end of file diff --git a/data/pending/text/Sound 1847.txt b/data/pending/text/Sound 1847.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbbe1c0b37b55b5a372d68638d108ab7d268f108 --- /dev/null +++ b/data/pending/text/Sound 1847.txt @@ -0,0 +1 @@ +الكونفيرساسيون ما كانش حوار \ No newline at end of file diff --git a/data/pending/text/Sound 1848.txt b/data/pending/text/Sound 1848.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef93543df7c77af84ce9fd139c770ca731e96e70 --- /dev/null +++ b/data/pending/text/Sound 1848.txt @@ -0,0 +1 @@ +ما كانش اوبرتونيتيه تعبيز ناس ولاتع خدمة ولا دونك لازم \ No newline at end of file diff --git a/data/pending/text/Sound 1849.txt b/data/pending/text/Sound 1849.txt new file mode 100644 index 0000000000000000000000000000000000000000..b86fed0b77fde35bb0c583d0bcef41d83c3206ca --- /dev/null +++ b/data/pending/text/Sound 1849.txt @@ -0,0 +1 @@ +دكونفرسايش لازم حوار لازم \ No newline at end of file diff --git a/data/pending/text/Sound 1850.txt b/data/pending/text/Sound 1850.txt new file mode 100644 index 0000000000000000000000000000000000000000..99f08200bfed0c5b3ec3d7359d31416b5fc7078f --- /dev/null +++ b/data/pending/text/Sound 1850.txt @@ -0,0 +1 @@ +الانسان يبدا \ No newline at end of file diff --git a/data/pending/text/Sound 1851.txt b/data/pending/text/Sound 1851.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cdefadb6cb5fe8731bf0b194a09b8c774a60821 --- /dev/null +++ b/data/pending/text/Sound 1851.txt @@ -0,0 +1 @@ +ينشط الشوية لها سما \ No newline at end of file diff --git a/data/pending/text/Sound 1852.txt b/data/pending/text/Sound 1852.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e408d567a1d093091a5f670822a9c021be7ac43 --- /dev/null +++ b/data/pending/text/Sound 1852.txt @@ -0,0 +1 @@ +دونك انا واش النصيحة للمدها تاني للمستمعين \ No newline at end of file diff --git a/data/pending/text/Sound 1853.txt b/data/pending/text/Sound 1853.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9e178ce3d21390b2d6cc4398a6640322102a3ab --- /dev/null +++ b/data/pending/text/Sound 1853.txt @@ -0,0 +1 @@ +قبل ما تروحو تو تشويت لي نجتي نتاعكم وقالاناسمعنا مقران ومع طاها وكاع نزيدو وجي تجي تي تزيد كما بوكيمون \ No newline at end of file diff --git a/data/pending/text/Sound 1854.txt b/data/pending/text/Sound 1854.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cd35e9879d8ebd494f767f06bf5c0368a33f537 --- /dev/null +++ b/data/pending/text/Sound 1854.txt @@ -0,0 +1 @@ +قبل ما تبداو \ No newline at end of file diff --git a/data/pending/text/Sound 1855.txt b/data/pending/text/Sound 1855.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e7c1c9e1c1aed856e141a824e000df2a01733ba --- /dev/null +++ b/data/pending/text/Sound 1855.txt @@ -0,0 +1 @@ +فهاد الناس روحو ديجاه فلاليس التاع الناس لي عندكم \ No newline at end of file diff --git a/data/pending/text/Sound 1856.txt b/data/pending/text/Sound 1856.txt new file mode 100644 index 0000000000000000000000000000000000000000..11f5311a87d384f5c47bc92b83b908531090c01f --- /dev/null +++ b/data/pending/text/Sound 1856.txt @@ -0,0 +1 @@ +وبعت لهم دي ميساج \ No newline at end of file diff --git a/data/pending/text/Sound 1857.txt b/data/pending/text/Sound 1857.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b90ca33cb36d5466c388d48229f5a30479864f4 --- /dev/null +++ b/data/pending/text/Sound 1857.txt @@ -0,0 +1 @@ +حياوهم عاد نسميو نسميها \ No newline at end of file diff --git a/data/pending/text/Sound 1858.txt b/data/pending/text/Sound 1858.txt new file mode 100644 index 0000000000000000000000000000000000000000..74587b31863271d545c68c084e39633229376336 --- /dev/null +++ b/data/pending/text/Sound 1858.txt @@ -0,0 +1 @@ +فستابس لها \ No newline at end of file diff --git a/data/pending/text/Sound 1859.txt b/data/pending/text/Sound 1859.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e82e1eb30454caa0ff40713c088c92404259ef1 --- /dev/null +++ b/data/pending/text/Sound 1859.txt @@ -0,0 +1 @@ +خدمتو من قولها الدينا ميزيل وغيزو صافي كي كيفاش تح \ No newline at end of file diff --git a/data/pending/text/Sound 1860.txt b/data/pending/text/Sound 1860.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f99242376e8bf315ddd97f8c3d1746180873418 --- /dev/null +++ b/data/pending/text/Sound 1860.txt @@ -0,0 +1 @@ +ديال دينا ميكية \ No newline at end of file diff --git a/data/pending/text/Sound 1861.txt b/data/pending/text/Sound 1861.txt new file mode 100644 index 0000000000000000000000000000000000000000..337a5f974cb4cf876c225204489cfb9b2f61158b --- /dev/null +++ b/data/pending/text/Sound 1861.txt @@ -0,0 +1 @@ +حتا فالنتوركلي عندك طروح الناس لي تعرفهم \ No newline at end of file diff --git a/data/pending/text/Sound 1862.txt b/data/pending/text/Sound 1862.txt new file mode 100644 index 0000000000000000000000000000000000000000..95c8c7ac3bbd1832ffcb653ed61d77844fc3c891 --- /dev/null +++ b/data/pending/text/Sound 1862.txt @@ -0,0 +1 @@ +راك زايدهم فلينكتين بتحجام تكلمت معهم \ No newline at end of file diff --git a/data/pending/text/Sound 1863.txt b/data/pending/text/Sound 1863.txt new file mode 100644 index 0000000000000000000000000000000000000000..5df9d416bebba80649b0db8eeae66c1282ba30ef --- /dev/null +++ b/data/pending/text/Sound 1863.txt @@ -0,0 +1 @@ +وقال ماشيو ايكس ولا مدام اكراك \ No newline at end of file diff --git a/data/pending/text/Sound 1864.txt b/data/pending/text/Sound 1864.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0ba73b45a651ba5c5f2f286738ab2e341f32d0f --- /dev/null +++ b/data/pending/text/Sound 1864.txt @@ -0,0 +1 @@ +عندنا تلت سنين وراناكونيكتيف لين ككاين \ No newline at end of file diff --git a/data/pending/text/Sound 1865.txt b/data/pending/text/Sound 1865.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad5c04a440757580b6978302a643152037666bb2 --- /dev/null +++ b/data/pending/text/Sound 1865.txt @@ -0,0 +1 @@ +وجامي تكلمنا نشت بلي بارطاجيتي تالتلشوس ولا بدلتي خدمة ولا قرايتي هدا ولا قرايت هدا \ No newline at end of file diff --git a/data/pending/text/Sound 1866.txt b/data/pending/text/Sound 1866.txt new file mode 100644 index 0000000000000000000000000000000000000000..750b39bf168c8986ffc1293b2642898dae956c4b --- /dev/null +++ b/data/pending/text/Sound 1866.txt @@ -0,0 +1 @@ +وشراعيك نتكلمو ولا \ No newline at end of file diff --git a/data/pending/text/Sound 1867.txt b/data/pending/text/Sound 1867.txt new file mode 100644 index 0000000000000000000000000000000000000000..1507af2452c0f0be48aff7a4fc71135f3dfed9a3 --- /dev/null +++ b/data/pending/text/Sound 1867.txt @@ -0,0 +1 @@ +وتوتبعت ميساج \ No newline at end of file diff --git a/data/pending/text/Sound 1868.txt b/data/pending/text/Sound 1868.txt new file mode 100644 index 0000000000000000000000000000000000000000..7789af0e9345a205e9ca0d44c7ac252bfd6d651f --- /dev/null +++ b/data/pending/text/Sound 1868.txt @@ -0,0 +1 @@ +اوكي مقرن نسؤال الاخير من بعد ان شاء الله رانا نديرو حلقة تانيا ان شاء الله \ No newline at end of file diff --git a/data/pending/text/Sound 1869.txt b/data/pending/text/Sound 1869.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7f28ae6003b1ee3505eedba1d375263c9b9c6d5 --- /dev/null +++ b/data/pending/text/Sound 1869.txt @@ -0,0 +1 @@ +نتفشي شرايك اليوم \ No newline at end of file diff --git a/data/pending/text/Sound 1870.txt b/data/pending/text/Sound 1870.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec933c2bf6b828307b74bb798dcbc33aac50c49d --- /dev/null +++ b/data/pending/text/Sound 1870.txt @@ -0,0 +1 @@ +هدا النتور كن قلنا نديروه واش هما الخصائص لي الازم يكونو عند الناس \ No newline at end of file diff --git a/data/pending/text/Sound 1871.txt b/data/pending/text/Sound 1871.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1f9fcdf7f0d506f4355ae8353b193112642cfb --- /dev/null +++ b/data/pending/text/Sound 1871.txt @@ -0,0 +1 @@ +باش كيكون يدخل فاتصال مع واحد \ No newline at end of file diff --git a/data/pending/text/Sound 1872.txt b/data/pending/text/Sound 1872.txt new file mode 100644 index 0000000000000000000000000000000000000000..75ad609a4f04d31f125f42bdc609f90decefeb4a --- /dev/null +++ b/data/pending/text/Sound 1872.txt @@ -0,0 +1 @@ +وتحكي ناقبل علا انك انت تكون متلا تضحاك متلا \ No newline at end of file diff --git a/data/pending/text/Sound 1873.txt b/data/pending/text/Sound 1873.txt new file mode 100644 index 0000000000000000000000000000000000000000..2118b10d12ef310ac420f0366176bf1b65b37e0c --- /dev/null +++ b/data/pending/text/Sound 1873.txt @@ -0,0 +1 @@ +مد تكون يعني كما نقولو والكامن \ No newline at end of file diff --git a/data/pending/text/Sound 1874.txt b/data/pending/text/Sound 1874.txt new file mode 100644 index 0000000000000000000000000000000000000000..188c697698bf0fce1e3284a46287333025a391dd --- /dev/null +++ b/data/pending/text/Sound 1874.txt @@ -0,0 +1 @@ +كيفاش الانسان راه يقدر يكون \ No newline at end of file diff --git a/data/pending/text/Sound 1875.txt b/data/pending/text/Sound 1875.txt new file mode 100644 index 0000000000000000000000000000000000000000..848de2795ff2cda9e81e4a024d03239d803a525b --- /dev/null +++ b/data/pending/text/Sound 1875.txt @@ -0,0 +1 @@ +يعني الناس يشوفو البروفايل تلاعو وما يخافوش منو يدخلو فيكو ناكشين معه لانه هاديك \ No newline at end of file diff --git a/data/pending/text/Sound 1876.txt b/data/pending/text/Sound 1876.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2cd600db103fdbf0235692458a36bf175d1f34b --- /dev/null +++ b/data/pending/text/Sound 1876.txt @@ -0,0 +1 @@ +راها تفتح لك ابواب جديد \ No newline at end of file diff --git a/data/pending/text/Sound 1877.txt b/data/pending/text/Sound 1877.txt new file mode 100644 index 0000000000000000000000000000000000000000..343555aff0716055a83de05ec84b5865632c9831 --- /dev/null +++ b/data/pending/text/Sound 1877.txt @@ -0,0 +1 @@ +الا نهضرو علا لينتين كما قولت التلازم لي البروفيل اتاعاك يتجاوب وشنو هما \ No newline at end of file diff --git a/data/pending/text/Sound 1878.txt b/data/pending/text/Sound 1878.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d17b0c85c0711dd11b085969fd359776b4e7fb1 --- /dev/null +++ b/data/pending/text/Sound 1878.txt @@ -0,0 +1 @@ +الحوايج لا ميسحوسو عليهم من الجمهور المستهدف ديالك متلا الا \ No newline at end of file diff --git a/data/pending/text/Sound 1879.txt b/data/pending/text/Sound 1879.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa237101808c69c7f05952f6f674caa7d3394242 --- /dev/null +++ b/data/pending/text/Sound 1879.txt @@ -0,0 +1 @@ +انا البروفيل تاعي \ No newline at end of file diff --git a/data/pending/text/Sound 1880.txt b/data/pending/text/Sound 1880.txt new file mode 100644 index 0000000000000000000000000000000000000000..94544f0bd3da9e0a4fac785c86284a9864e3c47f --- /dev/null +++ b/data/pending/text/Sound 1880.txt @@ -0,0 +1 @@ +اغلبية د الناس لي يجوب البروفيل كايعم يحوشو باش يحسسنو \ No newline at end of file diff --git a/data/pending/text/Sound 1881.txt b/data/pending/text/Sound 1881.txt new file mode 100644 index 0000000000000000000000000000000000000000..cabf967624fb7f6411f1e9d8770531b196a8beb5 --- /dev/null +++ b/data/pending/text/Sound 1881.txt @@ -0,0 +1 @@ +سمعة ولا \ No newline at end of file diff --git a/data/pending/text/Sound 1882.txt b/data/pending/text/Sound 1882.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d8551204e03808e22a90995fe60a6aab7da600f --- /dev/null +++ b/data/pending/text/Sound 1882.txt @@ -0,0 +1 @@ +بروسن بلان تاحهم ولا كيفاش يحس شنو لي نتي نتاحهم \ No newline at end of file diff --git a/data/pending/text/Sound 1883.txt b/data/pending/text/Sound 1883.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce8f854e4ebb7275206f176b4280ccb2d04dc2fa --- /dev/null +++ b/data/pending/text/Sound 1883.txt @@ -0,0 +1 @@ +كين لحقو لي انتي نتاعي \ No newline at end of file diff --git a/data/pending/text/Sound 1884.txt b/data/pending/text/Sound 1884.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4c0ddcf96c09f3ac3361a8746014555b1ff9aea --- /dev/null +++ b/data/pending/text/Sound 1884.txt @@ -0,0 +1 @@ +تزيد الفكرة هادي فتستغرص لان \ No newline at end of file diff --git a/data/pending/text/Sound 1885.txt b/data/pending/text/Sound 1885.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8a642fe3ec24c1322797eceaf1eddfb16f1ee60 --- /dev/null +++ b/data/pending/text/Sound 1885.txt @@ -0,0 +1 @@ +نتجاوب علا \ No newline at end of file diff --git a/data/pending/text/Sound 1886.txt b/data/pending/text/Sound 1886.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bfd2d021329348e4d08579355b91a0472b89eda --- /dev/null +++ b/data/pending/text/Sound 1886.txt @@ -0,0 +1 @@ +هادوك المخاوف ولعا دوك الاسئلة لي عندهم \ No newline at end of file diff --git a/data/pending/text/Sound 1887.txt b/data/pending/text/Sound 1887.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce487f9d6b2d3537628243fd1be9b6156d1d0524 --- /dev/null +++ b/data/pending/text/Sound 1887.txt @@ -0,0 +1 @@ +تعليلتم يكون لكتين مبروفي لتاعاك اوبتيميزي \ No newline at end of file diff --git a/data/pending/text/Sound 1888.txt b/data/pending/text/Sound 1888.txt new file mode 100644 index 0000000000000000000000000000000000000000..1311b29a4a4626d08bf4210e738914dfe23b8df6 --- /dev/null +++ b/data/pending/text/Sound 1888.txt @@ -0,0 +1 @@ +الازم يكون اوء ولكمينغ ما \ No newline at end of file diff --git a/data/pending/text/Sound 1889.txt b/data/pending/text/Sound 1889.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f659d3de44b2f8b33abe4423a294d07a57ac86e --- /dev/null +++ b/data/pending/text/Sound 1889.txt @@ -0,0 +1 @@ +الجانب \ No newline at end of file diff --git a/data/pending/text/Sound 1890.txt b/data/pending/text/Sound 1890.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e6f941655527ec6aa510232adc0cc88957e3e0b --- /dev/null +++ b/data/pending/text/Sound 1890.txt @@ -0,0 +1 @@ +الصور من جنب السمعي البصريتاني الا قدرت \ No newline at end of file diff --git a/data/pending/text/Sound 1891.txt b/data/pending/text/Sound 1891.txt new file mode 100644 index 0000000000000000000000000000000000000000..c92696e64464be9bfbdf05ee578b0e8f21bcc364 --- /dev/null +++ b/data/pending/text/Sound 1891.txt @@ -0,0 +1 @@ +ويكون عندك تاني سوشل البروف \ No newline at end of file diff --git a/data/pending/text/Sound 1892.txt b/data/pending/text/Sound 1892.txt new file mode 100644 index 0000000000000000000000000000000000000000..194f8b300b6b9f8d1e27e9386f0f2f9902cca319 --- /dev/null +++ b/data/pending/text/Sound 1892.txt @@ -0,0 +1 @@ +خاصة فلنتور كاينغها لا لازم \ No newline at end of file diff --git a/data/pending/text/Sound 1893.txt b/data/pending/text/Sound 1893.txt new file mode 100644 index 0000000000000000000000000000000000000000..56a6f9663976b8c1e8df833969ce0c1dc3775862 --- /dev/null +++ b/data/pending/text/Sound 1893.txt @@ -0,0 +1 @@ +يكونو عندك متلا ركمن ديشنس يعني ناس واحد خرين يتكلمو عليك \ No newline at end of file diff --git a/data/pending/text/Sound 1894.txt b/data/pending/text/Sound 1894.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbe7f42801ca6f7d6c5fc36bf689e4ac7a656235 --- /dev/null +++ b/data/pending/text/Sound 1894.txt @@ -0,0 +1 @@ +لانه الا روماركيتو فلينتين وفالاغلبية التاع الموقع التوصل الاجتماعي \ No newline at end of file diff --git a/data/pending/text/Sound 1895.txt b/data/pending/text/Sound 1895.txt new file mode 100644 index 0000000000000000000000000000000000000000..c79735b730139e9bca6506c4a0db6d68ba61d631 --- /dev/null +++ b/data/pending/text/Sound 1895.txt @@ -0,0 +1 @@ +انت تكلم علا نفسك \ No newline at end of file diff --git a/data/pending/text/Sound 1896.txt b/data/pending/text/Sound 1896.txt new file mode 100644 index 0000000000000000000000000000000000000000..634bee62bf68570044d4df58ab14966c0a17cb85 --- /dev/null +++ b/data/pending/text/Sound 1896.txt @@ -0,0 +1 @@ +يعني فيه شوية من نار الجاسية \ No newline at end of file diff --git a/data/pending/text/Sound 1897.txt b/data/pending/text/Sound 1897.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3a9f1318f297296b0b12f53c2883b0c25a4b965 --- /dev/null +++ b/data/pending/text/Sound 1897.txt @@ -0,0 +1 @@ +يعني الركب من ديشعم \ No newline at end of file diff --git a/data/pending/text/Sound 1898.txt b/data/pending/text/Sound 1898.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ae704bd973a33aacc48f3efb9dbe33a2f8e9eb7 --- /dev/null +++ b/data/pending/text/Sound 1898.txt @@ -0,0 +1 @@ +ولكادة هادوك كمبنسيز والركمن ديشانز \ No newline at end of file diff --git a/data/pending/text/Sound 1899.txt b/data/pending/text/Sound 1899.txt new file mode 100644 index 0000000000000000000000000000000000000000..648e47f212cbed40903543ff38178173b951c6ec --- /dev/null +++ b/data/pending/text/Sound 1899.txt @@ -0,0 +1 @@ +الطريقة الوحيدة لي تخلي الناس واحد خرين وهما \ No newline at end of file diff --git a/data/pending/text/Sound 1900.txt b/data/pending/text/Sound 1900.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ea6cb7d397b316ce08e0b6913662e710ff81f34 --- /dev/null +++ b/data/pending/text/Sound 1900.txt @@ -0,0 +1 @@ +لي يمدو \ No newline at end of file diff --git a/data/pending/text/Sound 1901.txt b/data/pending/text/Sound 1901.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3938457b2196f91161ac752d386017e0dea3916 --- /dev/null +++ b/data/pending/text/Sound 1901.txt @@ -0,0 +1 @@ +دار ابروف ويقول وصح \ No newline at end of file diff --git a/data/pending/text/Sound 1902.txt b/data/pending/text/Sound 1902.txt new file mode 100644 index 0000000000000000000000000000000000000000..eccdf7f37bb73224c286a4e2aed6ddbb3f8cda05 --- /dev/null +++ b/data/pending/text/Sound 1902.txt @@ -0,0 +1 @@ +انا خدمت مع طاها انا صح انا خدمت مع زوبير وها وها و وعليش ولاش \ No newline at end of file diff --git a/data/pending/text/Sound 1903.txt b/data/pending/text/Sound 1903.txt new file mode 100644 index 0000000000000000000000000000000000000000..5be72c15c3f7f4420b9ca9ab378cc728db88c12d --- /dev/null +++ b/data/pending/text/Sound 1903.txt @@ -0,0 +1 @@ +وها هو شنو هو الاودكم لي خمور ما خدمت معاك \ No newline at end of file diff --git a/data/pending/text/Sound 1904.txt b/data/pending/text/Sound 1904.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ad870d091c88a7d92fba514b6b574e17a9620de --- /dev/null +++ b/data/pending/text/Sound 1904.txt @@ -0,0 +1 @@ +دونك انا نشوف \ No newline at end of file diff --git a/data/pending/text/Sound 1905.txt b/data/pending/text/Sound 1905.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf621ac59985e716092a963792cb43b538e3b0a6 --- /dev/null +++ b/data/pending/text/Sound 1905.txt @@ -0,0 +1 @@ +من جانب هداك الجماليات و \ No newline at end of file diff --git a/data/pending/text/Sound 1906.txt b/data/pending/text/Sound 1906.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fb737aec6a0dbc1411229f3f166467532ebee17 --- /dev/null +++ b/data/pending/text/Sound 1906.txt @@ -0,0 +1 @@ +وحسن الصورة وحسن الكتابة كيفاش تكتب يعني اريداكسيون واب ويكون عندك \ No newline at end of file diff --git a/data/pending/text/Sound 1907.txt b/data/pending/text/Sound 1907.txt new file mode 100644 index 0000000000000000000000000000000000000000..29557ef6863f2502228dc46214fc2010d50e4843 --- /dev/null +++ b/data/pending/text/Sound 1907.txt @@ -0,0 +1 @@ +دير لرايتكيور وتسلي له موكلي له يخلو الناس لي جا تجيبوه \ No newline at end of file diff --git a/data/pending/text/Sound 1908.txt b/data/pending/text/Sound 1908.txt new file mode 100644 index 0000000000000000000000000000000000000000..6394b643cb1c8052dd859972045cdf260c1a2be6 --- /dev/null +++ b/data/pending/text/Sound 1908.txt @@ -0,0 +1 @@ +لانوبن متلا الا انت كنت فلايتي \ No newline at end of file diff --git a/data/pending/text/Sound 1909.txt b/data/pending/text/Sound 1909.txt new file mode 100644 index 0000000000000000000000000000000000000000..b56de4842e30c78ca3446222d126453ea2732bed --- /dev/null +++ b/data/pending/text/Sound 1909.txt @@ -0,0 +1 @@ +ولا كنت \ No newline at end of file diff --git a/data/pending/text/Sound 1910.txt b/data/pending/text/Sound 1910.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ba8b2356d49c05629d76136018f4323c0c7584c --- /dev/null +++ b/data/pending/text/Sound 1910.txt @@ -0,0 +1 @@ +الارشي تكتور \ No newline at end of file diff --git a/data/pending/text/Sound 1911.txt b/data/pending/text/Sound 1911.txt new file mode 100644 index 0000000000000000000000000000000000000000..b231c8ea3e730d8d20337de6e4528550cef47733 --- /dev/null +++ b/data/pending/text/Sound 1911.txt @@ -0,0 +1 @@ +وما كتبش كلمت ارشتيكتيور ما كتبش تروادي ما كتبش هادي ما كتبش هادي \ No newline at end of file diff --git a/data/pending/text/Sound 1912.txt b/data/pending/text/Sound 1912.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae096483eb8cd75e27669b6120a96872c04febff --- /dev/null +++ b/data/pending/text/Sound 1912.txt @@ -0,0 +1 @@ +الناس ما غاهش يلقاوك اصلا \ No newline at end of file diff --git a/data/pending/text/Sound 1913.txt b/data/pending/text/Sound 1913.txt new file mode 100644 index 0000000000000000000000000000000000000000..093ad9e731b6285b88ec8e0e90a510bacbb7e9ae --- /dev/null +++ b/data/pending/text/Sound 1913.txt @@ -0,0 +1 @@ +لازم الالكورين الما باكلات متغديه الخوارت زع لتعلينكتا \ No newline at end of file diff --git a/data/pending/text/Sound 1914.txt b/data/pending/text/Sound 1914.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a38d79a391c38d3c3b7b7f3935106cbb49f3f4 --- /dev/null +++ b/data/pending/text/Sound 1914.txt @@ -0,0 +1 @@ +لازمتغديه بدلروايتني الوارت وما عاد كيلحق التم \ No newline at end of file diff --git a/data/pending/text/Sound 1915.txt b/data/pending/text/Sound 1915.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d00e2765cff23e2e3ec224e01324c046ab9f59a --- /dev/null +++ b/data/pending/text/Sound 1915.txt @@ -0,0 +1 @@ +اللازم من جانب \ No newline at end of file diff --git a/data/pending/text/Sound 1916.txt b/data/pending/text/Sound 1916.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e5d567294c148d50d77752e4d963103ba3c8239 --- /dev/null +++ b/data/pending/text/Sound 1916.txt @@ -0,0 +1 @@ +الجماليات و \ No newline at end of file diff --git a/data/pending/text/Sound 1917.txt b/data/pending/text/Sound 1917.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e37229ab2f91e6212e357ab1a08a31fe4682b80 --- /dev/null +++ b/data/pending/text/Sound 1917.txt @@ -0,0 +1 @@ +والصور يكونو ملاح \ No newline at end of file diff --git a/data/pending/text/Sound 1918.txt b/data/pending/text/Sound 1918.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae85128d55b844760564bd87949d15044d1550e2 --- /dev/null +++ b/data/pending/text/Sound 1918.txt @@ -0,0 +1 @@ +بصح تاني من الجنب ليروكومونداسيون ناسيويش كتبو عليك \ No newline at end of file diff --git a/data/pending/text/Sound 1919.txt b/data/pending/text/Sound 1919.txt new file mode 100644 index 0000000000000000000000000000000000000000..1be5b228d663ff5c47f7fba28ea70d3957272e03 --- /dev/null +++ b/data/pending/text/Sound 1919.txt @@ -0,0 +1 @@ +يو تزيد هاديك علا قط \ No newline at end of file diff --git a/data/pending/text/Sound 1920.txt b/data/pending/text/Sound 1920.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8f39ff827b581e2760f5d38ed359f864acbd366 --- /dev/null +++ b/data/pending/text/Sound 1920.txt @@ -0,0 +1 @@ +تقة ويحب يدخل معاك فياتصال \ No newline at end of file diff --git a/data/pending/text/Sound 1921.txt b/data/pending/text/Sound 1921.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c7ec760d7847a8e18786f3f32bca077df5363ac --- /dev/null +++ b/data/pending/text/Sound 1921.txt @@ -0,0 +1 @@ +هدا فلين كانلكن \ No newline at end of file diff --git a/data/pending/text/Sound 1922.txt b/data/pending/text/Sound 1922.txt new file mode 100644 index 0000000000000000000000000000000000000000..81ad1f313d43ac3c98883f262a64e44e899dce6c --- /dev/null +++ b/data/pending/text/Sound 1922.txt @@ -0,0 +1 @@ +يوميا بان \ No newline at end of file diff --git a/data/pending/text/Sound 1923.txt b/data/pending/text/Sound 1923.txt new file mode 100644 index 0000000000000000000000000000000000000000..376aca418177aacef8a55bed46fd37d1d722b3d5 --- /dev/null +++ b/data/pending/text/Sound 1923.txt @@ -0,0 +1 @@ +بالنسبة لبرسنبلانتاعاك \ No newline at end of file diff --git a/data/pending/text/Sound 1924.txt b/data/pending/text/Sound 1924.txt new file mode 100644 index 0000000000000000000000000000000000000000..17d5f6d9d739438329052d20c4690ebe7655663d --- /dev/null +++ b/data/pending/text/Sound 1924.txt @@ -0,0 +1 @@ +تموشد حط فلينكتين \ No newline at end of file diff --git a/data/pending/text/Sound 1925.txt b/data/pending/text/Sound 1925.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dfbfcfb4d47c6319804358748303e04a3b11021 --- /dev/null +++ b/data/pending/text/Sound 1925.txt @@ -0,0 +1 @@ +يكون في نفس الخط ونالين اليوم \ No newline at end of file diff --git a/data/pending/text/Sound 1926.txt b/data/pending/text/Sound 1926.txt new file mode 100644 index 0000000000000000000000000000000000000000..483d1d3c81bf360ffa8ad48159e51bebf36cafc9 --- /dev/null +++ b/data/pending/text/Sound 1926.txt @@ -0,0 +1 @@ +مع واش تكون كشخص \ No newline at end of file diff --git a/data/pending/text/Sound 1927.txt b/data/pending/text/Sound 1927.txt new file mode 100644 index 0000000000000000000000000000000000000000..beb73cd3203b7c9fea028e643b67a55968322935 --- /dev/null +++ b/data/pending/text/Sound 1927.txt @@ -0,0 +1 @@ +ما نقدر نقدرش فلينغ ديالنا لقاك ناس ملاح وما شاء الله وتميتريزي حاجة ولا مع باش ايكون عندك قيم \ No newline at end of file diff --git a/data/pending/text/Sound 1928.txt b/data/pending/text/Sound 1928.txt new file mode 100644 index 0000000000000000000000000000000000000000..32190d2bdd78552568e98b76172d749b4ab0f9de --- /dev/null +++ b/data/pending/text/Sound 1928.txt @@ -0,0 +1 @@ +وففايجديوك حاجة اخرا ولا لوكنتلاقا بك برا \ No newline at end of file diff --git a/data/pending/text/Sound 1929.txt b/data/pending/text/Sound 1929.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecf3356a5670df58773451080b373291d05fb2d6 --- /dev/null +++ b/data/pending/text/Sound 1929.txt @@ -0,0 +1 @@ +هادي هي بصحة \ No newline at end of file diff --git a/data/pending/text/Sound 1930.txt b/data/pending/text/Sound 1930.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6778190ebb490458dc3e441371a6ce359a88bcb --- /dev/null +++ b/data/pending/text/Sound 1930.txt @@ -0,0 +1 @@ +انا اننا نشوف الحاجة المهمة \ No newline at end of file diff --git a/data/pending/text/Sound 1931.txt b/data/pending/text/Sound 1931.txt new file mode 100644 index 0000000000000000000000000000000000000000..75e91f944d6754638838241b1ccd72305cfc1273 --- /dev/null +++ b/data/pending/text/Sound 1931.txt @@ -0,0 +1 @@ +الانسان يدير \ No newline at end of file diff --git a/data/pending/text/Sound 1932.txt b/data/pending/text/Sound 1932.txt new file mode 100644 index 0000000000000000000000000000000000000000..22a8f02faec5768198452673f53c419a67660a81 --- /dev/null +++ b/data/pending/text/Sound 1932.txt @@ -0,0 +1 @@ +ديفعوني تستابس لي عدات اي \ No newline at end of file diff --git a/data/pending/text/Sound 1933.txt b/data/pending/text/Sound 1933.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d29b8b58a3b3cb20f41dcd5403ccfb3fb17919b --- /dev/null +++ b/data/pending/text/Sound 1933.txt @@ -0,0 +1 @@ +ولوردي شارد يعني تاع \ No newline at end of file diff --git a/data/pending/text/Sound 1934.txt b/data/pending/text/Sound 1934.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cb16cec159edcee1af22e47b10450bdf838a395 --- /dev/null +++ b/data/pending/text/Sound 1934.txt @@ -0,0 +1 @@ +يعرف روحو نفس \ No newline at end of file diff --git a/data/pending/text/Sound 1935.txt b/data/pending/text/Sound 1935.txt new file mode 100644 index 0000000000000000000000000000000000000000..4aadb7db55c247ad33d8ec0c760ce0be60f0a081 --- /dev/null +++ b/data/pending/text/Sound 1935.txt @@ -0,0 +1 @@ +يعرف النفس وملايح \ No newline at end of file diff --git a/data/pending/text/Sound 1936.txt b/data/pending/text/Sound 1936.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd629f60ac4dc1ad02bf06c21739b90d99823ffd --- /dev/null +++ b/data/pending/text/Sound 1936.txt @@ -0,0 +1 @@ +يعرف شنو هو الجمهور المستهدف يخير كنا متلا يوتوب ولا فيسبوك ولا \ No newline at end of file diff --git a/data/pending/text/Sound 1937.txt b/data/pending/text/Sound 1937.txt new file mode 100644 index 0000000000000000000000000000000000000000..efe85639c735fb5871617c4a2b6f0b7ad4fa6305 --- /dev/null +++ b/data/pending/text/Sound 1937.txt @@ -0,0 +1 @@ +هزاون بلاند \ No newline at end of file diff --git a/data/pending/text/Sound 1938.txt b/data/pending/text/Sound 1938.txt new file mode 100644 index 0000000000000000000000000000000000000000..80ece3de8fca43ea017050808a557fcce68f1e0b --- /dev/null +++ b/data/pending/text/Sound 1938.txt @@ -0,0 +1 @@ +ف يزاونو بلوغ ما متلا \ No newline at end of file diff --git a/data/pending/text/Sound 1939.txt b/data/pending/text/Sound 1939.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a68cacc5bffd0efa07916c06eb2d8f3ba099c4e --- /dev/null +++ b/data/pending/text/Sound 1939.txt @@ -0,0 +1 @@ +وبعد موراها \ No newline at end of file diff --git a/data/pending/text/Sound 1940.txt b/data/pending/text/Sound 1940.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bdbeb505f42a139785070ee8daff2fceb82268a --- /dev/null +++ b/data/pending/text/Sound 1940.txt @@ -0,0 +1 @@ +يقدم محتويات علا حساب بو شنو هما الميلات تعول مهرت \ No newline at end of file diff --git a/data/pending/text/Sound 1941.txt b/data/pending/text/Sound 1941.txt new file mode 100644 index 0000000000000000000000000000000000000000..08c3257465172bfa21a9bd25bc61f4a81e050c78 --- /dev/null +++ b/data/pending/text/Sound 1941.txt @@ -0,0 +1 @@ +ديالو والنات وركين كما قلت كتسوا \ No newline at end of file diff --git a/data/pending/text/Sound 1942.txt b/data/pending/text/Sound 1942.txt new file mode 100644 index 0000000000000000000000000000000000000000..0503305f1ae2e6e3c91c8aee7f0ea28a3f83fcce --- /dev/null +++ b/data/pending/text/Sound 1942.txt @@ -0,0 +1 @@ +ونباين ولا افلاين \ No newline at end of file diff --git a/data/pending/text/Sound 1943.txt b/data/pending/text/Sound 1943.txt new file mode 100644 index 0000000000000000000000000000000000000000..df79656cea0a3b5b420b196d056e66462bf32840 --- /dev/null +++ b/data/pending/text/Sound 1943.txt @@ -0,0 +1 @@ +اللازم يكون كنسيستان \ No newline at end of file diff --git a/data/pending/text/Sound 1944.txt b/data/pending/text/Sound 1944.txt new file mode 100644 index 0000000000000000000000000000000000000000..20f1db0b04cca28f02321c25021c72b30824e841 --- /dev/null +++ b/data/pending/text/Sound 1944.txt @@ -0,0 +1 @@ +الازم يكون \ No newline at end of file diff --git a/data/pending/text/Sound 1945.txt b/data/pending/text/Sound 1945.txt new file mode 100644 index 0000000000000000000000000000000000000000..2488383186f1680a6c63c32284fe404647283c5a --- /dev/null +++ b/data/pending/text/Sound 1945.txt @@ -0,0 +1 @@ +بالقيم ديالو \ No newline at end of file diff --git a/data/pending/text/Sound 1946.txt b/data/pending/text/Sound 1946.txt new file mode 100644 index 0000000000000000000000000000000000000000..7161423ddbea4e14f6c0624d1a027fd91695228d --- /dev/null +++ b/data/pending/text/Sound 1946.txt @@ -0,0 +1 @@ +ويكون عندو فوضول \ No newline at end of file diff --git a/data/pending/text/Sound 1947.txt b/data/pending/text/Sound 1947.txt new file mode 100644 index 0000000000000000000000000000000000000000..209e98e39f5c7c825aac30efe509fddb4511652b --- /dev/null +++ b/data/pending/text/Sound 1947.txt @@ -0,0 +1 @@ +وما يتجيش هنا يزوخ علينا كما قال يجي بطريقة تاع \ No newline at end of file diff --git a/data/pending/text/Sound 1948.txt b/data/pending/text/Sound 1948.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa1e3318e7ec794903a39b4769f0e9fe379a732b --- /dev/null +++ b/data/pending/text/Sound 1948.txt @@ -0,0 +1 @@ +يمدن هي بروفايت فاليوب ساح يقدر يمد اسئلة ويسمع \ No newline at end of file diff --git a/data/pending/text/Sound 1949.txt b/data/pending/text/Sound 1949.txt new file mode 100644 index 0000000000000000000000000000000000000000..e96d5ba9b0a0c1cbef1cda20612fdb168a691b16 --- /dev/null +++ b/data/pending/text/Sound 1949.txt @@ -0,0 +1 @@ +كتر من واش ما يقتر يهضر ولا باليزمبليهي هيكانشارود ادرس \ No newline at end of file diff --git a/data/pending/text/Sound 1950.txt b/data/pending/text/Sound 1950.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f652c15f2bf680a07798f416f3a09753ed8181c --- /dev/null +++ b/data/pending/text/Sound 1950.txt @@ -0,0 +1 @@ +هدا من بايب عن الاسباب الاولا يعني بالصح \ No newline at end of file diff --git a/data/pending/text/Sound 1951.txt b/data/pending/text/Sound 1951.txt new file mode 100644 index 0000000000000000000000000000000000000000..7648e9926c0ca1d448924e9e61b6dd2de3f54d64 --- /dev/null +++ b/data/pending/text/Sound 1951.txt @@ -0,0 +1 @@ +ما عرهحتش نديروها متلا في اسبوع ونستتناو رزالت يعني الازم الانسان \ No newline at end of file diff --git a/data/pending/text/Sound 1952.txt b/data/pending/text/Sound 1952.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6989dfc38ddb6fe6248b397a1d0115fd43185dd --- /dev/null +++ b/data/pending/text/Sound 1952.txt @@ -0,0 +1 @@ +يصبر شوية تشكرو جزيلا اخويا مكرا \ No newline at end of file diff --git a/data/pending/text/Sound 1953.txt b/data/pending/text/Sound 1953.txt new file mode 100644 index 0000000000000000000000000000000000000000..f47aa1b2626f71462f625664a4d149c377a7ce95 --- /dev/null +++ b/data/pending/text/Sound 1953.txt @@ -0,0 +1 @@ +مزال عندنا عديد ديال الاسئلة لاننة وخليينها لك في بارتون ان شاء الله في مرة اخرا \ No newline at end of file diff --git a/data/pending/text/Sound 1954.txt b/data/pending/text/Sound 1954.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1b4df16513bd42c5314bb7cd3f6444911ab1383 --- /dev/null +++ b/data/pending/text/Sound 1954.txt @@ -0,0 +1 @@ +صراحةدا ناسفتك دير \ No newline at end of file diff --git a/data/pending/text/Sound 1955.txt b/data/pending/text/Sound 1955.txt new file mode 100644 index 0000000000000000000000000000000000000000..491fcacfcf2d78244ea7840a170cb4d3821bbe16 --- /dev/null +++ b/data/pending/text/Sound 1955.txt @@ -0,0 +1 @@ +قلت في اول الحلقة انهورا هاد البالان سبيتوين انك \ No newline at end of file diff --git a/data/pending/text/Sound 1956.txt b/data/pending/text/Sound 1956.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6089e1c4cc46bc42e7b18886dd4801e8f396d0f --- /dev/null +++ b/data/pending/text/Sound 1956.txt @@ -0,0 +1 @@ +نر اجاسي ويلا تكون ما بانش \ No newline at end of file diff --git a/data/pending/text/Sound 1957.txt b/data/pending/text/Sound 1957.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4755b76c18a2aa62116a86174f0990f7402e9b7 --- /dev/null +++ b/data/pending/text/Sound 1957.txt @@ -0,0 +1 @@ +جاوب علا السؤال هدا كاين \ No newline at end of file diff --git a/data/pending/text/Sound 1958.txt b/data/pending/text/Sound 1958.txt new file mode 100644 index 0000000000000000000000000000000000000000..d94f78c749a8942f318f3b9131dcacb2a6d73da6 --- /dev/null +++ b/data/pending/text/Sound 1958.txt @@ -0,0 +1 @@ +مزال اسيدي علا لينكدين مزال تاني نسمعو علا التجوب تاعك مع لين كدين لوكل الجيرش لي درتها \ No newline at end of file diff --git a/data/pending/text/Sound 1959.txt b/data/pending/text/Sound 1959.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca27e057ce7d736622b65a6b59b317b4c3dad6c0 --- /dev/null +++ b/data/pending/text/Sound 1959.txt @@ -0,0 +1 @@ +وهادوك ان شء الله نخليهم الحلكة تنيا ان شاءاله لي نوعدو بها المستمعين \ No newline at end of file diff --git a/data/pending/text/Sound 1960.txt b/data/pending/text/Sound 1960.txt new file mode 100644 index 0000000000000000000000000000000000000000..35bf6b7bd8110a095cef7b20c0c624624a34d48c --- /dev/null +++ b/data/pending/text/Sound 1960.txt @@ -0,0 +1 @@ +شكرا جزيلا علا انك عطي \ No newline at end of file diff --git a/data/pending/text/Sound 1961.txt b/data/pending/text/Sound 1961.txt new file mode 100644 index 0000000000000000000000000000000000000000..e712e00166c46d17ef8cc687ce8b4af2a82d4026 --- /dev/null +++ b/data/pending/text/Sound 1961.txt @@ -0,0 +1 @@ +نا من وقتك اليوم \ No newline at end of file diff --git a/data/pending/text/Sound 1962.txt b/data/pending/text/Sound 1962.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac33bc67d092c7d3514d58750321830caa88cb71 --- /dev/null +++ b/data/pending/text/Sound 1962.txt @@ -0,0 +1 @@ +كلمة اخيرة وبعدي ان شاء الله ناخدمو تفض \ No newline at end of file diff --git a/data/pending/text/Sound 1963.txt b/data/pending/text/Sound 1963.txt new file mode 100644 index 0000000000000000000000000000000000000000..cedd1f4119ca9b0bd4dfa905ab514f95326325ef --- /dev/null +++ b/data/pending/text/Sound 1963.txt @@ -0,0 +1 @@ +اخويا بارك الله وفيكم عطيك الصحادة طاها برك الله وفيك ازوبير وشكرا لمستمي عنني \ No newline at end of file diff --git a/data/pending/text/Sound 1964.txt b/data/pending/text/Sound 1964.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba654d58f8eb9ca500936977bcf82bbbfdf669d2 --- /dev/null +++ b/data/pending/text/Sound 1964.txt @@ -0,0 +1 @@ +يعني عصر فروحي باش نخرج كاع العربية لا عندي اليوب والله حلا غدبقل يتب لا ان حسن يلا اقالت ها الا كان ا يما شنو اللهم جاء الله يا اخر العرب انا نا حدلنا راكنا حيتها \ No newline at end of file diff --git a/data/pending/text/Sound 1965.txt b/data/pending/text/Sound 1965.txt new file mode 100644 index 0000000000000000000000000000000000000000..12139f9b94de902c4599209810727dbaece52146 --- /dev/null +++ b/data/pending/text/Sound 1965.txt @@ -0,0 +1 @@ +ويبان يبان الانسان لي مال فالراديون الصراحة يبان \ No newline at end of file diff --git a/data/pending/text/Sound 1966.txt b/data/pending/text/Sound 1966.txt new file mode 100644 index 0000000000000000000000000000000000000000..59b74fa8db79e6652582a0f0e65ee9b65b128ea5 --- /dev/null +++ b/data/pending/text/Sound 1966.txt @@ -0,0 +1 @@ +عندي عندي بزاف خاص خاصة فالعمل يعني نعمل بالفرنسية والانجليزية من ستامل \ No newline at end of file diff --git a/data/pending/text/Sound 1967.txt b/data/pending/text/Sound 1967.txt new file mode 100644 index 0000000000000000000000000000000000000000..244c8f219fa8bbe5226fe646dfc9a0425a8d59af --- /dev/null +++ b/data/pending/text/Sound 1967.txt @@ -0,0 +1 @@ +لحد الان ما ما نخدمش ببالعربية \ No newline at end of file diff --git a/data/pending/text/Sound 1968.txt b/data/pending/text/Sound 1968.txt new file mode 100644 index 0000000000000000000000000000000000000000..f942b289befb34b5c7b0d4a550d377ca015ed028 --- /dev/null +++ b/data/pending/text/Sound 1968.txt @@ -0,0 +1 @@ +للاسف ان شاء الله نعاود نصح هاد الامر \ No newline at end of file diff --git a/data/pending/text/Sound 1969.txt b/data/pending/text/Sound 1969.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2701a12a06c5638d8a50dfbf280c3ef30a62ad5 --- /dev/null +++ b/data/pending/text/Sound 1969.txt @@ -0,0 +1 @@ +بصح علا عجبني الحال رتحت معكم ان شاء الله نكون يكونو المستمعين نرتاحو استفادو وبعض الامورك غيجزعي ونبقاو نكملو الاتصال انا \ No newline at end of file diff --git a/data/pending/text/Sound 1970.txt b/data/pending/text/Sound 1970.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8550870521076993b5b9a5d896647e852a52fb2 --- /dev/null +++ b/data/pending/text/Sound 1970.txt @@ -0,0 +1 @@ +كلمة الاخيرا قول قولو ربما \ No newline at end of file diff --git a/data/pending/text/Sound 1971.txt b/data/pending/text/Sound 1971.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca903148cbb26225970b728b4849862c5cfdb41a --- /dev/null +++ b/data/pending/text/Sound 1971.txt @@ -0,0 +1 @@ +طلب الناس لي يستمعو هاد الحلقة الاولا يروحو \ No newline at end of file diff --git a/data/pending/text/Sound 1972.txt b/data/pending/text/Sound 1972.txt new file mode 100644 index 0000000000000000000000000000000000000000..6307bb75b03d006e4b47880032ff2ed2871421f0 --- /dev/null +++ b/data/pending/text/Sound 1972.txt @@ -0,0 +1 @@ +يتصل بنا في \ No newline at end of file diff --git a/data/pending/text/Sound 1973.txt b/data/pending/text/Sound 1973.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d92f57e41c6fa1a65177a30f3f677bcbfe5384c --- /dev/null +++ b/data/pending/text/Sound 1973.txt @@ -0,0 +1 @@ +المواقع الطوصل اشتماع خاسة لينكتين طاهازتوبير وامقر مريش \ No newline at end of file diff --git a/data/pending/text/Sound 1974.txt b/data/pending/text/Sound 1974.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a0670e30ccc64a06d4709a4285ddfdec9f71991 --- /dev/null +++ b/data/pending/text/Sound 1974.txt @@ -0,0 +1 @@ +ويبعتونا ميساج يبعتونا رسالة يعني \ No newline at end of file diff --git a/data/pending/text/Sound 1975.txt b/data/pending/text/Sound 1975.txt new file mode 100644 index 0000000000000000000000000000000000000000..a28b17689792811b99fc0140044a52939c4c500e --- /dev/null +++ b/data/pending/text/Sound 1975.txt @@ -0,0 +1 @@ +يقولو واش وا سمعو واش اعجبهم واش ما عجبهمش ربما يطرحونا بعض الاسئلة عكدا باش الحلقة التانية ان شاء الله نقدرو مع \ No newline at end of file diff --git a/data/pending/text/Sound 1976.txt b/data/pending/text/Sound 1976.txt new file mode 100644 index 0000000000000000000000000000000000000000..237eaf6e4ff68ecdee395aa00d75c908fb43631b --- /dev/null +++ b/data/pending/text/Sound 1976.txt @@ -0,0 +1 @@ +نمشيوك ان شاء الله ان شاء الله \ No newline at end of file diff --git a/data/pending/text/Sound 1977.txt b/data/pending/text/Sound 1977.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7d64ecca30a8a19d56df8f1d20e454d75bb07d9 --- /dev/null +++ b/data/pending/text/Sound 1977.txt @@ -0,0 +1 @@ +نتلا ترحونا كل اسئلة تعكونا ونتوماو انا تروحنا كل اسئلة لي ما جاوبناش عليها فالحلقة الاولا ان شاء الله \ No newline at end of file diff --git a/data/pending/text/Sound 1978.txt b/data/pending/text/Sound 1978.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8b7145ad3b7175e5fcbf94a5427facf734c5d10 --- /dev/null +++ b/data/pending/text/Sound 1978.txt @@ -0,0 +1 @@ +باش نجاوبو عليه فالحلقة تانية ان شاء الله \ No newline at end of file diff --git a/data/pending/text/raid-audio 1300.wav.txt b/data/pending/text/raid-audio 1300.wav.txt deleted file mode 100644 index 95b5f51ad6b77a56d53d54caef529d412294eb13..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1300.wav.txt +++ /dev/null @@ -1 +0,0 @@ - يقعد ديما في نفس الحاجة لي مش يملاح \ No newline at end of file diff --git a/data/pending/text/raid-audio 1304.wav.txt b/data/pending/text/raid-audio 1304.wav.txt deleted file mode 100644 index 1436819ad697f0672a2bf551cd629e40b11e05b9..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1304.wav.txt +++ /dev/null @@ -1 +0,0 @@ - قرية بلك ما هي مزداد بالعربية مزداد حدا بلكنة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1309.wav.txt b/data/pending/text/raid-audio 1309.wav.txt deleted file mode 100644 index 3c9d27ad94b91cc7e724f5b132e6ddab9b101327..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1309.wav.txt +++ /dev/null @@ -1 +0,0 @@ - اه صحيح ايه تعجبك بـ ماكش طاح بـ طح زعمة موطاوضة وعاقلة قراري في الأمم أحب ندخل بـ ندخل بـ ندخل بـ ندخل بـ \ No newline at end of file diff --git a/data/pending/text/raid-audio 1311.wav.txt b/data/pending/text/raid-audio 1311.wav.txt deleted file mode 100644 index b6947ff6d797c893148587bcf7d6c6d614687075..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1311.wav.txt +++ /dev/null @@ -1 +0,0 @@ - انا اريد ان اعرف كيف يمكنني التقاطهم في القناة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1322.wav.txt b/data/pending/text/raid-audio 1322.wav.txt deleted file mode 100644 index e6b67e1e14070425131ef029888075f7f1338169..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1322.wav.txt +++ /dev/null @@ -1 +0,0 @@ - لكي يعاون الشعب ويكون هناك حاجة واحدة ومقارنة بينهم وحياتهم ليسوا متمسكين بالدين مقارنة بما لديهم متمسكين بالدين تجدوهم أقوى لديهم هدف يتعاركوا فيه \ No newline at end of file diff --git a/data/pending/text/raid-audio 1330.wav.txt b/data/pending/text/raid-audio 1330.wav.txt deleted file mode 100644 index 115aa7e744d7f80cd8b7690a6e02ef39976025eb..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1330.wav.txt +++ /dev/null @@ -1 +0,0 @@ - والرواية بدأت نعرف بها تأني \ No newline at end of file diff --git a/data/pending/text/raid-audio 1336.wav.txt b/data/pending/text/raid-audio 1336.wav.txt deleted file mode 100644 index 5899c42dc5063f6840d3e25384c1b4028d81c70c..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1336.wav.txt +++ /dev/null @@ -1 +0,0 @@ - بيقولك عادي مهم نبذلت الجهة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1363.wav.txt b/data/pending/text/raid-audio 1363.wav.txt deleted file mode 100644 index d88d374b63e4d39d0a894f21a9ccd7dbc386b9aa..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1363.wav.txt +++ /dev/null @@ -1 +0,0 @@ - كانت المدة 10 أيام \ No newline at end of file diff --git a/data/pending/text/raid-audio 1364.wav.txt b/data/pending/text/raid-audio 1364.wav.txt deleted file mode 100644 index f9f2d88af8dbc98c85251ad407d09245fb64dbeb..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1364.wav.txt +++ /dev/null @@ -1 +0,0 @@ - هذي من أحسن تكفلت بها الدولة الجزائرية؟ ها تكفلت بها الدولة الجزائرية ها وين دوكم؟ \ No newline at end of file diff --git a/data/pending/text/raid-audio 1375.wav.txt b/data/pending/text/raid-audio 1375.wav.txt deleted file mode 100644 index 0744449969512af1bd9238ecb2c6d20f015a74e6..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1375.wav.txt +++ /dev/null @@ -1 +0,0 @@ - بل يمكن لبناء دم يكون بانجو داهم و جداك \ No newline at end of file diff --git a/data/pending/text/raid-audio 1390.wav.txt b/data/pending/text/raid-audio 1390.wav.txt deleted file mode 100644 index cbc7d7cff9e1cfa6c7d2ffe85eb863d4c6579198..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1390.wav.txt +++ /dev/null @@ -1 +0,0 @@ - لا كان شوي حدا هما ما كانوا شعبين \ No newline at end of file diff --git a/data/pending/text/raid-audio 1402.wav.txt b/data/pending/text/raid-audio 1402.wav.txt deleted file mode 100644 index e9ae40d79b2d5da0ae5aa4a8aad88171158f4949..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1402.wav.txt +++ /dev/null @@ -1 +0,0 @@ - في الـ IMDB \ No newline at end of file diff --git a/data/pending/text/raid-audio 1408.wav.txt b/data/pending/text/raid-audio 1408.wav.txt deleted file mode 100644 index cbb9310a4dc3cb77526f23064f8246969926b866..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1408.wav.txt +++ /dev/null @@ -1 +0,0 @@ - كسرتو تاع سياسة مؤامرات فلسفة شخصيات \ No newline at end of file diff --git a/data/pending/text/raid-audio 1413.wav.txt b/data/pending/text/raid-audio 1413.wav.txt deleted file mode 100644 index 1e060bc153f982e7a20f06860d4edceb7134c135..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1413.wav.txt +++ /dev/null @@ -1 +0,0 @@ - كما برزار كما دوما دي مونغا شبه \ No newline at end of file diff --git a/data/pending/text/raid-audio 1422.wav.txt b/data/pending/text/raid-audio 1422.wav.txt deleted file mode 100644 index dfcd7935d3613e8ad3e3f8f66af6088a13c6d7f6..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1422.wav.txt +++ /dev/null @@ -1 +0,0 @@ - kleiner سرطان \ No newline at end of file diff --git a/data/pending/text/raid-audio 1447.wav.txt b/data/pending/text/raid-audio 1447.wav.txt deleted file mode 100644 index 579eca17784905e0c4b485d03fc612f7ad24b575..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1447.wav.txt +++ /dev/null @@ -1 +0,0 @@ - هي صح كاين واحد الكوتين ملك كلول \ No newline at end of file diff --git a/data/pending/text/raid-audio 1456.wav.txt b/data/pending/text/raid-audio 1456.wav.txt deleted file mode 100644 index 15e3beab22110ea423a3100d00af01a55cc2f681..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1456.wav.txt +++ /dev/null @@ -1 +0,0 @@ - وكما قلت لا نبحث عنه كما قلت في الفيديو لا نبحث عنه نعم \ No newline at end of file diff --git a/data/pending/text/raid-audio 1457.wav.txt b/data/pending/text/raid-audio 1457.wav.txt deleted file mode 100644 index fc5be0ccdaf6167ef90264dd4a86278d03f7430a..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1457.wav.txt +++ /dev/null @@ -1 +0,0 @@ - دورش أعظم \ No newline at end of file diff --git a/data/pending/text/raid-audio 1481.wav.txt b/data/pending/text/raid-audio 1481.wav.txt deleted file mode 100644 index f58f381c2472be0d7333af20b2740766f1078f71..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1481.wav.txt +++ /dev/null @@ -1 +0,0 @@ - واحتشيغ \ No newline at end of file diff --git a/data/pending/text/raid-audio 1492.wav.txt b/data/pending/text/raid-audio 1492.wav.txt deleted file mode 100644 index 59ffad7710ae39ee40b3ac80b74e55fcb08046a6..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1492.wav.txt +++ /dev/null @@ -1 +0,0 @@ - نقول في المستقبل 100 سنة 200 سنة 300 سنة ممكن تقسيم السياسي يتغير \ No newline at end of file diff --git a/data/pending/text/raid-audio 1506.wav.txt b/data/pending/text/raid-audio 1506.wav.txt deleted file mode 100644 index dc50b68947a0be7f2a329bc2328984c83c821ed7..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1506.wav.txt +++ /dev/null @@ -1 +0,0 @@ - هناك قدس أغستين كان من المجددين ومن قبل القاسويين ومن المسيحيين كانوا يتعرفون ويقدسون \ No newline at end of file diff --git a/data/pending/text/raid-audio 1509.wav.txt b/data/pending/text/raid-audio 1509.wav.txt deleted file mode 100644 index e0ed58a4b31a2a9bba3bed3890b1e6d9ee20a3aa..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1509.wav.txt +++ /dev/null @@ -1 +0,0 @@ - سمع كاين ناس حتى في النشفة عليها بيقولك حنا في السيوم قليل عليها \ No newline at end of file diff --git a/data/pending/text/raid-audio 1520.wav.txt b/data/pending/text/raid-audio 1520.wav.txt deleted file mode 100644 index de728f1755147280f30cd2029b91bca315efe6fc..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1520.wav.txt +++ /dev/null @@ -1 +0,0 @@ - تريكنت منام أبهر بأمت \ No newline at end of file diff --git a/data/pending/text/raid-audio 1536.wav.txt b/data/pending/text/raid-audio 1536.wav.txt deleted file mode 100644 index 34355ef7011765c0028e4c0ae47bcd0a4e17ba58..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1536.wav.txt +++ /dev/null @@ -1 +0,0 @@ - تجمع بين الجزائر وتونس نعم سمعت حدث يجمعهم في زودة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1543.wav.txt b/data/pending/text/raid-audio 1543.wav.txt deleted file mode 100644 index 9ad9c47a956099ac9edcd13564714cb6ded4b747..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1543.wav.txt +++ /dev/null @@ -1 +0,0 @@ - والمصابين يروحوا له \ No newline at end of file diff --git a/data/pending/text/raid-audio 1545.wav.txt b/data/pending/text/raid-audio 1545.wav.txt deleted file mode 100644 index 6602a684bae2e4c69e298de9cbef69aa2e762096..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1545.wav.txt +++ /dev/null @@ -1 +0,0 @@ - بيجي مخطأ بل كي أعتبره من أول شهدان يستشهد \ No newline at end of file diff --git a/data/pending/text/raid-audio 1556.wav.txt b/data/pending/text/raid-audio 1556.wav.txt deleted file mode 100644 index 653f1c94498aff3b452efb12f55e6fba9d98dfcb..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1556.wav.txt +++ /dev/null @@ -1 +0,0 @@ - بالمحادثة معك \ No newline at end of file diff --git a/data/pending/text/raid-audio 1576.wav.txt b/data/pending/text/raid-audio 1576.wav.txt deleted file mode 100644 index 48854f73926685c7102868e6245cb69f90613e87..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1576.wav.txt +++ /dev/null @@ -1 +0,0 @@ - سمع آلميركم بطاطاين لخطوة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1598.wav.txt b/data/pending/text/raid-audio 1598.wav.txt deleted file mode 100644 index c2041b029fca20700328675965f8ba6416c43d1f..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1598.wav.txt +++ /dev/null @@ -1 +0,0 @@ - مثلاً إذا وخرتها، يمكن أن تقول أنك تريد أن تجري هذه المشكلة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1608.wav.txt b/data/pending/text/raid-audio 1608.wav.txt deleted file mode 100644 index 463a9921e2a834ac18de860a2302dc6b272db7ee..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1608.wav.txt +++ /dev/null @@ -1 +0,0 @@ - أفضل ممثل سقارة والتخصص الطب ثاني \ No newline at end of file diff --git a/data/pending/text/raid-audio 1609.wav.txt b/data/pending/text/raid-audio 1609.wav.txt deleted file mode 100644 index 160c8acd61fd1f32662a85c0137644f94e7593ed..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1609.wav.txt +++ /dev/null @@ -1 +0,0 @@ - وانا من المحبين على سوق هراس لأنه أنا قلت لك منذ كنت صغير قرأت على قدم رواية في تاريخ أول رواية في تاريخ وكلش وقرأت الرواية وتأثرت فيرامو فيرامو وتأثرت بسوق هراس \ No newline at end of file diff --git a/data/pending/text/raid-audio 1620.wav.txt b/data/pending/text/raid-audio 1620.wav.txt deleted file mode 100644 index c0899c71f1852391cec057cf24e88da8563daaeb..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1620.wav.txt +++ /dev/null @@ -1 +0,0 @@ - أسود صح؟ سقارة وأسود \ No newline at end of file diff --git a/data/pending/text/raid-audio 1628.wav.txt b/data/pending/text/raid-audio 1628.wav.txt deleted file mode 100644 index 61053669ffd0c412540ae6a6ed63f9322ab702a0..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1628.wav.txt +++ /dev/null @@ -1 +0,0 @@ - وقد أدرتها بطريقة تجربة ولم أستطع التطور فيها لقد كنت عادياً، إنسان عادي وأقل من عادي كما قلت لك، لم أرد أن أتغير من ذلك \ No newline at end of file diff --git a/data/pending/text/raid-audio 1629.wav.txt b/data/pending/text/raid-audio 1629.wav.txt deleted file mode 100644 index 4571362c21c9304f45e8261ff5f1cd377be23d92..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1629.wav.txt +++ /dev/null @@ -1 +0,0 @@ - وأنا ماذا بيك؟ قلنا للناس كمان تحاولوا تقوريج الأختالفة \ No newline at end of file diff --git a/data/pending/text/raid-audio 1656.wav.txt b/data/pending/text/raid-audio 1656.wav.txt deleted file mode 100644 index 386727fc40dde19c8a98e11f3fcfa531d750503d..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1656.wav.txt +++ /dev/null @@ -1 +0,0 @@ - غير الأفكار هذه لي مشهمناها \ No newline at end of file diff --git a/data/pending/text/raid-audio 1660.wav.txt b/data/pending/text/raid-audio 1660.wav.txt deleted file mode 100644 index a5361f36b0c7042fad4ccfcfc207d88ee4fdafa1..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1660.wav.txt +++ /dev/null @@ -1 +0,0 @@ - نحن المعظمة التي تعلمناها هنا كانت صغيرة كان الأسد يدرق دمك ويحب أن يعطيه شحبين \ No newline at end of file diff --git a/data/pending/text/raid-audio 1663.wav.txt b/data/pending/text/raid-audio 1663.wav.txt deleted file mode 100644 index 9d86f65cd9906daa92e5dd4deca44f85031f333b..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1663.wav.txt +++ /dev/null @@ -1 +0,0 @@ - كيف؟ انترك نتيجة تاعة ما دامت إنسان متميز هي الواحد ما يقعدش يغرع المنظمة التعليمية ويجير في سبب غرف المنظمة التعليمية ملحة ولا لا \ No newline at end of file diff --git a/data/pending/text/raid-audio 1681.wav.txt b/data/pending/text/raid-audio 1681.wav.txt deleted file mode 100644 index 554b154b8af38e09aac29bc5fc52c5216980f5c9..0000000000000000000000000000000000000000 --- a/data/pending/text/raid-audio 1681.wav.txt +++ /dev/null @@ -1 +0,0 @@ - 100 عملي برك فيهم واحد من عدد كبير \ No newline at end of file diff --git a/data/pending/voice/Sound 1799.wav b/data/pending/voice/Sound 1799.wav new file mode 100644 index 0000000000000000000000000000000000000000..312ca3a92e33b40f97c5bf69f1ec5a7eb12aafdf --- /dev/null +++ b/data/pending/voice/Sound 1799.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72e5d807dc254675a016be4a235b99fbc6824cdbbe0c9cbcae7f75780f35a75 +size 33498 diff --git a/data/pending/voice/Sound 1800.wav b/data/pending/voice/Sound 1800.wav new file mode 100644 index 0000000000000000000000000000000000000000..26b7ebe0b04b77d3cb48db9436f8676f856175c9 --- /dev/null +++ b/data/pending/voice/Sound 1800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa79118e9b132d13b12395b0729f65e48140ee3bd77ae63e7082099cb0fb2bd2 +size 50778 diff --git a/data/pending/voice/Sound 1801.wav b/data/pending/voice/Sound 1801.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2b7803af4d7f9c3445fc0dcdb2879654db129f5 --- /dev/null +++ b/data/pending/voice/Sound 1801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dcd879df7d1279a1505ea562d4e7cdbdcf4c66ab1ce783ff8f3ddfea2b132cd +size 64218 diff --git a/data/pending/voice/Sound 1802.wav b/data/pending/voice/Sound 1802.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b7dedf54ade38e7625a2e24036dd92889c42074 --- /dev/null +++ b/data/pending/voice/Sound 1802.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4d2c9d6b3bca049f80762d9d3319314e15eb2c326bab2a138fa5d30884d902 +size 92058 diff --git a/data/pending/voice/Sound 1803.wav b/data/pending/voice/Sound 1803.wav new file mode 100644 index 0000000000000000000000000000000000000000..63c940fc2e003cd0ab62d7f0824c33a75b8abd86 --- /dev/null +++ b/data/pending/voice/Sound 1803.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae09a276ac185b565a8302918577a90d3394fe62b016a372bce832faae934cef +size 27418 diff --git a/data/pending/voice/Sound 1804.wav b/data/pending/voice/Sound 1804.wav new file mode 100644 index 0000000000000000000000000000000000000000..c143884c74d768f2900a3cf1ced8daba269a2139 --- /dev/null +++ b/data/pending/voice/Sound 1804.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19bcfe18a67c7ec9789fee1d614715c48ddd68d68063c0fe3e5dd65d7727242a +size 68058 diff --git a/data/pending/voice/Sound 1805.wav b/data/pending/voice/Sound 1805.wav new file mode 100644 index 0000000000000000000000000000000000000000..23e8932f92070c41ffc361ba3bee7c970fc12b68 --- /dev/null +++ b/data/pending/voice/Sound 1805.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db697860b3c89ceb9aaf515f03987f3e6f5857621a2201cffb2367bbc9087ca9 +size 115738 diff --git a/data/pending/voice/Sound 1806.wav b/data/pending/voice/Sound 1806.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c6c8b9ea7b7b44cdc8a635b4dfa2fd91d57f199 --- /dev/null +++ b/data/pending/voice/Sound 1806.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2f6c03f3a6b2a5b04b00fef0b087c9d3ff6558ad9ca11002cb984c9ee497a6 +size 85978 diff --git a/data/pending/voice/Sound 1807.wav b/data/pending/voice/Sound 1807.wav new file mode 100644 index 0000000000000000000000000000000000000000..da38707ce623f0083333f6562307b70a7435ff46 --- /dev/null +++ b/data/pending/voice/Sound 1807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8620c3f94f14a1167b9e5f16fc1a3bc891fc55b4cb22e25a2d76159e59bf23e8 +size 26778 diff --git a/data/pending/voice/Sound 1808.wav b/data/pending/voice/Sound 1808.wav new file mode 100644 index 0000000000000000000000000000000000000000..f920d7d1405df9c08007b82d8aa0e24918a69a07 --- /dev/null +++ b/data/pending/voice/Sound 1808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3bfe11b4bfd9b81961ddff3010a66f23925827427e7aaf663d82ba2755e32c +size 90458 diff --git a/data/pending/voice/Sound 1809.wav b/data/pending/voice/Sound 1809.wav new file mode 100644 index 0000000000000000000000000000000000000000..6fa5ea841c4be924f4a8393300171cbc18349afd --- /dev/null +++ b/data/pending/voice/Sound 1809.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0882d1c27f86e199e82c488c1c7181832d93864886de1beb31f195485a427f2e +size 53658 diff --git a/data/pending/voice/Sound 1810.wav b/data/pending/voice/Sound 1810.wav new file mode 100644 index 0000000000000000000000000000000000000000..dbe6a0295af2a103236eda48e71c003726a471f0 --- /dev/null +++ b/data/pending/voice/Sound 1810.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c654dfc39ecb1a6114ee82dee10213561751ff1b28d58dc430b28be66f8a521 +size 59738 diff --git a/data/pending/voice/Sound 1811.wav b/data/pending/voice/Sound 1811.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ba091e0f80373182c462fe7f258a57c2c564072 --- /dev/null +++ b/data/pending/voice/Sound 1811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8d073afbdedeb1d5d69bfe5fcfcda078bd4a9ff8d07942fd72e3a234f01f28 +size 54938 diff --git a/data/pending/voice/Sound 1812.wav b/data/pending/voice/Sound 1812.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9159bc9d73ace7bf273f9d9b85ae06d57673dbb --- /dev/null +++ b/data/pending/voice/Sound 1812.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f20fe16b0b4e6aa65ffc9ea65d8907a183f20cba9701ce2b4aaba9f46086f7 +size 76378 diff --git a/data/pending/voice/Sound 1813.wav b/data/pending/voice/Sound 1813.wav new file mode 100644 index 0000000000000000000000000000000000000000..267777c9ad0d0e96e2d0a940b2e7d42685e86d58 --- /dev/null +++ b/data/pending/voice/Sound 1813.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5b9989c36a58c4f5f199ce9d2e70f86887edee9bae28822fd3230c1f9061da +size 150618 diff --git a/data/pending/voice/Sound 1814.wav b/data/pending/voice/Sound 1814.wav new file mode 100644 index 0000000000000000000000000000000000000000..006d62e5de3d29d9dd454586541bf1487698b77c --- /dev/null +++ b/data/pending/voice/Sound 1814.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67e676640997e7436037a3259046e39708a60708cffb920d4d6c102d64f37bd +size 82458 diff --git a/data/pending/voice/Sound 1815.wav b/data/pending/voice/Sound 1815.wav new file mode 100644 index 0000000000000000000000000000000000000000..c2e4359c75720d6c03c86230a48f659a6b3774b5 --- /dev/null +++ b/data/pending/voice/Sound 1815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c28cbdd49489de638e3ea34bd0fdceaaf650bd4ce2d1a98fc8ff4c613118bc3 +size 80858 diff --git a/data/pending/voice/Sound 1816.wav b/data/pending/voice/Sound 1816.wav new file mode 100644 index 0000000000000000000000000000000000000000..6795d9324800aa1a2e6ad30a202bdfc2cb0a29de --- /dev/null +++ b/data/pending/voice/Sound 1816.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb06854324573ceb1bee10882e317e752b36f7c8335d9158a61de44fd0dd4d5 +size 129498 diff --git a/data/pending/voice/Sound 1817.wav b/data/pending/voice/Sound 1817.wav new file mode 100644 index 0000000000000000000000000000000000000000..eac48d8033cde8b0ddf6911b4095f51a27a876ef --- /dev/null +++ b/data/pending/voice/Sound 1817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5897faafeb35dfb7bcf9a43641274930895ba8e8822e13000f0a506806a709 +size 107098 diff --git a/data/pending/voice/Sound 1818.wav b/data/pending/voice/Sound 1818.wav new file mode 100644 index 0000000000000000000000000000000000000000..43903cea7e91273fd9751b18802f674e4b6519ba --- /dev/null +++ b/data/pending/voice/Sound 1818.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd1523702906fda3db3472c7acc167b6b77850127ba1c43d651d21eaf654624 +size 115418 diff --git a/data/pending/voice/Sound 1819.wav b/data/pending/voice/Sound 1819.wav new file mode 100644 index 0000000000000000000000000000000000000000..ddb6560aeaf8f927be5bfb1e222f72bbff5c9b81 --- /dev/null +++ b/data/pending/voice/Sound 1819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88748bcb4f61826545a98b46aa81d1d4bfbf31c632dfc3793de250654bea2d6 +size 209498 diff --git a/data/pending/voice/Sound 1820.wav b/data/pending/voice/Sound 1820.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2c7652626f901efa6cb2b51697542472dbe197a --- /dev/null +++ b/data/pending/voice/Sound 1820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11993053fccc3ce9f30a632cecb279d88eeeb05759132d1831cf8300cbb812af +size 49498 diff --git a/data/pending/voice/Sound 1821.wav b/data/pending/voice/Sound 1821.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5b6c34a74ada759baa5b0b9cd4eff370da4cf5a --- /dev/null +++ b/data/pending/voice/Sound 1821.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65cc9609c2b16c09cdf2f5cc9a75e04d711821ae10a290bab7b8d00c19eeeea5 +size 124058 diff --git a/data/pending/voice/Sound 1822.wav b/data/pending/voice/Sound 1822.wav new file mode 100644 index 0000000000000000000000000000000000000000..0cc6c3266b3a99b4649f71ee7710695cbd485952 --- /dev/null +++ b/data/pending/voice/Sound 1822.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0017e94bc39542be9956b5d46b78d946b5cbb342a40ccd75a6b995891f4273 +size 26138 diff --git a/data/pending/voice/Sound 1823.wav b/data/pending/voice/Sound 1823.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7d17a15ff6350a817ed6a3df4574838ca2000d5 --- /dev/null +++ b/data/pending/voice/Sound 1823.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab13304e996f7663a71a6d2eac2d49e15dae4180cf375b3cf7a5f4c88df14577 +size 32538 diff --git a/data/pending/voice/Sound 1824.wav b/data/pending/voice/Sound 1824.wav new file mode 100644 index 0000000000000000000000000000000000000000..85b064ed814c18768e8f67d76877a0a8050c6d10 --- /dev/null +++ b/data/pending/voice/Sound 1824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9e16124496c10828679eb338c3b7570e14c5470dee1675b7b2694a4b561d14 +size 107418 diff --git a/data/pending/voice/Sound 1825.wav b/data/pending/voice/Sound 1825.wav new file mode 100644 index 0000000000000000000000000000000000000000..e89ba957f171c8b99ec173a1668c8b059e75820d --- /dev/null +++ b/data/pending/voice/Sound 1825.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8d7e1428e9f0702a37d71ca456b6a6798ee8cfdcb4498c34e977539f89757b +size 53018 diff --git a/data/pending/voice/Sound 1826.wav b/data/pending/voice/Sound 1826.wav new file mode 100644 index 0000000000000000000000000000000000000000..30dd4ffe3d86f0cb344c67ee205fef34f6944f0d --- /dev/null +++ b/data/pending/voice/Sound 1826.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f79a472641f3e434b9bd38ef668a85783959112180afff7b1edd632f625f8f +size 60698 diff --git a/data/pending/voice/Sound 1827.wav b/data/pending/voice/Sound 1827.wav new file mode 100644 index 0000000000000000000000000000000000000000..00038194c12973cfbe4fa414e7e1f10a7d11e0b8 --- /dev/null +++ b/data/pending/voice/Sound 1827.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86553d35970cdda82ff42842f5904c3963ad633ed1cd11bfdeb0f7234e64a8d0 +size 198298 diff --git a/data/pending/voice/Sound 1828.wav b/data/pending/voice/Sound 1828.wav new file mode 100644 index 0000000000000000000000000000000000000000..07fb76ae73bf329e90350e85aea24f96f3b2c61f --- /dev/null +++ b/data/pending/voice/Sound 1828.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b616871fce25fcb5785fd87fa6ef91187bb2f65b636e4e016d66373ff01bb0 +size 73498 diff --git a/data/pending/voice/Sound 1829.wav b/data/pending/voice/Sound 1829.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6b8453dd6cadd09c1819265ddea782f2c735726 --- /dev/null +++ b/data/pending/voice/Sound 1829.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f65330e8320a7ab3a00641ef970631f0c10ff9398bd3c0e900c96b67666e851 +size 112218 diff --git a/data/pending/voice/Sound 1830.wav b/data/pending/voice/Sound 1830.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffd870b5ce3979bda2fd1ed8500e221bf83d9824 --- /dev/null +++ b/data/pending/voice/Sound 1830.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd2f7d16c04f35d3dccd6406f2a7bb36d4b80e12a8d88ab356af167a805e816 +size 107098 diff --git a/data/pending/voice/Sound 1831.wav b/data/pending/voice/Sound 1831.wav new file mode 100644 index 0000000000000000000000000000000000000000..c97f72318611bc077d973cd9a2eb48f3bdacd659 --- /dev/null +++ b/data/pending/voice/Sound 1831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9d115cd2338de2442e06186766a14f0e2c6bb3902e861f774b41feefcbb64c +size 56218 diff --git a/data/pending/voice/Sound 1832.wav b/data/pending/voice/Sound 1832.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a28c4d00512c0de71c5a0def4e85631bfd8f024 --- /dev/null +++ b/data/pending/voice/Sound 1832.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb1b8be69bb421773c8c98d292dad23c793fa774c0c3368b75095184562de23 +size 68058 diff --git a/data/pending/voice/Sound 1833.wav b/data/pending/voice/Sound 1833.wav new file mode 100644 index 0000000000000000000000000000000000000000..eccaaa5e8709d38dfe19245245cebaf7c5b09aa1 --- /dev/null +++ b/data/pending/voice/Sound 1833.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc87534af790a1693d712df5cbffd80b74f2081550039aa7ebfa334fd723d7ce +size 55258 diff --git a/data/pending/voice/Sound 1834.wav b/data/pending/voice/Sound 1834.wav new file mode 100644 index 0000000000000000000000000000000000000000..da3bf24f25a25074f4351001300ce31c7fbdf5c1 --- /dev/null +++ b/data/pending/voice/Sound 1834.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7110e175da95c1d381612ecca898acb6e5a0f281aab503745832a20b7e9dbd44 +size 38298 diff --git a/data/pending/voice/Sound 1835.wav b/data/pending/voice/Sound 1835.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f4f80c4763ccd3aabdee5ee700edb9e9da19979 --- /dev/null +++ b/data/pending/voice/Sound 1835.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aa121671bc3bef7f142b0763664b41761396cf538c784573903d8b54c3e51ac +size 46298 diff --git a/data/pending/voice/Sound 1836.wav b/data/pending/voice/Sound 1836.wav new file mode 100644 index 0000000000000000000000000000000000000000..50a96f102f880459554df3bc5a146db41d6e514a --- /dev/null +++ b/data/pending/voice/Sound 1836.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171837d6ac9057fa2be2297d2b46416ca08acc50898a6f82b556d9ea3385db47 +size 97498 diff --git a/data/pending/voice/Sound 1837.wav b/data/pending/voice/Sound 1837.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f33df2f103c0035703789e6d29267f245a0608c --- /dev/null +++ b/data/pending/voice/Sound 1837.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e681770a5635d70154640a14ea52247cff2d2dd8b1db2f7ff497c7df8990e649 +size 118298 diff --git a/data/pending/voice/Sound 1838.wav b/data/pending/voice/Sound 1838.wav new file mode 100644 index 0000000000000000000000000000000000000000..db8dffeb57807c9412ff72b34caea29f47ce3943 --- /dev/null +++ b/data/pending/voice/Sound 1838.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefc85c6396bf1e0ea07e3735f3a05f980775b1b3989dfe31828df9e0a1bf650 +size 74778 diff --git a/data/pending/voice/Sound 1839.wav b/data/pending/voice/Sound 1839.wav new file mode 100644 index 0000000000000000000000000000000000000000..9eb6a27666776de8068c05352fc180b32b094774 --- /dev/null +++ b/data/pending/voice/Sound 1839.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c7b2b83000b579f35ee30c8043f12250229248f3353e9e4c2aabc6057744c6 +size 42778 diff --git a/data/pending/voice/Sound 1840.wav b/data/pending/voice/Sound 1840.wav new file mode 100644 index 0000000000000000000000000000000000000000..423c0380df40e927e052c87aaffd1adb0d002a48 --- /dev/null +++ b/data/pending/voice/Sound 1840.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74153c83a1c826e40fce537959f7e0f299e39deefa17cd534f34484247f00227 +size 123738 diff --git a/data/pending/voice/Sound 1841.wav b/data/pending/voice/Sound 1841.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea874f373a5148ab6efb8e0d0aff96db0f8ab538 --- /dev/null +++ b/data/pending/voice/Sound 1841.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963f778708b0f53c1062b734f07c812544229a355b01be339781932e70fa1e85 +size 32218 diff --git a/data/pending/voice/Sound 1842.wav b/data/pending/voice/Sound 1842.wav new file mode 100644 index 0000000000000000000000000000000000000000..c19b9876b746321b6c5f4589b55fe5bf494f496c --- /dev/null +++ b/data/pending/voice/Sound 1842.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382d2738a324c30c18d13b0c18cb809edf8a36bfdedce85fa9076fc71420f849 +size 98138 diff --git a/data/pending/voice/Sound 1843.wav b/data/pending/voice/Sound 1843.wav new file mode 100644 index 0000000000000000000000000000000000000000..544ea0930892407a2bea4aa6fbf8ef79f2397a94 --- /dev/null +++ b/data/pending/voice/Sound 1843.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca3e9143bc95e68873ae57760dc89acd0b3c66cb3a31375a1302ade87fabf3b +size 55898 diff --git a/data/pending/voice/Sound 1844.wav b/data/pending/voice/Sound 1844.wav new file mode 100644 index 0000000000000000000000000000000000000000..33eb90f264c93b734421d0d1947c4e03dbe53464 --- /dev/null +++ b/data/pending/voice/Sound 1844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f142f03a72fd614687c4d1c7e8b48e9d59efa3b9a46c13ec7cf9f2b0b18a44e +size 31898 diff --git a/data/pending/voice/Sound 1845.wav b/data/pending/voice/Sound 1845.wav new file mode 100644 index 0000000000000000000000000000000000000000..a658fe155cf968aed9d08d2319ad7cf7e56feee4 --- /dev/null +++ b/data/pending/voice/Sound 1845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d3d58ebea198207f562229e5816fd51a84b382a2bfe8ca227376d78400a303 +size 34458 diff --git a/data/pending/voice/Sound 1846.wav b/data/pending/voice/Sound 1846.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3b4041c694a921b224711ccfa8aa0e87645cfec --- /dev/null +++ b/data/pending/voice/Sound 1846.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:779bc7e101829b456f430abc085dfc674c61e250d0e6188a31353eb902e40d07 +size 30618 diff --git a/data/pending/voice/Sound 1847.wav b/data/pending/voice/Sound 1847.wav new file mode 100644 index 0000000000000000000000000000000000000000..09fa672e325056a9e2f84622515c980423bb0087 --- /dev/null +++ b/data/pending/voice/Sound 1847.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e444d258a45c3cf949f9a05cbbff65b0133c7cff867e93a8bc259793eca816 +size 50778 diff --git a/data/pending/voice/Sound 1848.wav b/data/pending/voice/Sound 1848.wav new file mode 100644 index 0000000000000000000000000000000000000000..bda524eea9ddb8e785f03985c57d58c6bb82245b --- /dev/null +++ b/data/pending/voice/Sound 1848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3b54dcbd7b5e4495bb901978f1887f87e728397941f1e68ce9149a109662fe +size 122138 diff --git a/data/pending/voice/Sound 1849.wav b/data/pending/voice/Sound 1849.wav new file mode 100644 index 0000000000000000000000000000000000000000..d637a0380d5d1ff76a5d668c913e4b0ae6ed5dee --- /dev/null +++ b/data/pending/voice/Sound 1849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5f3e5783ce38d520af1d97ec1a3cc89f7ada80a49c324469007b442f3ea6ea +size 64538 diff --git a/data/pending/voice/Sound 1850.wav b/data/pending/voice/Sound 1850.wav new file mode 100644 index 0000000000000000000000000000000000000000..89b5c4b29692e6a7e89a394bf3575dfcaaf2520b --- /dev/null +++ b/data/pending/voice/Sound 1850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24ba0d153faa2b6559daafa1ac0874ad13e4907db8cdbe415021239d8762694 +size 40538 diff --git a/data/pending/voice/Sound 1851.wav b/data/pending/voice/Sound 1851.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f0b89f93b8503e1f7ee348477ee6307c8e41a05 --- /dev/null +++ b/data/pending/voice/Sound 1851.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f42b66378bdc80e096c5dd74bd17ca6f23fd6ba323fdcd0107bf72c46a2fd3 +size 36378 diff --git a/data/pending/voice/Sound 1852.wav b/data/pending/voice/Sound 1852.wav new file mode 100644 index 0000000000000000000000000000000000000000..91bf6a9b89198cbef60ebfb0390f284e0dac89b4 --- /dev/null +++ b/data/pending/voice/Sound 1852.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68bd1633202fcd11ecc627efa6b6ddd370ab9829a495e8cc76c02860f4804dd +size 70938 diff --git a/data/pending/voice/Sound 1853.wav b/data/pending/voice/Sound 1853.wav new file mode 100644 index 0000000000000000000000000000000000000000..8dcd4a48c921e5ecd0e73d8f445e2b9fb0432a4c --- /dev/null +++ b/data/pending/voice/Sound 1853.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec8416c53c90bdcfd650f955410219303ae7dfdf60b8e022a85b4882ac3539a +size 243738 diff --git a/data/pending/voice/Sound 1854.wav b/data/pending/voice/Sound 1854.wav new file mode 100644 index 0000000000000000000000000000000000000000..7903e2740837be3a09ed38113e987888d5b4ac36 --- /dev/null +++ b/data/pending/voice/Sound 1854.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fee37ee3f50de3e33117d4f695664da2ba68b51ca5a6724282b11ff5f3061ef +size 30298 diff --git a/data/pending/voice/Sound 1855.wav b/data/pending/voice/Sound 1855.wav new file mode 100644 index 0000000000000000000000000000000000000000..02aa8d50862e4c54a82f178e3abdb39cbc4e3f0d --- /dev/null +++ b/data/pending/voice/Sound 1855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d2fbcfaa11a2558fcb9054dea1a3ba8a7d8605b9c17d31a50dad3af2be1995 +size 102618 diff --git a/data/pending/voice/Sound 1856.wav b/data/pending/voice/Sound 1856.wav new file mode 100644 index 0000000000000000000000000000000000000000..2651e2f5ef9310c0dfeac633ac95a36c43a91d71 --- /dev/null +++ b/data/pending/voice/Sound 1856.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ac5eab4f8ca3445531a1b062e8790825023a5e49458c7e8e4fbd4075634bc7 +size 34458 diff --git a/data/pending/voice/Sound 1857.wav b/data/pending/voice/Sound 1857.wav new file mode 100644 index 0000000000000000000000000000000000000000..af620244752f3936aefc1836ca805ac9e8f5a43f --- /dev/null +++ b/data/pending/voice/Sound 1857.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1e9c0aa1ee9522b29e4ac52fc60cb026861e6e93f51889b187d1b3137640f2 +size 74458 diff --git a/data/pending/voice/Sound 1858.wav b/data/pending/voice/Sound 1858.wav new file mode 100644 index 0000000000000000000000000000000000000000..3fae2ac851033e3f696666e6c1f9c4708b33a800 --- /dev/null +++ b/data/pending/voice/Sound 1858.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcf2aa18acfb7daf9a84948509d37631c259d3bc45de4f5a19a2a13661fd625 +size 29978 diff --git a/data/pending/voice/Sound 1859.wav b/data/pending/voice/Sound 1859.wav new file mode 100644 index 0000000000000000000000000000000000000000..7eb0a9139584f79550eaf6c344550c26c8fb1a99 --- /dev/null +++ b/data/pending/voice/Sound 1859.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5484042a0775712cff3d44702faa06e167ba439350a4bb83e025082bdc987562 +size 113498 diff --git a/data/pending/voice/Sound 1860.wav b/data/pending/voice/Sound 1860.wav new file mode 100644 index 0000000000000000000000000000000000000000..99cb5bebb74896d8a97fb8bce5c4d6077b8b7eb0 --- /dev/null +++ b/data/pending/voice/Sound 1860.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d4039132409764173164526d46c8b822cae04d78c85238e6f87a36bc36e0bb +size 37658 diff --git a/data/pending/voice/Sound 1861.wav b/data/pending/voice/Sound 1861.wav new file mode 100644 index 0000000000000000000000000000000000000000..d29d51ed97356c4e0d5e5f1737f4a44467f5aac7 --- /dev/null +++ b/data/pending/voice/Sound 1861.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1281c5f0c04785e41d804e4f7f2790daabd056745a07a8c01a9a0449482226ab +size 97498 diff --git a/data/pending/voice/Sound 1862.wav b/data/pending/voice/Sound 1862.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d1af1d9dac0eb82b4719a543c0637c64f1167ba --- /dev/null +++ b/data/pending/voice/Sound 1862.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d94137d95afd3bbb23b03efbadca2d957f2383cf7247c9086a99a7110850441 +size 76378 diff --git a/data/pending/voice/Sound 1863.wav b/data/pending/voice/Sound 1863.wav new file mode 100644 index 0000000000000000000000000000000000000000..3802c5e4e58466dc54992ea97d237d5b3a3edc08 --- /dev/null +++ b/data/pending/voice/Sound 1863.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a62a7c6238f06799de5b560e3377c277a76df7edf3ee06ded85b19a76b86f6 +size 85978 diff --git a/data/pending/voice/Sound 1864.wav b/data/pending/voice/Sound 1864.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e3a8aa3437883d1bbf98862e31e27abd359ef57 --- /dev/null +++ b/data/pending/voice/Sound 1864.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e94581324ddf6988cf410f5b89acfadc40f9ec64d4be51a9b131bf19cf8f07 +size 75098 diff --git a/data/pending/voice/Sound 1865.wav b/data/pending/voice/Sound 1865.wav new file mode 100644 index 0000000000000000000000000000000000000000..44da98f42dfaa3dc53040aed22a9f7c1f3d0aaff --- /dev/null +++ b/data/pending/voice/Sound 1865.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0cbd4938cc71c38426ba0cd5187abbd7cd62ea68ad723015dd50f0176b9782 +size 175258 diff --git a/data/pending/voice/Sound 1866.wav b/data/pending/voice/Sound 1866.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7fff9c8c19779ab575129882d9cf6e0f0a1b87a --- /dev/null +++ b/data/pending/voice/Sound 1866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd65b15740b0a608c2aaa4346fbb5fa505a6e4079bc35558c7bad7d19e9d09dc +size 58778 diff --git a/data/pending/voice/Sound 1867.wav b/data/pending/voice/Sound 1867.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7ae0a92e644392eb8960e9e49ab5f68076dd5af --- /dev/null +++ b/data/pending/voice/Sound 1867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bc10b704143d2c6b2653e62b099d1cf543914af63e085fe1f965142dd5a52c +size 36378 diff --git a/data/pending/voice/Sound 1868.wav b/data/pending/voice/Sound 1868.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4fe2b920ad9f4f82f9dcb35a90e1099c9287be0 --- /dev/null +++ b/data/pending/voice/Sound 1868.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245d17c358167bb68f3a80ebc7a0a4bf199795735ccc0d5d0c50838d6a9ae3ca +size 140378 diff --git a/data/pending/voice/Sound 1869.wav b/data/pending/voice/Sound 1869.wav new file mode 100644 index 0000000000000000000000000000000000000000..13a33bafee244b4dbe6fa87ae788fbcf0fc263d6 --- /dev/null +++ b/data/pending/voice/Sound 1869.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2ac8a661c1d3a3d1f61d43db2d1cd372e37bfa74389adce340432a975f137b +size 49818 diff --git a/data/pending/voice/Sound 1870.wav b/data/pending/voice/Sound 1870.wav new file mode 100644 index 0000000000000000000000000000000000000000..9eddf2cfc11bfd6f07e676af94eecdbe984a25cb --- /dev/null +++ b/data/pending/voice/Sound 1870.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9bb0615e3331e504285a7bd08572d7209edb3bcbaef823561f6f7324547ed3 +size 161178 diff --git a/data/pending/voice/Sound 1871.wav b/data/pending/voice/Sound 1871.wav new file mode 100644 index 0000000000000000000000000000000000000000..60d7489a5e58cfc17a5c4dc32ee985bbf4f8749f --- /dev/null +++ b/data/pending/voice/Sound 1871.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8926ccae9d31ebc4012bebc7cc5befbf9039d4d6a18f2e64bc11e34a52d94b2b +size 67738 diff --git a/data/pending/voice/Sound 1872.wav b/data/pending/voice/Sound 1872.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7291ed007f365bd824582579b38e1d2fcaecf45 --- /dev/null +++ b/data/pending/voice/Sound 1872.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e149b3037b3fedd0ffa4360193d5364839bcd8a7fc14c44c27f34f9cbc36ccde +size 119578 diff --git a/data/pending/voice/Sound 1873.wav b/data/pending/voice/Sound 1873.wav new file mode 100644 index 0000000000000000000000000000000000000000..483dd39c2f214edc6cd36c53a96046ba3d950906 --- /dev/null +++ b/data/pending/voice/Sound 1873.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a759251e4d3ecc2bf3215da021668582444a22e703714336ca8b35aac8c2b634 +size 84698 diff --git a/data/pending/voice/Sound 1874.wav b/data/pending/voice/Sound 1874.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea6a2610487c080e41d0206093543fe2c9bacadc --- /dev/null +++ b/data/pending/voice/Sound 1874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29a7b45361aea4cc6409c39029dff99427ec50105495b2537eb3dacc1236386 +size 60698 diff --git a/data/pending/voice/Sound 1875.wav b/data/pending/voice/Sound 1875.wav new file mode 100644 index 0000000000000000000000000000000000000000..972456cf49fefd6fc29f829272dd1719d9a14646 --- /dev/null +++ b/data/pending/voice/Sound 1875.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29e7bce3fc1a8e97e4bcafe7c1bcbd1a4ee8858ff3855fe3c5caf2b00696e60 +size 182938 diff --git a/data/pending/voice/Sound 1876.wav b/data/pending/voice/Sound 1876.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e956ccfda35b56fa93e1b77eb123ebd23b27b6d --- /dev/null +++ b/data/pending/voice/Sound 1876.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598064fc7bb4a9238496e27b56fdf108305161928dd6ccc56bb0acd1f0ed3276 +size 50138 diff --git a/data/pending/voice/Sound 1877.wav b/data/pending/voice/Sound 1877.wav new file mode 100644 index 0000000000000000000000000000000000000000..1aca638bd1835b8cb5d2324f777b757b4842c624 --- /dev/null +++ b/data/pending/voice/Sound 1877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3415b05a11979a4dff6f6a8b6013ce1a0797383de4a5864cf49938da719ec07a +size 170138 diff --git a/data/pending/voice/Sound 1878.wav b/data/pending/voice/Sound 1878.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed8e63e83751691927991d73964668d76033fa43 --- /dev/null +++ b/data/pending/voice/Sound 1878.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac2323e2ab4506669307fbc1d575117f32d2d4aa1d8450816e3b7ed537177be +size 111258 diff --git a/data/pending/voice/Sound 1879.wav b/data/pending/voice/Sound 1879.wav new file mode 100644 index 0000000000000000000000000000000000000000..6903d8c2ad5194d6289d0a1f8680c821c86ebba9 --- /dev/null +++ b/data/pending/voice/Sound 1879.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7c3bfdf5eb4c67fa0e68f25b41d3fbf49ed254aad10083b3cf3615e9f17898 +size 34138 diff --git a/data/pending/voice/Sound 1880.wav b/data/pending/voice/Sound 1880.wav new file mode 100644 index 0000000000000000000000000000000000000000..da837bda659fd9c3f1a005c6290fdc573e843522 --- /dev/null +++ b/data/pending/voice/Sound 1880.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d1881ce8497c83c97c34b1fc60a6e0360e340041d9fba58ce1442ea317183a +size 116698 diff --git a/data/pending/voice/Sound 1881.wav b/data/pending/voice/Sound 1881.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e68b4d6bd8258c3d893498b9803d5eceb5225fe --- /dev/null +++ b/data/pending/voice/Sound 1881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3caf2e91451ff246149ef77cfcdfb7cdb05f38591b7fc307aa94b5586525da40 +size 35098 diff --git a/data/pending/voice/Sound 1882.wav b/data/pending/voice/Sound 1882.wav new file mode 100644 index 0000000000000000000000000000000000000000..2da933a16ef1b6cf2b8edc53f6a1f4a9e51caff6 --- /dev/null +++ b/data/pending/voice/Sound 1882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f5a6a2e7864645f8afa6972e07a70f6f37c94269c8d19685b45d4e341ce4d7b +size 93338 diff --git a/data/pending/voice/Sound 1883.wav b/data/pending/voice/Sound 1883.wav new file mode 100644 index 0000000000000000000000000000000000000000..18be3ddaf0652ea21f529bdadea029f3d8836b9d --- /dev/null +++ b/data/pending/voice/Sound 1883.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a7380a9f7d553d88cf1775de318cec2a44f3f8b71a4cb1ebc51fb56a7d26b8 +size 45018 diff --git a/data/pending/voice/Sound 1884.wav b/data/pending/voice/Sound 1884.wav new file mode 100644 index 0000000000000000000000000000000000000000..47c1d88e20118654411553e2230ba83abd19d912 --- /dev/null +++ b/data/pending/voice/Sound 1884.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d9e559ba56b138879fcdb8a4296cb49b237c6649d0059672e4154c0cc90e13 +size 65178 diff --git a/data/pending/voice/Sound 1885.wav b/data/pending/voice/Sound 1885.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b155cf1eafb3b3c89360fb168949e2ae4432ea9 --- /dev/null +++ b/data/pending/voice/Sound 1885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ec6e90cda06f9f44c7d2dee4dd328dff2f0470541157a0298fbd18014fddb9 +size 34138 diff --git a/data/pending/voice/Sound 1886.wav b/data/pending/voice/Sound 1886.wav new file mode 100644 index 0000000000000000000000000000000000000000..c48dd01d53148199ded943a1dd07d7b0795437ac --- /dev/null +++ b/data/pending/voice/Sound 1886.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615d9d9cfdd3caddc1bce157310b686fefc08739b3057949961af96eca894d07 +size 110618 diff --git a/data/pending/voice/Sound 1887.wav b/data/pending/voice/Sound 1887.wav new file mode 100644 index 0000000000000000000000000000000000000000..91bfc45e245ca681936f6360a4977c391fad0284 --- /dev/null +++ b/data/pending/voice/Sound 1887.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41b81d0d0c264d3393101787f6b1c446fb2b52d558c9d1a2816ba17b03eb361 +size 77658 diff --git a/data/pending/voice/Sound 1888.wav b/data/pending/voice/Sound 1888.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef3783f24369c1146eb8bb8640c57434dbcacb9c --- /dev/null +++ b/data/pending/voice/Sound 1888.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9935a522edbd98de92e2b4ca981373b4e18b39e84ed42ec20cc9cec390818ab +size 66458 diff --git a/data/pending/voice/Sound 1889.wav b/data/pending/voice/Sound 1889.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3dbf959f8afee150d442f033ba7d4f52e6d2f1f --- /dev/null +++ b/data/pending/voice/Sound 1889.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d04e6d9aad5b77e81224e162f14663bf40bcdcc0f73d0d0330632ac50807ab +size 23898 diff --git a/data/pending/voice/Sound 1890.wav b/data/pending/voice/Sound 1890.wav new file mode 100644 index 0000000000000000000000000000000000000000..175503b592bfeb0844814158b51a3b053ae755b9 --- /dev/null +++ b/data/pending/voice/Sound 1890.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ea2628aa232dd54d963aebd331524d5c8d701a54a402a6a7048ca39edb6337 +size 87898 diff --git a/data/pending/voice/Sound 1891.wav b/data/pending/voice/Sound 1891.wav new file mode 100644 index 0000000000000000000000000000000000000000..926b04a43c316565ab6e9ff31650c5b917db444c --- /dev/null +++ b/data/pending/voice/Sound 1891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ecd458e59a7a355167bbf3c2ae9f7cae6eec079bd54bf8656a0b3396b5bf44 +size 55258 diff --git a/data/pending/voice/Sound 1892.wav b/data/pending/voice/Sound 1892.wav new file mode 100644 index 0000000000000000000000000000000000000000..85ca5f64743be2742c700f7452cac9acfbd0fb1d --- /dev/null +++ b/data/pending/voice/Sound 1892.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183984d36154d2b75cc7608066fbf401ae184efe343ebc423e8427371ff7a1e0 +size 78618 diff --git a/data/pending/voice/Sound 1893.wav b/data/pending/voice/Sound 1893.wav new file mode 100644 index 0000000000000000000000000000000000000000..779a9d94e514321f1792adbe86a417cbbd6c28b8 --- /dev/null +++ b/data/pending/voice/Sound 1893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c02fd1e460faf3280d0c7d31e39b863697c20ffeab35c902b6c9575a0da93e +size 118938 diff --git a/data/pending/voice/Sound 1894.wav b/data/pending/voice/Sound 1894.wav new file mode 100644 index 0000000000000000000000000000000000000000..36ce5e3e9727a0be15a1d2abce7e2a58f080b7f6 --- /dev/null +++ b/data/pending/voice/Sound 1894.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e37135b0407a5958e65e2ff4e129ca2ae0828616e3ddeac75ddffbc9acd2d6f +size 166298 diff --git a/data/pending/voice/Sound 1895.wav b/data/pending/voice/Sound 1895.wav new file mode 100644 index 0000000000000000000000000000000000000000..f587d3dc77e24a6926e96399a0595be676b5f446 --- /dev/null +++ b/data/pending/voice/Sound 1895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22394ba741bd3fca695275fc967c0bf184a6decc61b46172b2ec9a30e0b4c923 +size 42778 diff --git a/data/pending/voice/Sound 1896.wav b/data/pending/voice/Sound 1896.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ecd890c666ec70555480352a67769b75b2e8e69 --- /dev/null +++ b/data/pending/voice/Sound 1896.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed40a71d1a82dc1bdd9fbbcdc98f83965f00cc2333f1d415e88c2997d7a473c +size 46938 diff --git a/data/pending/voice/Sound 1897.wav b/data/pending/voice/Sound 1897.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a5c851864cd61a0813a6a9b85b664e17eb16c2d --- /dev/null +++ b/data/pending/voice/Sound 1897.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cc8dd7a1d6d455f211aac395d84044a95e63d1133d89bc82f6bb11b8406abf +size 47258 diff --git a/data/pending/voice/Sound 1898.wav b/data/pending/voice/Sound 1898.wav new file mode 100644 index 0000000000000000000000000000000000000000..6095ec7d7070086b027d544f46adeb691aefb2c2 --- /dev/null +++ b/data/pending/voice/Sound 1898.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def81148a1365f869932c8dda66a893281dd5678c8a93244863af93786f8c56c +size 83418 diff --git a/data/pending/voice/Sound 1899.wav b/data/pending/voice/Sound 1899.wav new file mode 100644 index 0000000000000000000000000000000000000000..55e51c6b53e0a5e8de158b62d45a94674bef9613 --- /dev/null +++ b/data/pending/voice/Sound 1899.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2870c5d6ac8429db1498db97e0b58904f66811b85d433d4286248111d646d1cb +size 113818 diff --git a/data/pending/voice/Sound 1900.wav b/data/pending/voice/Sound 1900.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce0e77cc00ded08e42e64fe03195d7778ce30241 --- /dev/null +++ b/data/pending/voice/Sound 1900.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c2311ca7971c93b903af66cee84230eca7720c7c3e000af986dc1a9ec731ee +size 28378 diff --git a/data/pending/voice/Sound 1901.wav b/data/pending/voice/Sound 1901.wav new file mode 100644 index 0000000000000000000000000000000000000000..f565430bee2a79a49f74c17e349611f454d39033 --- /dev/null +++ b/data/pending/voice/Sound 1901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844f2e64b55ce3e55bb7f709b8ef8bc9ae7c047c8d83c30b45f05b5cfc0e00cd +size 53978 diff --git a/data/pending/voice/Sound 1902.wav b/data/pending/voice/Sound 1902.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ca8cfe8f9da1dccb7f8bd58433aa77753167d8c --- /dev/null +++ b/data/pending/voice/Sound 1902.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67ec6aee9d3527bce5821e02aa22afb79fc98ddc0cc58641853f2be5b494575 +size 128218 diff --git a/data/pending/voice/Sound 1903.wav b/data/pending/voice/Sound 1903.wav new file mode 100644 index 0000000000000000000000000000000000000000..587ac5ebb20b2f10ec803b0fda864286c0b02cc9 --- /dev/null +++ b/data/pending/voice/Sound 1903.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc65d145913f6794a0093cbb8eac68b44c6e3d0eff63073406922b1438e058cc +size 91418 diff --git a/data/pending/voice/Sound 1904.wav b/data/pending/voice/Sound 1904.wav new file mode 100644 index 0000000000000000000000000000000000000000..db967c331cccefa3c48fd1aaf59b46932eb32233 --- /dev/null +++ b/data/pending/voice/Sound 1904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faef5909bd096d19886d2106147eb073e6fd5d7449dbf24c8413d8559f5d999d +size 35098 diff --git a/data/pending/voice/Sound 1905.wav b/data/pending/voice/Sound 1905.wav new file mode 100644 index 0000000000000000000000000000000000000000..821381a487ea76c1508391e9f0a3cbb6e34551c4 --- /dev/null +++ b/data/pending/voice/Sound 1905.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1767b5243b9d8c8348d8c1ab59f8e5b96430cf28c278f3e2337610949946ff6 +size 80538 diff --git a/data/pending/voice/Sound 1906.wav b/data/pending/voice/Sound 1906.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca374c3c652be57840d93a560b17d44de0f20509 --- /dev/null +++ b/data/pending/voice/Sound 1906.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63db34f9e443abedef4fda31456d7e109df1b3fe67fcc454b3607fd5334793e5 +size 162778 diff --git a/data/pending/voice/Sound 1907.wav b/data/pending/voice/Sound 1907.wav new file mode 100644 index 0000000000000000000000000000000000000000..976cdeaf30025e3a5cc87e9ec59dd7a068804c3c --- /dev/null +++ b/data/pending/voice/Sound 1907.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536f11ab61240ffa6825b01f4ec0886ce60176833496026c112d853c62b817c7 +size 114458 diff --git a/data/pending/voice/Sound 1908.wav b/data/pending/voice/Sound 1908.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba811b8b3624342aff5cf45eee76f7cc3fe04858 --- /dev/null +++ b/data/pending/voice/Sound 1908.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61fd4c9fcb66ff0507232b68456c3d84eff89e9deb16c03ca89d979668fc57c9 +size 70298 diff --git a/data/pending/voice/Sound 1909.wav b/data/pending/voice/Sound 1909.wav new file mode 100644 index 0000000000000000000000000000000000000000..0893342344588d98db849db154c87cd762a7c7ac --- /dev/null +++ b/data/pending/voice/Sound 1909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3f1420641bdda4194b74d422c859e2d61310bc38c44dfcfb42d2ea42ea9693 +size 33178 diff --git a/data/pending/voice/Sound 1910.wav b/data/pending/voice/Sound 1910.wav new file mode 100644 index 0000000000000000000000000000000000000000..c790f824723da05aa2d8950f2a717dbe2757198a --- /dev/null +++ b/data/pending/voice/Sound 1910.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9256216b4112430915513a930ca2adcf50e53c391401de56961dd51a67f2396e +size 36378 diff --git a/data/pending/voice/Sound 1911.wav b/data/pending/voice/Sound 1911.wav new file mode 100644 index 0000000000000000000000000000000000000000..78d4a26c13abcc2cc21ca8cd2c9245ee4cb95caf --- /dev/null +++ b/data/pending/voice/Sound 1911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f997fb7ef0348152d5642ac4a06d5195ec7e4f22873087a746a9ca9ea07811 +size 118298 diff --git a/data/pending/voice/Sound 1912.wav b/data/pending/voice/Sound 1912.wav new file mode 100644 index 0000000000000000000000000000000000000000..862f63dacae896ddccda5e7c16a0a1233ddba51a --- /dev/null +++ b/data/pending/voice/Sound 1912.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b02069c4bde64de99e2c80d243888f08f28e669df44de83684f0972d5356a32 +size 46938 diff --git a/data/pending/voice/Sound 1913.wav b/data/pending/voice/Sound 1913.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc8b9d964207df2405b0f4b7886767a599beea16 --- /dev/null +++ b/data/pending/voice/Sound 1913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31283eb30e526cd048d19273a52ca77b54ac0345a4183d1bb2088a2c79ff2ac9 +size 127258 diff --git a/data/pending/voice/Sound 1914.wav b/data/pending/voice/Sound 1914.wav new file mode 100644 index 0000000000000000000000000000000000000000..63b984d883a3434d57e472607b40fec8bf664485 --- /dev/null +++ b/data/pending/voice/Sound 1914.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd2df0dbf2b0c85584afaa369bf221759ff8267faf32b2a57993b57c080a6b3 +size 115738 diff --git a/data/pending/voice/Sound 1915.wav b/data/pending/voice/Sound 1915.wav new file mode 100644 index 0000000000000000000000000000000000000000..ceec2df125e72ae59d2a285eb00649deb1b262c3 --- /dev/null +++ b/data/pending/voice/Sound 1915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9b44f97016d05c52bf9ffd3d837a802ab893b240020d8bcd4d53c2a4e6ab5b +size 37018 diff --git a/data/pending/voice/Sound 1916.wav b/data/pending/voice/Sound 1916.wav new file mode 100644 index 0000000000000000000000000000000000000000..47a5a5aafe9addc2f9300815f2223d45e7a2c207 --- /dev/null +++ b/data/pending/voice/Sound 1916.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9254cba6ded8722bb4dbf805e2d827f09b264f96d10dabea57f6b58e2b7452 +size 37658 diff --git a/data/pending/voice/Sound 1917.wav b/data/pending/voice/Sound 1917.wav new file mode 100644 index 0000000000000000000000000000000000000000..7235abdfe219999a7546a7fc708c4073bba6e324 --- /dev/null +++ b/data/pending/voice/Sound 1917.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a259d93ed82d3f2b303bece2438d0d9263ae4374288b13bbaa981dcf83b4741 +size 51098 diff --git a/data/pending/voice/Sound 1918.wav b/data/pending/voice/Sound 1918.wav new file mode 100644 index 0000000000000000000000000000000000000000..da48a6d50305709b14161778b9b2b80d61aeee2d --- /dev/null +++ b/data/pending/voice/Sound 1918.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eee06454235a2423cf9dfd66f4889ab5db4b1caa5535c687d39b6c39085f5aa +size 99738 diff --git a/data/pending/voice/Sound 1919.wav b/data/pending/voice/Sound 1919.wav new file mode 100644 index 0000000000000000000000000000000000000000..0bb8db90293907168e7052aff6d3205af8fd047f --- /dev/null +++ b/data/pending/voice/Sound 1919.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9369948c08c55b929251da3ae27cd82bc338237c5ebbe394e59094dee7e72322 +size 53338 diff --git a/data/pending/voice/Sound 1920.wav b/data/pending/voice/Sound 1920.wav new file mode 100644 index 0000000000000000000000000000000000000000..2d0dc6a62eb335903a7529a0ffbc181d12f52928 --- /dev/null +++ b/data/pending/voice/Sound 1920.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a5a048a14717a4d319bd661da0beea7feb101eac51d62bde1daed69a2446eb +size 77338 diff --git a/data/pending/voice/Sound 1921.wav b/data/pending/voice/Sound 1921.wav new file mode 100644 index 0000000000000000000000000000000000000000..363faebfd4365af9367b27b2ee867f776805e03f --- /dev/null +++ b/data/pending/voice/Sound 1921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a77ea3789dfaa458db3757f53d9b40735c5ecc201eb3206f1e0b1d2a1c649d +size 45978 diff --git a/data/pending/voice/Sound 1922.wav b/data/pending/voice/Sound 1922.wav new file mode 100644 index 0000000000000000000000000000000000000000..8bf1a7cd42ef5785c081f0230ff01454e21ffd95 --- /dev/null +++ b/data/pending/voice/Sound 1922.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9266d62b65fac2f7f122081abce87799928eaec72351d3c91994060cb71ceaa5 +size 39578 diff --git a/data/pending/voice/Sound 1923.wav b/data/pending/voice/Sound 1923.wav new file mode 100644 index 0000000000000000000000000000000000000000..a16967724d7f2762eacaef0ed8188c4f7f00eeb6 --- /dev/null +++ b/data/pending/voice/Sound 1923.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75cc0bcc542c49f8d31b257367d3e84abc4131cbaa0d29ac3d3b4b7f7001f94f +size 54618 diff --git a/data/pending/voice/Sound 1924.wav b/data/pending/voice/Sound 1924.wav new file mode 100644 index 0000000000000000000000000000000000000000..d887b71aca3dda7e6cf155b9b1f522bce0258773 --- /dev/null +++ b/data/pending/voice/Sound 1924.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d272a38129d9deadaa02392e63a08843b07b1d1618f7083ce722d576d79260d0 +size 42778 diff --git a/data/pending/voice/Sound 1925.wav b/data/pending/voice/Sound 1925.wav new file mode 100644 index 0000000000000000000000000000000000000000..0593367543c82f5f1b37067810a20d2bbe7745c4 --- /dev/null +++ b/data/pending/voice/Sound 1925.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064d35c077df47ab076782fdaee4a1a054e711107a48edbc5c05ba0b4b21e36d +size 73498 diff --git a/data/pending/voice/Sound 1926.wav b/data/pending/voice/Sound 1926.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c6f59a1c54f68678627afa0c9430f9043225d40 --- /dev/null +++ b/data/pending/voice/Sound 1926.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9af32074deff8df45580d4f1b2b493e99d920f4b8940f7e23f790ab7d2631d +size 50458 diff --git a/data/pending/voice/Sound 1927.wav b/data/pending/voice/Sound 1927.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1c7a11d22a2bf0dd36d08ca7f60428c7b1abf1f --- /dev/null +++ b/data/pending/voice/Sound 1927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed571bfae3f8731aaf94866d0639a9bb37b0ac593c1dc44c1732c5c34053b25b +size 171098 diff --git a/data/pending/voice/Sound 1928.wav b/data/pending/voice/Sound 1928.wav new file mode 100644 index 0000000000000000000000000000000000000000..8dac46ddb0936378c5d9d44907b30fa816d33069 --- /dev/null +++ b/data/pending/voice/Sound 1928.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb2c064da0269f4d2ab17021f6d50a318d3a321a4be3f8d612d04f37ad2d0dd +size 115738 diff --git a/data/pending/voice/Sound 1929.wav b/data/pending/voice/Sound 1929.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e5887d5abdcec450b6ffef0e5233eb4b7bbb8de --- /dev/null +++ b/data/pending/voice/Sound 1929.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bb4058ac132cba23d940901db39fa8aac8f9bd6a4f3adef815271c57cbcabf +size 43738 diff --git a/data/pending/voice/Sound 1930.wav b/data/pending/voice/Sound 1930.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a442b496ef8f408f581a7146b54111da1373066 --- /dev/null +++ b/data/pending/voice/Sound 1930.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d0a5ccefcfb0996f45c9c4c19ddcf2f485297fd8ee6c612357c5b15a1804da +size 54618 diff --git a/data/pending/voice/Sound 1931.wav b/data/pending/voice/Sound 1931.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1803d7a4144c0d556b28ed493d3595fd2886260 --- /dev/null +++ b/data/pending/voice/Sound 1931.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb3b8876e904b7f9fcbb90efd1c59c8d4c65221606af19f53cf45669ff2b741 +size 56218 diff --git a/data/pending/voice/Sound 1932.wav b/data/pending/voice/Sound 1932.wav new file mode 100644 index 0000000000000000000000000000000000000000..839a8a04de224abe92266334e7b9742cb98a0a51 --- /dev/null +++ b/data/pending/voice/Sound 1932.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153c2406edc5457d4a9b236fe9e55ce3abcf85e6e5d56befb381b9893abbd5db +size 66458 diff --git a/data/pending/voice/Sound 1933.wav b/data/pending/voice/Sound 1933.wav new file mode 100644 index 0000000000000000000000000000000000000000..33ed2965067ba4cb9e36c49aec6508d3efcdd826 --- /dev/null +++ b/data/pending/voice/Sound 1933.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea6bc36fed70861c12cff5369a853cf939fbc5adf4b4449d89b540a3ae71149 +size 41818 diff --git a/data/pending/voice/Sound 1934.wav b/data/pending/voice/Sound 1934.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2969389a4bbfc4ec1deb1ffbfc12fdc92e32218 --- /dev/null +++ b/data/pending/voice/Sound 1934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1de87e0e85bf61d94f99cfc61f6d1ee2b19ea9c8970cd8e36a4261ba8a2ed8d +size 33178 diff --git a/data/pending/voice/Sound 1935.wav b/data/pending/voice/Sound 1935.wav new file mode 100644 index 0000000000000000000000000000000000000000..55ca5a1200564def0f783a5b628fda85a4c21b86 --- /dev/null +++ b/data/pending/voice/Sound 1935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2a5d366b629d8dbb0caec810c1919862c116223e10e83cd43620e3882f1ef3 +size 35098 diff --git a/data/pending/voice/Sound 1936.wav b/data/pending/voice/Sound 1936.wav new file mode 100644 index 0000000000000000000000000000000000000000..7729229703a3a82f6f79a1925a58bdf1d83fc901 --- /dev/null +++ b/data/pending/voice/Sound 1936.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38236d288a33d0c64638a037629be290ca4872d457a4e947931035581ddc033f +size 164058 diff --git a/data/pending/voice/Sound 1937.wav b/data/pending/voice/Sound 1937.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3d77d3a34a48c5be0cecba4631f552c980eef21 --- /dev/null +++ b/data/pending/voice/Sound 1937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a492fe7348e3c7bc3dcf76ca1c592e0e5346c0359ccd5360bacb6758146a05e5 +size 33178 diff --git a/data/pending/voice/Sound 1938.wav b/data/pending/voice/Sound 1938.wav new file mode 100644 index 0000000000000000000000000000000000000000..984a1bcd71444ead7dec3c8cfb37770fea677971 --- /dev/null +++ b/data/pending/voice/Sound 1938.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2077803bed7fc05cc1e7f54f022392346d625390751e03220b0c592854488234 +size 73178 diff --git a/data/pending/voice/Sound 1939.wav b/data/pending/voice/Sound 1939.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4524fd1e1df63c5067984c21482964fd69a73b7 --- /dev/null +++ b/data/pending/voice/Sound 1939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41abfcd26924b680bedf324889cae636b33deb358ec4a4a2e377b836306e102 +size 37658 diff --git a/data/pending/voice/Sound 1940.wav b/data/pending/voice/Sound 1940.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ced93bc34c67d29726021c376c2f5794ba4b0fd --- /dev/null +++ b/data/pending/voice/Sound 1940.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed63934da403821e5106efb3b6f8e2acb3df73a6b7fe15d4f6ce90e036852b05 +size 116058 diff --git a/data/pending/voice/Sound 1941.wav b/data/pending/voice/Sound 1941.wav new file mode 100644 index 0000000000000000000000000000000000000000..c2203d0323b6f60c481077514ee27d8db4cfac90 --- /dev/null +++ b/data/pending/voice/Sound 1941.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b1b1a3ab8fa3cb1273bcfedaae3ea0f85f33b0924b131a3cafc2d08314452a +size 82138 diff --git a/data/pending/voice/Sound 1942.wav b/data/pending/voice/Sound 1942.wav new file mode 100644 index 0000000000000000000000000000000000000000..86e1bc7026c97a1d86ee3e5c86a6f2fb70bf8d73 --- /dev/null +++ b/data/pending/voice/Sound 1942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f45fd7d59fa0a3ba522561f950b5993ebdc3cfc7e5de56452f97b4e9e8aedf +size 43418 diff --git a/data/pending/voice/Sound 1943.wav b/data/pending/voice/Sound 1943.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ee20921d712a42ecded692c825c6d289eb5c259 --- /dev/null +++ b/data/pending/voice/Sound 1943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c836eef3231c6ec569e6a2ca9e823d8b1ca4c493315f927a7943cdecab78b6 +size 38618 diff --git a/data/pending/voice/Sound 1944.wav b/data/pending/voice/Sound 1944.wav new file mode 100644 index 0000000000000000000000000000000000000000..f951ba11ec029f0fb488e9319661c28ac138acc9 --- /dev/null +++ b/data/pending/voice/Sound 1944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a0ddf2e6b482278f8cae41de4cb58119c94ff5464b4d5ef61313a357a559bb +size 44058 diff --git a/data/pending/voice/Sound 1945.wav b/data/pending/voice/Sound 1945.wav new file mode 100644 index 0000000000000000000000000000000000000000..3da2fe6ba772519eb11883cf5c8f8e19db0433d9 --- /dev/null +++ b/data/pending/voice/Sound 1945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcad0a4eeaa55c4d6d099c07fd0bf7bdfc6736fcaeeb0b3df96f5eeba75519f +size 40538 diff --git a/data/pending/voice/Sound 1946.wav b/data/pending/voice/Sound 1946.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6c29641de5ae71563976b52055556d040dee4d6 --- /dev/null +++ b/data/pending/voice/Sound 1946.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d5cff9fed2bcf233af70ffcf2c9b0c7ea630007bfd39ad448075a88b761a64 +size 46618 diff --git a/data/pending/voice/Sound 1947.wav b/data/pending/voice/Sound 1947.wav new file mode 100644 index 0000000000000000000000000000000000000000..d37fed10f9dc4b2a6eacac7577878e2e3ae6f1ed --- /dev/null +++ b/data/pending/voice/Sound 1947.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9f3942901daad96b2bac0a3314eb519b75a311821c6f468b2262f60efe0ecb +size 113818 diff --git a/data/pending/voice/Sound 1948.wav b/data/pending/voice/Sound 1948.wav new file mode 100644 index 0000000000000000000000000000000000000000..275d06369039121887b1baa1644b46a9eb364e1e --- /dev/null +++ b/data/pending/voice/Sound 1948.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8132f441d1509bc0639d67189cc66a8f32ba292af1555599a1e594f971afc2 +size 133658 diff --git a/data/pending/voice/Sound 1949.wav b/data/pending/voice/Sound 1949.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3d61661e4522aad944e536e8c0803bd69cccbc2 --- /dev/null +++ b/data/pending/voice/Sound 1949.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555e4eb16f59c4f9c67fbcf23180c49e321fb7bfdbb47fcc1f28af2fcfa50b7e +size 134618 diff --git a/data/pending/voice/Sound 1950.wav b/data/pending/voice/Sound 1950.wav new file mode 100644 index 0000000000000000000000000000000000000000..10ca567b65a6dbc8c4ae55d8039d1a9d66602171 --- /dev/null +++ b/data/pending/voice/Sound 1950.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c2d68b95cf5d441e824a5babc8da850736e831fa6b68328121f971d7ea4a22 +size 101978 diff --git a/data/pending/voice/Sound 1951.wav b/data/pending/voice/Sound 1951.wav new file mode 100644 index 0000000000000000000000000000000000000000..19f287d62e0874b6f904c768d5d2a93420a3ea90 --- /dev/null +++ b/data/pending/voice/Sound 1951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2b23c585a6a465276757482e1fc7e3b5fb5b0b600657a7cbf889d7ef2b1204 +size 147418 diff --git a/data/pending/voice/Sound 1952.wav b/data/pending/voice/Sound 1952.wav new file mode 100644 index 0000000000000000000000000000000000000000..944ad2bfd89ba2788d0802980161f564c1a65032 --- /dev/null +++ b/data/pending/voice/Sound 1952.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282d6aaa3b12b1b9b2fc365d5b2506f18d6699479f2c2b0500dff7455fa2a2bf +size 83098 diff --git a/data/pending/voice/Sound 1953.wav b/data/pending/voice/Sound 1953.wav new file mode 100644 index 0000000000000000000000000000000000000000..849b18360c53950a0e32185d056b6f3254b74d99 --- /dev/null +++ b/data/pending/voice/Sound 1953.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32a5b196e0f838481c6a1cc366933c1b1f782e61f38c0a04a25fbaabdf95542 +size 125658 diff --git a/data/pending/voice/Sound 1954.wav b/data/pending/voice/Sound 1954.wav new file mode 100644 index 0000000000000000000000000000000000000000..667e12da7e82be0a2d300b5fd55f1f287beb83b1 --- /dev/null +++ b/data/pending/voice/Sound 1954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46cf5e89ef95616f40f82daf62b813a8a67d315e8d74deac7dc288d88081186b +size 49178 diff --git a/data/pending/voice/Sound 1955.wav b/data/pending/voice/Sound 1955.wav new file mode 100644 index 0000000000000000000000000000000000000000..fbec18846fa37e4d55f7722b5fd9d9f8de165540 --- /dev/null +++ b/data/pending/voice/Sound 1955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9291cd45b9a3c843d4f6b5d54b5e8c6fe05b8a2c7ae3cee406a80fe41753e970 +size 122778 diff --git a/data/pending/voice/Sound 1956.wav b/data/pending/voice/Sound 1956.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c3207bb3579468f69707a3de6b0b61276e21523 --- /dev/null +++ b/data/pending/voice/Sound 1956.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcecf63ceb1420d1b51bafc633334de395b8f908b83244138245d090f817b70 +size 50778 diff --git a/data/pending/voice/Sound 1957.wav b/data/pending/voice/Sound 1957.wav new file mode 100644 index 0000000000000000000000000000000000000000..8172b1aa9a4ca425845e80583685a9f8fcd636c8 --- /dev/null +++ b/data/pending/voice/Sound 1957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a230c88ab7e2865b6abfefa41b9522449f54b6c2bc2ebc6ea6453b2af6fbfabe +size 51098 diff --git a/data/pending/voice/Sound 1958.wav b/data/pending/voice/Sound 1958.wav new file mode 100644 index 0000000000000000000000000000000000000000..79e5b1ce35bd281885d42327e8d2ac28ce7e93ef --- /dev/null +++ b/data/pending/voice/Sound 1958.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584d6115e841934af5b6d88bddcd1133f9d7b7e4a4944f5cc3e70896d981f634 +size 197338 diff --git a/data/pending/voice/Sound 1959.wav b/data/pending/voice/Sound 1959.wav new file mode 100644 index 0000000000000000000000000000000000000000..9873d88917457a310e07e09b9ad1fc6dae0fecc3 --- /dev/null +++ b/data/pending/voice/Sound 1959.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542135a85ebc884207b7a5103d74ca9667dfa327ec9bc7da682a0441cee18612 +size 118618 diff --git a/data/pending/voice/Sound 1960.wav b/data/pending/voice/Sound 1960.wav new file mode 100644 index 0000000000000000000000000000000000000000..517a6c348eb5b4f61d95f0db9179ab855e343f65 --- /dev/null +++ b/data/pending/voice/Sound 1960.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0609cfd6a4ddbe7da80ac5c8e63c759e9cfa2e1704526ece2550d21e2f9f3f +size 60698 diff --git a/data/pending/voice/Sound 1961.wav b/data/pending/voice/Sound 1961.wav new file mode 100644 index 0000000000000000000000000000000000000000..bbc26d2e199197dd5e13a253e8f95d01c90dd946 --- /dev/null +++ b/data/pending/voice/Sound 1961.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c7b8af31b5992b48330346c03dacf4b7ec3eee9bbbdcfad0f2d55650933fbb +size 33498 diff --git a/data/pending/voice/Sound 1962.wav b/data/pending/voice/Sound 1962.wav new file mode 100644 index 0000000000000000000000000000000000000000..eeb9b2b3e0ea14c28dd382e7f1ee14e7a3471b52 --- /dev/null +++ b/data/pending/voice/Sound 1962.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a8ac9f0e2b21e975a88735a9b04e3c3af266771e50823f777459dc37ce13d4 +size 64218 diff --git a/data/pending/voice/Sound 1963.wav b/data/pending/voice/Sound 1963.wav new file mode 100644 index 0000000000000000000000000000000000000000..243ae5b328109dbbe0d2d449d4adbdb5f7a10890 --- /dev/null +++ b/data/pending/voice/Sound 1963.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4bc1df931a38b9acb25472d3bd47118dfd25707a8b9322b8e053a7a0e65ade +size 156058 diff --git a/data/pending/voice/Sound 1964.wav b/data/pending/voice/Sound 1964.wav new file mode 100644 index 0000000000000000000000000000000000000000..e578cad3e8d7ab84eb025c87807903c4423c3266 --- /dev/null +++ b/data/pending/voice/Sound 1964.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c4a56f4c27137ecfce2b4a175fa2c316c3c4847f21ac49f969f6dbfca9097ef +size 399578 diff --git a/data/pending/voice/Sound 1965.wav b/data/pending/voice/Sound 1965.wav new file mode 100644 index 0000000000000000000000000000000000000000..18216ed8163d95e32fb93d978fd6b1ab45f989c7 --- /dev/null +++ b/data/pending/voice/Sound 1965.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a70991fd72281af89a4ec5f0c61b3aac76be72f49012e72133618fd4021bef8 +size 113498 diff --git a/data/pending/voice/Sound 1966.wav b/data/pending/voice/Sound 1966.wav new file mode 100644 index 0000000000000000000000000000000000000000..90b0bb1f6acc1e287e3f66672e3f423e63944d4d --- /dev/null +++ b/data/pending/voice/Sound 1966.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:108a9a7f1b1baf9c02bd71b3423df773596d63e9f93713896be6f371be22b18c +size 181338 diff --git a/data/pending/voice/Sound 1967.wav b/data/pending/voice/Sound 1967.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b29664ac5b7c6225d4774d19f4c1dcb3422a018 --- /dev/null +++ b/data/pending/voice/Sound 1967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d11a8f5c850f173181e343e307d3ddc76de44cd6216d1ab3c0e735c6b54445d +size 85018 diff --git a/data/pending/voice/Sound 1968.wav b/data/pending/voice/Sound 1968.wav new file mode 100644 index 0000000000000000000000000000000000000000..de2b880c4fdb4e1f0ef803ea6a74ffdc85045b36 --- /dev/null +++ b/data/pending/voice/Sound 1968.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b33069b900b41b2dcae86d23f4fd1f6f6c6ad376ec1fba0fefa603d0b5315f2 +size 104218 diff --git a/data/pending/voice/Sound 1969.wav b/data/pending/voice/Sound 1969.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0da1cde38f56ab7d2d2a57ff65a031b26b49803 --- /dev/null +++ b/data/pending/voice/Sound 1969.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd10e066587f960e20d56f09847767f2db7770bd5f938b1f5b154a5979b5599 +size 258138 diff --git a/data/pending/voice/Sound 1970.wav b/data/pending/voice/Sound 1970.wav new file mode 100644 index 0000000000000000000000000000000000000000..00c9689eba3e030f8c6e8641e2efe1ae600226de --- /dev/null +++ b/data/pending/voice/Sound 1970.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b43b38d3ea83b0613b63728573cfa17ac37b91df0632555367639b9eca5181a +size 71578 diff --git a/data/pending/voice/Sound 1971.wav b/data/pending/voice/Sound 1971.wav new file mode 100644 index 0000000000000000000000000000000000000000..e64779fe4d948a0a7faa5a554b58572e417ddad6 --- /dev/null +++ b/data/pending/voice/Sound 1971.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0144b7017f257f20a25b1ffde104b0c808faf40776998f7db9ebd00698041c1a +size 82778 diff --git a/data/pending/voice/Sound 1972.wav b/data/pending/voice/Sound 1972.wav new file mode 100644 index 0000000000000000000000000000000000000000..1215af29e0a0a7a3bb2e2b00f713ddae3618a538 --- /dev/null +++ b/data/pending/voice/Sound 1972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e206eb06c12dfb28be54791614a58fd363df587efdd704c52927337ce60698a9 +size 41818 diff --git a/data/pending/voice/Sound 1973.wav b/data/pending/voice/Sound 1973.wav new file mode 100644 index 0000000000000000000000000000000000000000..72bda39e4c48b658959a59f9ce3a13196109e59d --- /dev/null +++ b/data/pending/voice/Sound 1973.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4fc1af7ae33d0dc11681cd4b2a01a40f0a22808d009ae03a7ba8b6967de342 +size 119898 diff --git a/data/pending/voice/Sound 1974.wav b/data/pending/voice/Sound 1974.wav new file mode 100644 index 0000000000000000000000000000000000000000..571a5efd0f8f3c8f4cddf827065322e89c37ab91 --- /dev/null +++ b/data/pending/voice/Sound 1974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06636a0e940c8018c202f19644b609f27e62cfe3b0e32c298a03fa3b55c66947 +size 101978 diff --git a/data/pending/voice/Sound 1975.wav b/data/pending/voice/Sound 1975.wav new file mode 100644 index 0000000000000000000000000000000000000000..64006ccaa0c4b4998d37dea53c66e19f78b6f0a2 --- /dev/null +++ b/data/pending/voice/Sound 1975.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e3ad103dab746bd46c8e39f74de7476ef8830360b4efa88f469dc4a338c1e8 +size 213978 diff --git a/data/pending/voice/Sound 1976.wav b/data/pending/voice/Sound 1976.wav new file mode 100644 index 0000000000000000000000000000000000000000..1273037cb925bb38e355fb2dc0a23afebebc458f --- /dev/null +++ b/data/pending/voice/Sound 1976.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa839a78f5ab88b295729f4fe039ca26c184c020c14fd1d78d0d8e67cad80c07 +size 42458 diff --git a/data/pending/voice/Sound 1977.wav b/data/pending/voice/Sound 1977.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9cfdf0ddb1d03a6cafae592c31af71dbdb7ce1c --- /dev/null +++ b/data/pending/voice/Sound 1977.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed522abb7a0d63053ac463ffd3afca4c2907da4946f1ae4ea23629bcfc1be13 +size 154138 diff --git a/data/pending/voice/Sound 1978.wav b/data/pending/voice/Sound 1978.wav new file mode 100644 index 0000000000000000000000000000000000000000..5fb0f2b1d25e0def01f18252b62dc0d070d05d6b --- /dev/null +++ b/data/pending/voice/Sound 1978.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99589d00b26d5ab87a34551cebf602923611760303cc9d1986b77cb7b9cb23cb +size 53658