fusesell 1.2.5__tar.gz → 1.2.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fusesell might be problematic. Click here for more details.
- {fusesell-1.2.5 → fusesell-1.2.6}/CHANGELOG.md +9 -0
- {fusesell-1.2.5/fusesell.egg-info → fusesell-1.2.6}/PKG-INFO +1 -1
- {fusesell-1.2.5 → fusesell-1.2.6/fusesell.egg-info}/PKG-INFO +1 -1
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/__init__.py +1 -1
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/initial_outreach.py +126 -13
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/data_manager.py +130 -52
- {fusesell-1.2.5 → fusesell-1.2.6}/pyproject.toml +1 -1
- {fusesell-1.2.5 → fusesell-1.2.6}/LICENSE +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/MANIFEST.in +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/README.md +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell.egg-info/SOURCES.txt +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell.egg-info/dependency_links.txt +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell.egg-info/entry_points.txt +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell.egg-info/requires.txt +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell.egg-info/top_level.txt +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/api.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/cli.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/config/__init__.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/config/prompts.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/config/settings.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/pipeline.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/__init__.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/base_stage.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/data_acquisition.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/data_preparation.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/follow_up.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/stages/lead_scoring.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/tests/conftest.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/tests/test_api.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/tests/test_cli.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/tests/test_data_manager_products.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/tests/test_data_manager_sales_process.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/tests/test_data_manager_teams.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/__init__.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/birthday_email_manager.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/event_scheduler.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/llm_client.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/logger.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/timezone_detector.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/fusesell_local/utils/validators.py +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/requirements.txt +0 -0
- {fusesell-1.2.5 → fusesell-1.2.6}/setup.cfg +0 -0
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to FuseSell Local will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [1.2.6] - 2025-10-24
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Automatically seed packaged prompt, scoring, and template JSON files into the writable `fusesell_data/config` directory so fresh installs immediately pick up the default initial outreach draft prompt.
|
|
9
|
+
- Draft generation now records the scheduled reminder metadata in stage output while mirroring the server’s `schedule_auto_run` behaviour locally.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Bundled configuration files are used as a fallback when the data directory is missing overrides, preventing empty prompt loads that previously produced low-quality duplicate drafts.
|
|
13
|
+
|
|
5
14
|
# [1.2.5] - 2025-10-24
|
|
6
15
|
|
|
7
16
|
### Added
|
|
@@ -102,23 +102,32 @@ class InitialOutreachStage(BaseStage):
|
|
|
102
102
|
# Generate multiple email drafts
|
|
103
103
|
email_drafts = self._generate_email_drafts(customer_data, recommended_product, scoring_data, context)
|
|
104
104
|
|
|
105
|
-
# Save drafts to local files and database
|
|
106
|
-
saved_drafts = self._save_email_drafts(context, email_drafts)
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
105
|
+
# Save drafts to local files and database
|
|
106
|
+
saved_drafts = self._save_email_drafts(context, email_drafts)
|
|
107
|
+
|
|
108
|
+
schedule_summary = self._schedule_initial_reminder_for_drafts(
|
|
109
|
+
saved_drafts,
|
|
110
|
+
customer_data,
|
|
111
|
+
context
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
# Prepare final output
|
|
115
|
+
outreach_data = {
|
|
116
|
+
'action': 'draft_write',
|
|
117
|
+
'status': 'drafts_generated',
|
|
112
118
|
'email_drafts': saved_drafts,
|
|
113
119
|
'recommended_product': recommended_product,
|
|
114
120
|
'customer_summary': self._create_customer_summary(customer_data),
|
|
115
121
|
'total_drafts_generated': len(saved_drafts),
|
|
116
|
-
'generation_timestamp': datetime.now().isoformat(),
|
|
117
|
-
'customer_id': context.get('execution_id')
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
+
'generation_timestamp': datetime.now().isoformat(),
|
|
123
|
+
'customer_id': context.get('execution_id')
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if schedule_summary:
|
|
127
|
+
outreach_data['reminder_schedule'] = schedule_summary
|
|
128
|
+
|
|
129
|
+
# Save to database
|
|
130
|
+
self.save_stage_result(context, outreach_data)
|
|
122
131
|
|
|
123
132
|
result = self.create_success_result(outreach_data, context)
|
|
124
133
|
return result
|
|
@@ -363,6 +372,110 @@ class InitialOutreachStage(BaseStage):
|
|
|
363
372
|
'customextra': customextra
|
|
364
373
|
}
|
|
365
374
|
|
|
375
|
+
def _schedule_initial_reminder_for_drafts(
|
|
376
|
+
self,
|
|
377
|
+
drafts: List[Dict[str, Any]],
|
|
378
|
+
customer_data: Dict[str, Any],
|
|
379
|
+
context: Dict[str, Any]
|
|
380
|
+
) -> Optional[Dict[str, Any]]:
|
|
381
|
+
"""
|
|
382
|
+
Schedule reminder_task row for the highest-ranked draft after draft generation.
|
|
383
|
+
|
|
384
|
+
Mirrors the server-side behaviour where schedule_auto_run seeds reminder_task
|
|
385
|
+
so RealTimeX automations can pick up pending outreach immediately.
|
|
386
|
+
"""
|
|
387
|
+
if not drafts:
|
|
388
|
+
return None
|
|
389
|
+
|
|
390
|
+
input_data = context.get('input_data', {})
|
|
391
|
+
|
|
392
|
+
if input_data.get('send_immediately'):
|
|
393
|
+
self.logger.debug("Skipping reminder scheduling because send_immediately is True")
|
|
394
|
+
return None
|
|
395
|
+
|
|
396
|
+
contact_info = customer_data.get('primaryContact', {}) or {}
|
|
397
|
+
|
|
398
|
+
recipient_address = (
|
|
399
|
+
input_data.get('recipient_address')
|
|
400
|
+
or contact_info.get('email')
|
|
401
|
+
or contact_info.get('emailAddress')
|
|
402
|
+
)
|
|
403
|
+
if not recipient_address:
|
|
404
|
+
self.logger.info("Skipping reminder scheduling: recipient email not available")
|
|
405
|
+
return None
|
|
406
|
+
|
|
407
|
+
recipient_name = (
|
|
408
|
+
input_data.get('recipient_name')
|
|
409
|
+
or contact_info.get('name')
|
|
410
|
+
or contact_info.get('fullName')
|
|
411
|
+
or ''
|
|
412
|
+
)
|
|
413
|
+
|
|
414
|
+
def _draft_sort_key(draft: Dict[str, Any]) -> tuple[int, float]:
|
|
415
|
+
priority = draft.get('priority_order')
|
|
416
|
+
if not isinstance(priority, int):
|
|
417
|
+
priority = 999
|
|
418
|
+
personalization = draft.get('personalization_score', 0)
|
|
419
|
+
try:
|
|
420
|
+
personalization_value = float(personalization)
|
|
421
|
+
except (TypeError, ValueError):
|
|
422
|
+
personalization_value = 0.0
|
|
423
|
+
return (priority, -personalization_value)
|
|
424
|
+
|
|
425
|
+
ordered_drafts = sorted(drafts, key=_draft_sort_key)
|
|
426
|
+
if not ordered_drafts:
|
|
427
|
+
return None
|
|
428
|
+
|
|
429
|
+
top_draft = ordered_drafts[0]
|
|
430
|
+
|
|
431
|
+
try:
|
|
432
|
+
from ..utils.event_scheduler import EventScheduler
|
|
433
|
+
scheduler = EventScheduler(self.config.get('data_dir', './fusesell_data'))
|
|
434
|
+
except Exception as exc:
|
|
435
|
+
self.logger.warning(
|
|
436
|
+
"Failed to initialise EventScheduler for reminder scheduling: %s",
|
|
437
|
+
exc
|
|
438
|
+
)
|
|
439
|
+
return {'success': False, 'error': str(exc)}
|
|
440
|
+
|
|
441
|
+
reminder_context = self._build_initial_reminder_context(
|
|
442
|
+
top_draft,
|
|
443
|
+
recipient_address,
|
|
444
|
+
recipient_name,
|
|
445
|
+
context
|
|
446
|
+
)
|
|
447
|
+
|
|
448
|
+
try:
|
|
449
|
+
schedule_result = scheduler.schedule_email_event(
|
|
450
|
+
draft_id=top_draft.get('draft_id'),
|
|
451
|
+
recipient_address=recipient_address,
|
|
452
|
+
recipient_name=recipient_name,
|
|
453
|
+
org_id=input_data.get('org_id') or self.config.get('org_id', 'default'),
|
|
454
|
+
team_id=input_data.get('team_id') or self.config.get('team_id'),
|
|
455
|
+
customer_timezone=input_data.get('customer_timezone'),
|
|
456
|
+
email_type='initial',
|
|
457
|
+
send_immediately=False,
|
|
458
|
+
reminder_context=reminder_context
|
|
459
|
+
)
|
|
460
|
+
except Exception as exc:
|
|
461
|
+
self.logger.error(f"Initial reminder scheduling failed: {exc}")
|
|
462
|
+
return {'success': False, 'error': str(exc)}
|
|
463
|
+
|
|
464
|
+
if schedule_result.get('success'):
|
|
465
|
+
self.logger.info(
|
|
466
|
+
"Scheduled initial outreach reminder %s for draft %s",
|
|
467
|
+
schedule_result.get('reminder_task_id'),
|
|
468
|
+
top_draft.get('draft_id')
|
|
469
|
+
)
|
|
470
|
+
else:
|
|
471
|
+
self.logger.warning(
|
|
472
|
+
"Reminder scheduling returned failure for draft %s: %s",
|
|
473
|
+
top_draft.get('draft_id'),
|
|
474
|
+
schedule_result.get('error')
|
|
475
|
+
)
|
|
476
|
+
|
|
477
|
+
return schedule_result
|
|
478
|
+
|
|
366
479
|
def _handle_close(self, context: Dict[str, Any]) -> Dict[str, Any]:
|
|
367
480
|
"""
|
|
368
481
|
Handle close action - Close outreach when customer feels negative.
|
|
@@ -3,14 +3,15 @@ Local Data Manager for FuseSell Local Implementation
|
|
|
3
3
|
Handles SQLite database operations and local file management
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
|
-
import sqlite3
|
|
6
|
+
import sqlite3
|
|
7
7
|
import json
|
|
8
8
|
import os
|
|
9
9
|
import uuid
|
|
10
|
+
import shutil
|
|
10
11
|
from typing import Dict, Any, List, Optional, Sequence, Union
|
|
11
|
-
from datetime import datetime
|
|
12
|
-
import logging
|
|
13
|
-
from pathlib import Path
|
|
12
|
+
from datetime import datetime
|
|
13
|
+
import logging
|
|
14
|
+
from pathlib import Path
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
class LocalDataManager:
|
|
@@ -69,10 +70,72 @@ class LocalDataManager:
|
|
|
69
70
|
# Initialize database with optimization check
|
|
70
71
|
self._init_database_optimized()
|
|
71
72
|
|
|
72
|
-
def _create_directories(self) -> None:
|
|
73
|
-
"""Create necessary directories for data storage."""
|
|
74
|
-
for directory in [self.data_dir, self.config_dir, self.drafts_dir, self.logs_dir]:
|
|
75
|
-
directory.mkdir(parents=True, exist_ok=True)
|
|
73
|
+
def _create_directories(self) -> None:
|
|
74
|
+
"""Create necessary directories for data storage."""
|
|
75
|
+
for directory in [self.data_dir, self.config_dir, self.drafts_dir, self.logs_dir]:
|
|
76
|
+
directory.mkdir(parents=True, exist_ok=True)
|
|
77
|
+
self._ensure_default_config_files()
|
|
78
|
+
|
|
79
|
+
def _ensure_default_config_files(self) -> None:
|
|
80
|
+
"""
|
|
81
|
+
Copy bundled configuration defaults into the writable data directory when missing.
|
|
82
|
+
|
|
83
|
+
Ensures first-run executions always have the same baseline prompts, scoring criteria,
|
|
84
|
+
and email templates as the packaged FuseSell server flows.
|
|
85
|
+
"""
|
|
86
|
+
try:
|
|
87
|
+
package_config_dir = Path(__file__).resolve().parents[2] / "fusesell_data" / "config"
|
|
88
|
+
except Exception as exc:
|
|
89
|
+
self.logger.debug(f"Unable to resolve packaged config directory: {exc}")
|
|
90
|
+
return
|
|
91
|
+
|
|
92
|
+
if not package_config_dir.exists():
|
|
93
|
+
self.logger.debug("Packaged config directory not found; skipping default config seeding")
|
|
94
|
+
return
|
|
95
|
+
|
|
96
|
+
default_files = [
|
|
97
|
+
"prompts.json",
|
|
98
|
+
"scoring_criteria.json",
|
|
99
|
+
"email_templates.json",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
for filename in default_files:
|
|
103
|
+
target = self.config_dir / filename
|
|
104
|
+
if target.exists():
|
|
105
|
+
continue
|
|
106
|
+
|
|
107
|
+
source = package_config_dir / filename
|
|
108
|
+
if not source.exists():
|
|
109
|
+
self.logger.debug(f"Packaged default {filename} not found; skipping seed")
|
|
110
|
+
continue
|
|
111
|
+
|
|
112
|
+
try:
|
|
113
|
+
shutil.copyfile(source, target)
|
|
114
|
+
self.logger.info(f"Seeded default configuration file: {filename}")
|
|
115
|
+
except Exception as exc:
|
|
116
|
+
self.logger.warning(f"Failed to seed default configuration {filename}: {exc}")
|
|
117
|
+
|
|
118
|
+
def _load_packaged_config_file(self, filename: str) -> Dict[str, Any]:
|
|
119
|
+
"""
|
|
120
|
+
Load a configuration JSON file bundled with the package as a fallback.
|
|
121
|
+
|
|
122
|
+
Args:
|
|
123
|
+
filename: Name of the configuration file to load.
|
|
124
|
+
|
|
125
|
+
Returns:
|
|
126
|
+
Parsed configuration dictionary or empty dict on failure.
|
|
127
|
+
"""
|
|
128
|
+
try:
|
|
129
|
+
package_config_dir = Path(__file__).resolve().parents[2] / "fusesell_data" / "config"
|
|
130
|
+
path = package_config_dir / filename
|
|
131
|
+
if not path.exists():
|
|
132
|
+
return {}
|
|
133
|
+
|
|
134
|
+
with path.open("r", encoding="utf-8") as handle:
|
|
135
|
+
return json.load(handle)
|
|
136
|
+
except Exception as exc:
|
|
137
|
+
self.logger.debug(f"Failed to load packaged config {filename}: {exc}")
|
|
138
|
+
return {}
|
|
76
139
|
|
|
77
140
|
def _init_database_optimized(self) -> None:
|
|
78
141
|
"""
|
|
@@ -1050,56 +1113,71 @@ class LocalDataManager:
|
|
|
1050
1113
|
self.logger.error(f"Failed to get stage results: {str(e)}")
|
|
1051
1114
|
raise
|
|
1052
1115
|
|
|
1053
|
-
def load_prompts(self) -> Dict[str, Any]:
|
|
1054
|
-
"""
|
|
1055
|
-
Load prompt templates from configuration.
|
|
1056
|
-
|
|
1057
|
-
Returns:
|
|
1058
|
-
Dictionary of prompt templates
|
|
1059
|
-
"""
|
|
1060
|
-
try:
|
|
1061
|
-
prompts_file = self.config_dir / "prompts.json"
|
|
1062
|
-
if prompts_file.exists():
|
|
1063
|
-
with open(prompts_file, 'r', encoding='utf-8') as f:
|
|
1064
|
-
return json.load(f)
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1116
|
+
def load_prompts(self) -> Dict[str, Any]:
|
|
1117
|
+
"""
|
|
1118
|
+
Load prompt templates from configuration.
|
|
1119
|
+
|
|
1120
|
+
Returns:
|
|
1121
|
+
Dictionary of prompt templates
|
|
1122
|
+
"""
|
|
1123
|
+
try:
|
|
1124
|
+
prompts_file = self.config_dir / "prompts.json"
|
|
1125
|
+
if prompts_file.exists():
|
|
1126
|
+
with open(prompts_file, 'r', encoding='utf-8') as f:
|
|
1127
|
+
return json.load(f)
|
|
1128
|
+
|
|
1129
|
+
packaged = self._load_packaged_config_file("prompts.json")
|
|
1130
|
+
if packaged:
|
|
1131
|
+
return packaged
|
|
1132
|
+
|
|
1133
|
+
return {}
|
|
1134
|
+
except Exception as e:
|
|
1135
|
+
self.logger.error(f"Failed to load prompts: {str(e)}")
|
|
1136
|
+
return {}
|
|
1137
|
+
|
|
1138
|
+
def load_scoring_criteria(self) -> Dict[str, Any]:
|
|
1071
1139
|
"""
|
|
1072
1140
|
Load scoring criteria configuration.
|
|
1073
1141
|
|
|
1074
|
-
Returns:
|
|
1075
|
-
Dictionary of scoring criteria
|
|
1076
|
-
"""
|
|
1077
|
-
try:
|
|
1078
|
-
criteria_file = self.config_dir / "scoring_criteria.json"
|
|
1079
|
-
if criteria_file.exists():
|
|
1080
|
-
with open(criteria_file, 'r', encoding='utf-8') as f:
|
|
1081
|
-
return json.load(f)
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1142
|
+
Returns:
|
|
1143
|
+
Dictionary of scoring criteria
|
|
1144
|
+
"""
|
|
1145
|
+
try:
|
|
1146
|
+
criteria_file = self.config_dir / "scoring_criteria.json"
|
|
1147
|
+
if criteria_file.exists():
|
|
1148
|
+
with open(criteria_file, 'r', encoding='utf-8') as f:
|
|
1149
|
+
return json.load(f)
|
|
1150
|
+
|
|
1151
|
+
packaged = self._load_packaged_config_file("scoring_criteria.json")
|
|
1152
|
+
if packaged:
|
|
1153
|
+
return packaged
|
|
1154
|
+
|
|
1155
|
+
return {}
|
|
1156
|
+
except Exception as e:
|
|
1157
|
+
self.logger.error(f"Failed to load scoring criteria: {str(e)}")
|
|
1158
|
+
return {}
|
|
1159
|
+
|
|
1160
|
+
def load_email_templates(self) -> Dict[str, Any]:
|
|
1088
1161
|
"""
|
|
1089
1162
|
Load email templates configuration.
|
|
1090
1163
|
|
|
1091
|
-
Returns:
|
|
1092
|
-
Dictionary of email templates
|
|
1093
|
-
"""
|
|
1094
|
-
try:
|
|
1095
|
-
templates_file = self.config_dir / "email_templates.json"
|
|
1096
|
-
if templates_file.exists():
|
|
1097
|
-
with open(templates_file, 'r', encoding='utf-8') as f:
|
|
1098
|
-
return json.load(f)
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1164
|
+
Returns:
|
|
1165
|
+
Dictionary of email templates
|
|
1166
|
+
"""
|
|
1167
|
+
try:
|
|
1168
|
+
templates_file = self.config_dir / "email_templates.json"
|
|
1169
|
+
if templates_file.exists():
|
|
1170
|
+
with open(templates_file, 'r', encoding='utf-8') as f:
|
|
1171
|
+
return json.load(f)
|
|
1172
|
+
|
|
1173
|
+
packaged = self._load_packaged_config_file("email_templates.json")
|
|
1174
|
+
if packaged:
|
|
1175
|
+
return packaged
|
|
1176
|
+
|
|
1177
|
+
return {}
|
|
1178
|
+
except Exception as e:
|
|
1179
|
+
self.logger.error(f"Failed to load email templates: {str(e)}")
|
|
1180
|
+
return {}
|
|
1103
1181
|
|
|
1104
1182
|
def _generate_customer_id(self) -> str:
|
|
1105
1183
|
"""Generate unique customer ID."""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|