Remove HTML export functionality from BF
Browse files- Removed "Konuşma Geçmişini İndir" button from UI
- Removed export_html_file function and related code
- Cleaned up unnecessary imports
- Kept only conversation tracking functionality for API dashboard
The conversation history is now only accessible via the real-time dashboard (bf_dashboard.html) through API endpoints.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- app.py +1 -16
- conversation_tracker.py +2 -407
app.py
CHANGED
|
@@ -32,7 +32,7 @@ from enhanced_features import (
|
|
| 32 |
from image_renderer import extract_product_info_for_gallery, format_message_with_images
|
| 33 |
|
| 34 |
# Import conversation tracker
|
| 35 |
-
from conversation_tracker import add_conversation
|
| 36 |
|
| 37 |
# Import API endpoints
|
| 38 |
from api_server import app as api_app
|
|
@@ -1083,11 +1083,6 @@ with gr.Blocks(css=custom_css, theme="soft", title="Trek Asistanı", head=storag
|
|
| 1083 |
elem_id="msg-input"
|
| 1084 |
)
|
| 1085 |
|
| 1086 |
-
# Export button for conversation history
|
| 1087 |
-
with gr.Row():
|
| 1088 |
-
export_btn = gr.Button("📥 Konuşma Geçmişini İndir", variant="secondary")
|
| 1089 |
-
download_file = gr.File(label="İndir", visible=False)
|
| 1090 |
-
export_status = gr.Markdown("")
|
| 1091 |
|
| 1092 |
# Session ve profil sistemi tamamen kaldırıldı
|
| 1093 |
|
|
@@ -1137,16 +1132,6 @@ with gr.Blocks(css=custom_css, theme="soft", title="Trek Asistanı", head=storag
|
|
| 1137 |
yield "", chat_history
|
| 1138 |
|
| 1139 |
msg.submit(respond, [msg, chatbot], [msg, chatbot], show_progress=True)
|
| 1140 |
-
|
| 1141 |
-
def export_conversations():
|
| 1142 |
-
"""Export conversation history to HTML"""
|
| 1143 |
-
try:
|
| 1144 |
-
filename = export_html_file()
|
| 1145 |
-
return gr.update(visible=True, value=filename), f"✅ Konuşma geçmişi hazır!"
|
| 1146 |
-
except Exception as e:
|
| 1147 |
-
return gr.update(visible=False), f"❌ Export hatası: {str(e)}"
|
| 1148 |
-
|
| 1149 |
-
export_btn.click(export_conversations, outputs=[download_file, export_status])
|
| 1150 |
|
| 1151 |
# Mount FastAPI to Gradio for API access
|
| 1152 |
app = gr.mount_gradio_app(api_app, demo, path="/")
|
|
|
|
| 32 |
from image_renderer import extract_product_info_for_gallery, format_message_with_images
|
| 33 |
|
| 34 |
# Import conversation tracker
|
| 35 |
+
from conversation_tracker import add_conversation
|
| 36 |
|
| 37 |
# Import API endpoints
|
| 38 |
from api_server import app as api_app
|
|
|
|
| 1083 |
elem_id="msg-input"
|
| 1084 |
)
|
| 1085 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1086 |
|
| 1087 |
# Session ve profil sistemi tamamen kaldırıldı
|
| 1088 |
|
|
|
|
| 1132 |
yield "", chat_history
|
| 1133 |
|
| 1134 |
msg.submit(respond, [msg, chatbot], [msg, chatbot], show_progress=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1135 |
|
| 1136 |
# Mount FastAPI to Gradio for API access
|
| 1137 |
app = gr.mount_gradio_app(api_app, demo, path="/")
|
conversation_tracker.py
CHANGED
|
@@ -1,10 +1,9 @@
|
|
| 1 |
-
"""Conversation tracking
|
| 2 |
|
| 3 |
import json
|
| 4 |
import os
|
| 5 |
from datetime import datetime
|
| 6 |
from typing import List, Dict, Any
|
| 7 |
-
import html
|
| 8 |
|
| 9 |
# Konuşma geçmişini saklamak için
|
| 10 |
CONVERSATIONS_FILE = "conversations.json"
|
|
@@ -45,408 +44,4 @@ def add_conversation(user_message, bot_response):
|
|
| 45 |
conversations.append(conversation)
|
| 46 |
save_conversations(conversations)
|
| 47 |
|
| 48 |
-
return conversation
|
| 49 |
-
|
| 50 |
-
def generate_html_report():
|
| 51 |
-
"""Generate HTML report of all conversations"""
|
| 52 |
-
conversations = load_conversations()
|
| 53 |
-
|
| 54 |
-
html_template = """<!DOCTYPE html>
|
| 55 |
-
<html lang="tr">
|
| 56 |
-
<head>
|
| 57 |
-
<meta charset="UTF-8">
|
| 58 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 59 |
-
<title>Trek BF - Konuşma Geçmişi</title>
|
| 60 |
-
<style>
|
| 61 |
-
* {
|
| 62 |
-
margin: 0;
|
| 63 |
-
padding: 0;
|
| 64 |
-
box-sizing: border-box;
|
| 65 |
-
}
|
| 66 |
-
|
| 67 |
-
body {
|
| 68 |
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
| 69 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 70 |
-
min-height: 100vh;
|
| 71 |
-
padding: 10px;
|
| 72 |
-
}
|
| 73 |
-
|
| 74 |
-
.container {
|
| 75 |
-
max-width: 800px;
|
| 76 |
-
margin: 0 auto;
|
| 77 |
-
background: white;
|
| 78 |
-
border-radius: 20px;
|
| 79 |
-
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
|
| 80 |
-
overflow: hidden;
|
| 81 |
-
}
|
| 82 |
-
|
| 83 |
-
.header {
|
| 84 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 85 |
-
color: white;
|
| 86 |
-
padding: 20px;
|
| 87 |
-
text-align: center;
|
| 88 |
-
}
|
| 89 |
-
|
| 90 |
-
.header h1 {
|
| 91 |
-
font-size: 24px;
|
| 92 |
-
margin-bottom: 5px;
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
-
.header .subtitle {
|
| 96 |
-
font-size: 14px;
|
| 97 |
-
opacity: 0.9;
|
| 98 |
-
}
|
| 99 |
-
|
| 100 |
-
.stats {
|
| 101 |
-
display: flex;
|
| 102 |
-
justify-content: space-around;
|
| 103 |
-
margin-top: 15px;
|
| 104 |
-
padding-top: 15px;
|
| 105 |
-
border-top: 1px solid rgba(255,255,255,0.3);
|
| 106 |
-
}
|
| 107 |
-
|
| 108 |
-
.stat-item {
|
| 109 |
-
text-align: center;
|
| 110 |
-
}
|
| 111 |
-
|
| 112 |
-
.stat-value {
|
| 113 |
-
font-size: 24px;
|
| 114 |
-
font-weight: bold;
|
| 115 |
-
}
|
| 116 |
-
|
| 117 |
-
.stat-label {
|
| 118 |
-
font-size: 12px;
|
| 119 |
-
opacity: 0.8;
|
| 120 |
-
}
|
| 121 |
-
|
| 122 |
-
.chat-container {
|
| 123 |
-
padding: 20px;
|
| 124 |
-
max-height: 70vh;
|
| 125 |
-
overflow-y: auto;
|
| 126 |
-
}
|
| 127 |
-
|
| 128 |
-
.chat-message {
|
| 129 |
-
margin-bottom: 20px;
|
| 130 |
-
animation: fadeIn 0.5s ease-in;
|
| 131 |
-
}
|
| 132 |
-
|
| 133 |
-
@keyframes fadeIn {
|
| 134 |
-
from { opacity: 0; transform: translateY(10px); }
|
| 135 |
-
to { opacity: 1; transform: translateY(0); }
|
| 136 |
-
}
|
| 137 |
-
|
| 138 |
-
.message-wrapper {
|
| 139 |
-
display: flex;
|
| 140 |
-
align-items: flex-start;
|
| 141 |
-
margin-bottom: 10px;
|
| 142 |
-
}
|
| 143 |
-
|
| 144 |
-
.message-wrapper.user {
|
| 145 |
-
justify-content: flex-end;
|
| 146 |
-
}
|
| 147 |
-
|
| 148 |
-
.message-bubble {
|
| 149 |
-
max-width: 70%;
|
| 150 |
-
padding: 12px 16px;
|
| 151 |
-
border-radius: 18px;
|
| 152 |
-
word-wrap: break-word;
|
| 153 |
-
position: relative;
|
| 154 |
-
}
|
| 155 |
-
|
| 156 |
-
.user .message-bubble {
|
| 157 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 158 |
-
color: white;
|
| 159 |
-
border-bottom-right-radius: 4px;
|
| 160 |
-
}
|
| 161 |
-
|
| 162 |
-
.bot .message-bubble {
|
| 163 |
-
background: #f1f3f5;
|
| 164 |
-
color: #333;
|
| 165 |
-
border-bottom-left-radius: 4px;
|
| 166 |
-
}
|
| 167 |
-
|
| 168 |
-
.timestamp {
|
| 169 |
-
font-size: 11px;
|
| 170 |
-
color: #999;
|
| 171 |
-
margin-top: 5px;
|
| 172 |
-
text-align: center;
|
| 173 |
-
}
|
| 174 |
-
|
| 175 |
-
.divider {
|
| 176 |
-
text-align: center;
|
| 177 |
-
margin: 20px 0;
|
| 178 |
-
position: relative;
|
| 179 |
-
}
|
| 180 |
-
|
| 181 |
-
.divider::before {
|
| 182 |
-
content: '';
|
| 183 |
-
position: absolute;
|
| 184 |
-
left: 0;
|
| 185 |
-
top: 50%;
|
| 186 |
-
width: 100%;
|
| 187 |
-
height: 1px;
|
| 188 |
-
background: #e0e0e0;
|
| 189 |
-
}
|
| 190 |
-
|
| 191 |
-
.divider-text {
|
| 192 |
-
background: white;
|
| 193 |
-
padding: 0 10px;
|
| 194 |
-
position: relative;
|
| 195 |
-
color: #999;
|
| 196 |
-
font-size: 12px;
|
| 197 |
-
}
|
| 198 |
-
|
| 199 |
-
.filter-container {
|
| 200 |
-
padding: 15px 20px;
|
| 201 |
-
background: #f8f9fa;
|
| 202 |
-
border-bottom: 1px solid #e0e0e0;
|
| 203 |
-
}
|
| 204 |
-
|
| 205 |
-
.search-box {
|
| 206 |
-
width: 100%;
|
| 207 |
-
padding: 10px 15px;
|
| 208 |
-
border: 1px solid #ddd;
|
| 209 |
-
border-radius: 25px;
|
| 210 |
-
font-size: 14px;
|
| 211 |
-
outline: none;
|
| 212 |
-
}
|
| 213 |
-
|
| 214 |
-
.search-box:focus {
|
| 215 |
-
border-color: #667eea;
|
| 216 |
-
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
|
| 217 |
-
}
|
| 218 |
-
|
| 219 |
-
.no-results {
|
| 220 |
-
text-align: center;
|
| 221 |
-
padding: 40px;
|
| 222 |
-
color: #999;
|
| 223 |
-
}
|
| 224 |
-
|
| 225 |
-
/* Product highlights */
|
| 226 |
-
.product-mention {
|
| 227 |
-
background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
|
| 228 |
-
-webkit-background-clip: text;
|
| 229 |
-
-webkit-text-fill-color: transparent;
|
| 230 |
-
font-weight: bold;
|
| 231 |
-
}
|
| 232 |
-
|
| 233 |
-
/* Mobile responsive */
|
| 234 |
-
@media (max-width: 600px) {
|
| 235 |
-
.container {
|
| 236 |
-
border-radius: 0;
|
| 237 |
-
height: 100vh;
|
| 238 |
-
max-width: 100%;
|
| 239 |
-
}
|
| 240 |
-
|
| 241 |
-
.message-bubble {
|
| 242 |
-
max-width: 85%;
|
| 243 |
-
}
|
| 244 |
-
|
| 245 |
-
.chat-container {
|
| 246 |
-
max-height: calc(100vh - 200px);
|
| 247 |
-
}
|
| 248 |
-
}
|
| 249 |
-
|
| 250 |
-
/* Scrollbar styling */
|
| 251 |
-
.chat-container::-webkit-scrollbar {
|
| 252 |
-
width: 6px;
|
| 253 |
-
}
|
| 254 |
-
|
| 255 |
-
.chat-container::-webkit-scrollbar-track {
|
| 256 |
-
background: #f1f1f1;
|
| 257 |
-
}
|
| 258 |
-
|
| 259 |
-
.chat-container::-webkit-scrollbar-thumb {
|
| 260 |
-
background: #888;
|
| 261 |
-
border-radius: 3px;
|
| 262 |
-
}
|
| 263 |
-
|
| 264 |
-
.chat-container::-webkit-scrollbar-thumb:hover {
|
| 265 |
-
background: #555;
|
| 266 |
-
}
|
| 267 |
-
</style>
|
| 268 |
-
</head>
|
| 269 |
-
<body>
|
| 270 |
-
<div class="container">
|
| 271 |
-
<div class="header">
|
| 272 |
-
<h1>🚴 Trek BF Chatbot</h1>
|
| 273 |
-
<div class="subtitle">Konuşma Geçmişi</div>
|
| 274 |
-
<div class="stats">
|
| 275 |
-
<div class="stat-item">
|
| 276 |
-
<div class="stat-value" id="totalMessages">0</div>
|
| 277 |
-
<div class="stat-label">Toplam Mesaj</div>
|
| 278 |
-
</div>
|
| 279 |
-
<div class="stat-item">
|
| 280 |
-
<div class="stat-value" id="totalConversations">0</div>
|
| 281 |
-
<div class="stat-label">Konuşma</div>
|
| 282 |
-
</div>
|
| 283 |
-
<div class="stat-item">
|
| 284 |
-
<div class="stat-value" id="todayMessages">0</div>
|
| 285 |
-
<div class="stat-label">Bugün</div>
|
| 286 |
-
</div>
|
| 287 |
-
</div>
|
| 288 |
-
</div>
|
| 289 |
-
|
| 290 |
-
<div class="filter-container">
|
| 291 |
-
<input type="text" class="search-box" placeholder="Mesajlarda ara..." id="searchInput">
|
| 292 |
-
</div>
|
| 293 |
-
|
| 294 |
-
<div class="chat-container" id="chatContainer">
|
| 295 |
-
<!-- Messages will be inserted here -->
|
| 296 |
-
</div>
|
| 297 |
-
</div>
|
| 298 |
-
|
| 299 |
-
<script>
|
| 300 |
-
const conversations = {CONVERSATIONS_JSON};
|
| 301 |
-
|
| 302 |
-
function formatTime(isoString) {
|
| 303 |
-
const date = new Date(isoString);
|
| 304 |
-
const now = new Date();
|
| 305 |
-
const isToday = date.toDateString() === now.toDateString();
|
| 306 |
-
|
| 307 |
-
if (isToday) {
|
| 308 |
-
return date.toLocaleTimeString('tr-TR', {hour: '2-digit', minute: '2-digit'});
|
| 309 |
-
} else {
|
| 310 |
-
return date.toLocaleDateString('tr-TR') + ' ' + date.toLocaleTimeString('tr-TR', {hour: '2-digit', minute: '2-digit'});
|
| 311 |
-
}
|
| 312 |
-
}
|
| 313 |
-
|
| 314 |
-
function formatDate(isoString) {
|
| 315 |
-
const date = new Date(isoString);
|
| 316 |
-
const now = new Date();
|
| 317 |
-
const diffDays = Math.floor((now - date) / (1000 * 60 * 60 * 24));
|
| 318 |
-
|
| 319 |
-
if (diffDays === 0) return 'Bugün';
|
| 320 |
-
if (diffDays === 1) return 'Dün';
|
| 321 |
-
if (diffDays < 7) return diffDays + ' gün önce';
|
| 322 |
-
return date.toLocaleDateString('tr-TR');
|
| 323 |
-
}
|
| 324 |
-
|
| 325 |
-
function highlightProducts(text) {
|
| 326 |
-
const products = ['MADONE', 'MARLIN', 'DOMANE', 'CHECKPOINT', 'EMONDA', 'FX', 'RAIL', 'POWERFLY'];
|
| 327 |
-
let result = text;
|
| 328 |
-
products.forEach(product => {
|
| 329 |
-
const regex = new RegExp(product, 'gi');
|
| 330 |
-
result = result.replace(regex, '<span class="product-mention">$&</span>');
|
| 331 |
-
});
|
| 332 |
-
return result;
|
| 333 |
-
}
|
| 334 |
-
|
| 335 |
-
function escapeHtml(text) {
|
| 336 |
-
const div = document.createElement('div');
|
| 337 |
-
div.textContent = text;
|
| 338 |
-
return div.innerHTML;
|
| 339 |
-
}
|
| 340 |
-
|
| 341 |
-
function renderMessages(filteredConversations) {
|
| 342 |
-
const container = document.getElementById('chatContainer');
|
| 343 |
-
container.innerHTML = '';
|
| 344 |
-
|
| 345 |
-
if (filteredConversations.length === 0) {
|
| 346 |
-
container.innerHTML = '<div class="no-results">Mesaj bulunamadı</div>';
|
| 347 |
-
return;
|
| 348 |
-
}
|
| 349 |
-
|
| 350 |
-
let lastDate = null;
|
| 351 |
-
|
| 352 |
-
filteredConversations.forEach(conv => {
|
| 353 |
-
const messageDate = new Date(conv.timestamp).toDateString();
|
| 354 |
-
|
| 355 |
-
// Add date divider if new day
|
| 356 |
-
if (lastDate !== messageDate) {
|
| 357 |
-
const divider = document.createElement('div');
|
| 358 |
-
divider.className = 'divider';
|
| 359 |
-
divider.innerHTML = `<span class="divider-text">${formatDate(conv.timestamp)}</span>`;
|
| 360 |
-
container.appendChild(divider);
|
| 361 |
-
lastDate = messageDate;
|
| 362 |
-
}
|
| 363 |
-
|
| 364 |
-
const messageDiv = document.createElement('div');
|
| 365 |
-
messageDiv.className = 'chat-message';
|
| 366 |
-
|
| 367 |
-
// User message
|
| 368 |
-
const userMsg = document.createElement('div');
|
| 369 |
-
userMsg.className = 'message-wrapper user';
|
| 370 |
-
userMsg.innerHTML = `
|
| 371 |
-
<div class="message-bubble">
|
| 372 |
-
${escapeHtml(conv.user)}
|
| 373 |
-
</div>
|
| 374 |
-
`;
|
| 375 |
-
messageDiv.appendChild(userMsg);
|
| 376 |
-
|
| 377 |
-
// Bot message
|
| 378 |
-
const botMsg = document.createElement('div');
|
| 379 |
-
botMsg.className = 'message-wrapper bot';
|
| 380 |
-
botMsg.innerHTML = `
|
| 381 |
-
<div class="message-bubble">
|
| 382 |
-
${highlightProducts(escapeHtml(conv.bot))}
|
| 383 |
-
</div>
|
| 384 |
-
`;
|
| 385 |
-
messageDiv.appendChild(botMsg);
|
| 386 |
-
|
| 387 |
-
// Timestamp
|
| 388 |
-
const timestamp = document.createElement('div');
|
| 389 |
-
timestamp.className = 'timestamp';
|
| 390 |
-
timestamp.textContent = formatTime(conv.timestamp);
|
| 391 |
-
messageDiv.appendChild(timestamp);
|
| 392 |
-
|
| 393 |
-
container.appendChild(messageDiv);
|
| 394 |
-
});
|
| 395 |
-
|
| 396 |
-
// Scroll to bottom
|
| 397 |
-
container.scrollTop = container.scrollHeight;
|
| 398 |
-
}
|
| 399 |
-
|
| 400 |
-
function updateStats() {
|
| 401 |
-
const today = new Date().toDateString();
|
| 402 |
-
const todayCount = conversations.filter(c =>
|
| 403 |
-
new Date(c.timestamp).toDateString() === today
|
| 404 |
-
).length;
|
| 405 |
-
|
| 406 |
-
document.getElementById('totalMessages').textContent = conversations.length * 2;
|
| 407 |
-
document.getElementById('totalConversations').textContent = conversations.length;
|
| 408 |
-
document.getElementById('todayMessages').textContent = todayCount;
|
| 409 |
-
}
|
| 410 |
-
|
| 411 |
-
// Search functionality
|
| 412 |
-
document.getElementById('searchInput').addEventListener('input', (e) => {
|
| 413 |
-
const searchTerm = e.target.value.toLowerCase();
|
| 414 |
-
|
| 415 |
-
if (!searchTerm) {
|
| 416 |
-
renderMessages(conversations);
|
| 417 |
-
return;
|
| 418 |
-
}
|
| 419 |
-
|
| 420 |
-
const filtered = conversations.filter(conv =>
|
| 421 |
-
conv.user.toLowerCase().includes(searchTerm) ||
|
| 422 |
-
conv.bot.toLowerCase().includes(searchTerm)
|
| 423 |
-
);
|
| 424 |
-
|
| 425 |
-
renderMessages(filtered);
|
| 426 |
-
});
|
| 427 |
-
|
| 428 |
-
// Initial render
|
| 429 |
-
updateStats();
|
| 430 |
-
renderMessages(conversations);
|
| 431 |
-
</script>
|
| 432 |
-
</body>
|
| 433 |
-
</html>"""
|
| 434 |
-
|
| 435 |
-
# Replace conversations JSON
|
| 436 |
-
html_content = html_template.replace(
|
| 437 |
-
'{CONVERSATIONS_JSON}',
|
| 438 |
-
json.dumps(conversations, ensure_ascii=False)
|
| 439 |
-
)
|
| 440 |
-
|
| 441 |
-
return html_content
|
| 442 |
-
|
| 443 |
-
def export_html_file():
|
| 444 |
-
"""Export conversations to HTML file"""
|
| 445 |
-
html_content = generate_html_report()
|
| 446 |
-
|
| 447 |
-
filename = f"trek_bf_conversations_{datetime.now().strftime('%Y%m%d_%H%M%S')}.html"
|
| 448 |
-
|
| 449 |
-
with open(filename, 'w', encoding='utf-8') as f:
|
| 450 |
-
f.write(html_content)
|
| 451 |
-
|
| 452 |
-
return filename
|
|
|
|
| 1 |
+
"""Conversation tracking for BF chatbot"""
|
| 2 |
|
| 3 |
import json
|
| 4 |
import os
|
| 5 |
from datetime import datetime
|
| 6 |
from typing import List, Dict, Any
|
|
|
|
| 7 |
|
| 8 |
# Konuşma geçmişini saklamak için
|
| 9 |
CONVERSATIONS_FILE = "conversations.json"
|
|
|
|
| 44 |
conversations.append(conversation)
|
| 45 |
save_conversations(conversations)
|
| 46 |
|
| 47 |
+
return conversation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|