minder-cli 0.5.4__tar.gz → 0.5.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.
- {minder_cli-0.5.4 → minder_cli-0.5.6}/PKG-INFO +1 -1
- {minder_cli-0.5.4 → minder_cli-0.5.6}/pyproject.toml +1 -1
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/bootstrap/providers.py +0 -2
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/config.py +2 -2
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/runtime.py +10 -1
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/prompts/__init__.py +12 -11
- {minder_cli-0.5.4 → minder_cli-0.5.6}/.gitignore +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/LICENSE +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/README-pypi.md +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/README.md +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/api/routers/prompts.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/application/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/application/admin/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/application/admin/dto.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/application/admin/jobs.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/application/admin/use_cases.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/context.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/middleware.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/principal.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/rate_limiter.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/rbac.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/auth/service.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/bootstrap/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/bootstrap/agent_seeder.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/bootstrap/transport.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/cache/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/cache/providers.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/chunking/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/chunking/code_splitter.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/chunking/splitter.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/cli.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/context_compactor.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/continuity.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/dev.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/embedding/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/embedding/base.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/embedding/local.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/embedding/openai.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/edges.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/executor.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/graph.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/clarification.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/evaluator.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/guard.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/llm.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/planning.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/reasoning.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/reflection.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/reranker.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/retriever.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/verification.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/nodes/workflow_planner.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/runtime.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/graph/state.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/learning/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/learning/error_learner.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/learning/pattern_extractor.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/learning/quality_optimizer.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/learning/skill_synthesizer.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/llm/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/llm/base.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/llm/factory.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/llm/llama_cpp_llm.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/llm/openai.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/agent.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/base.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/client.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/document.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/error.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/graph.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/history.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/job.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/prompt.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/repository.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/rule.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/session.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/skill.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/user.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/models/workflow.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/observability/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/observability/audit.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/observability/logging.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/observability/metrics.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/observability/tracing.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/commands/agent.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/commands/auth.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/commands/ide.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/commands/mcp.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/commands/sync.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/commands/update.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/main.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/utils/common.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/utils/config.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/utils/git.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/cli/utils/version.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/agents.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/api.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/context.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/dashboard.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/jobs.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/memories.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/prompts.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/routes.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/search.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/presentation/http/admin/skills.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/prompts/formatter.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/resources/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/retrieval/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/retrieval/hybrid.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/retrieval/mmr.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/retrieval/multi_hop.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/runtime.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/server.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/document.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/error.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/feedback.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/graph.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/history.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/interfaces.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/milvus/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/milvus/client.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/milvus/collections.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/milvus/vector_store.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/mongodb/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/mongodb/client.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/mongodb/graph_store.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/mongodb/indexes.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/mongodb/operational_store.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/relational.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/repo_state.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/rule.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/store/vector.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/agents.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/auth.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/graph.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/ingest.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/memory.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/query.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/registry.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/repo_scanner.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/seeds/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/seeds/default_agents.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/session.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/skills.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/tools/workflow.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/transport/__init__.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/transport/base.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/transport/sse.py +0 -0
- {minder_cli-0.5.4 → minder_cli-0.5.6}/src/minder/transport/stdio.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: minder-cli
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.6
|
|
4
4
|
Summary: Minder CLI is the command-line interface for the Minder self-hosted MCP platform.
|
|
5
5
|
Project-URL: Homepage, https://github.com/hiimtrung/minder
|
|
6
6
|
Project-URL: Repository, https://github.com/hiimtrung/minder
|
|
@@ -84,8 +84,6 @@ def build_graph_store(config: MinderConfig) -> IGraphRepository | None:
|
|
|
84
84
|
provider = config.graph_store.provider
|
|
85
85
|
if provider == "auto":
|
|
86
86
|
provider = config.relational_store.provider
|
|
87
|
-
if provider == "mongodb":
|
|
88
|
-
provider = "sqlite"
|
|
89
87
|
|
|
90
88
|
if provider == "mongodb":
|
|
91
89
|
from minder.store.mongodb.client import MongoClient
|
|
@@ -34,7 +34,7 @@ class EmbeddingConfig(BaseModel):
|
|
|
34
34
|
provider: str = "llama_cpp"
|
|
35
35
|
runtime: str = "auto" # "auto" | "llama_cpp" | "mock"
|
|
36
36
|
llama_cpp_model_repo: str = "ggml-org/embeddinggemma-300M-GGUF"
|
|
37
|
-
llama_cpp_model_file: str = "
|
|
37
|
+
llama_cpp_model_file: str = "embeddinggemma-300M-Q8_0.gguf"
|
|
38
38
|
dimensions: int = 768
|
|
39
39
|
openai_api_key: Optional[str] = None
|
|
40
40
|
openai_model: str = "text-embedding-3-small"
|
|
@@ -43,7 +43,7 @@ class EmbeddingConfig(BaseModel):
|
|
|
43
43
|
class LLMConfig(BaseModel):
|
|
44
44
|
provider: str = "llama_cpp" # "llama_cpp" | "openai"
|
|
45
45
|
llama_cpp_model_repo: str = "ggml-org/gemma-4-E2B-it-GGUF"
|
|
46
|
-
llama_cpp_model_file: str = "
|
|
46
|
+
llama_cpp_model_file: str = "gemma-4-E2B-it-Q8_0.gguf"
|
|
47
47
|
context_length: int = 16384
|
|
48
48
|
temperature: float = 0.1
|
|
49
49
|
openai_api_key: Optional[str] = None
|
|
@@ -30,6 +30,15 @@ _PROMPT_LEAK_MARKERS = (
|
|
|
30
30
|
"User query:",
|
|
31
31
|
"Retrieved context:",
|
|
32
32
|
"Correction required:",
|
|
33
|
+
"<workflow>",
|
|
34
|
+
"<envelope>",
|
|
35
|
+
"<continuity>",
|
|
36
|
+
"<tools>",
|
|
37
|
+
"<policy>",
|
|
38
|
+
"<repo_context>",
|
|
39
|
+
"<retrieved>",
|
|
40
|
+
"<correction>",
|
|
41
|
+
"<question>",
|
|
33
42
|
)
|
|
34
43
|
|
|
35
44
|
|
|
@@ -505,7 +514,7 @@ def _sanitize_answer(
|
|
|
505
514
|
marker_hits = sum(text.count(marker) for marker in _PROMPT_LEAK_MARKERS)
|
|
506
515
|
looks_like_prompt_echo = marker_hits >= 2 or text.startswith(
|
|
507
516
|
"Workflow instruction:"
|
|
508
|
-
)
|
|
517
|
+
) or text.startswith("<workflow>")
|
|
509
518
|
|
|
510
519
|
if not looks_like_prompt_echo:
|
|
511
520
|
return text, False, None
|
|
@@ -144,17 +144,18 @@ class PromptRegistry:
|
|
|
144
144
|
},
|
|
145
145
|
"content_template": "\n\n".join(
|
|
146
146
|
[
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
147
|
+
"You are a helpful coding assistant. Answer the user's question using the provided context. Be concise and cite source paths when referencing code.",
|
|
148
|
+
"<workflow>\n{workflow_instruction}\n</workflow>",
|
|
149
|
+
"<envelope>\n{instruction_envelope}\n</envelope>",
|
|
150
|
+
"<continuity>\n{continuity_packet}\n</continuity>",
|
|
151
|
+
"<tools>\n{tool_capabilities}\n</tools>",
|
|
152
|
+
"<policy>\n{data_access_policy}\n</policy>",
|
|
153
|
+
"<repo_context>\n{repository_context_note}\n</repo_context>",
|
|
154
|
+
"<history>\n{chat_history}\n</history>",
|
|
155
|
+
"<retrieved>\n{retrieved_context}\n</retrieved>",
|
|
156
|
+
"<correction>\n{correction_required}\n</correction>",
|
|
157
|
+
"<question>\n{user_query}\n</question>",
|
|
158
|
+
"Answer:",
|
|
158
159
|
]
|
|
159
160
|
),
|
|
160
161
|
},
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|